diff --git a/Content.Client/Shuttles/UI/NavScreen.xaml b/Content.Client/Shuttles/UI/NavScreen.xaml
index 769207ba7f7..8d080f8d613 100644
--- a/Content.Client/Shuttles/UI/NavScreen.xaml
+++ b/Content.Client/Shuttles/UI/NavScreen.xaml
@@ -30,6 +30,11 @@
HorizontalExpand="True"
Margin="3"
Name="ReadonlyDisplay">
+
+
(shuttle, out var metadata))
+ {
+ var shipNameParts = metadata.EntityName.Split(' ');
+ var designation = shipNameParts[^1];
+ if (designation[2] == '-')
+ {
+ NavDisplayLabel.Text = string.Join(' ', shipNameParts[..^1]);
+ ShuttleDesignation.Text = designation;
+ }
+ else
+ NavDisplayLabel.Text = metadata.EntityName;
+ }
+ // End Frontier - PR #1284
}
private void OnIFFTogglePressed(BaseButton.ButtonEventArgs args)
diff --git a/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs b/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs
index d1404e458aa..6b273136b72 100644
--- a/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs
+++ b/Content.Client/_NF/Latejoin/VesselListControl.xaml.cs
@@ -54,31 +54,43 @@ protected override void Dispose(bool disposing)
private int DefaultComparison(NetEntity x, NetEntity y)
{
- var xContainsHop = _gameTicker.JobsAvailable[x].ContainsKey("HeadOfPersonnel");
- var yContainsHop = _gameTicker.JobsAvailable[y].ContainsKey("HeadOfPersonnel");
+ var xContainsSR = _gameTicker.JobsAvailable[x].ContainsKey("StationRepresentative");
+ var yContainsSR = _gameTicker.JobsAvailable[y].ContainsKey("StationRepresentative");
- var xContainsHos = _gameTicker.JobsAvailable[x].ContainsKey("HeadOfSecurity");
- var yContainsHos = _gameTicker.JobsAvailable[y].ContainsKey("HeadOfSecurity");
+ var xContainsSheriff = _gameTicker.JobsAvailable[x].ContainsKey("Sheriff");
+ var yContainsSheriff = _gameTicker.JobsAvailable[y].ContainsKey("Sheriff");
- // Prioritize "HeadOfPersonnel"
- switch (xContainsHop)
+ var xContainsPirateCaptain = _gameTicker.JobsAvailable[x].ContainsKey("PirateCaptain");
+ var yContainsPirateCaptain = _gameTicker.JobsAvailable[y].ContainsKey("PirateCaptain");
+
+ // Prioritize "StationRepresentative"
+ switch (xContainsSR)
+ {
+ case true when !yContainsSR:
+ return -1;
+ case false when yContainsSR:
+ return 1;
+ }
+
+ // If both or neither contain "StationRepresentative", prioritize "Sheriff"
+ switch (xContainsSheriff)
{
- case true when !yContainsHop:
+ case true when !yContainsSheriff:
return -1;
- case false when yContainsHop:
+ case false when yContainsSheriff:
return 1;
}
- // If both or neither contain "HeadOfPersonnel", prioritize "HeadOfSecurity"
- switch (xContainsHos)
+ // If both or neither contain "StationRepresentative", "Sheriff" prioritize "PirateCaptain"
+ switch (xContainsPirateCaptain)
{
- case true when !yContainsHos:
+ case true when !yContainsPirateCaptain:
return -1;
- case false when yContainsHos:
+ case false when yContainsPirateCaptain:
return 1;
}
- // If both or neither contain "HeadOfPersonnel" and "HeadOfSecurity", sort by jobCountComparison
+ // If both or neither contain "StationRepresentative" and "Sheriff", sort by jobCountComparison
var jobCountComparison = -(int) (_gameTicker.JobsAvailable[x].Values.Sum(a => a ?? 0) -
_gameTicker.JobsAvailable[y].Values.Sum(b => b ?? 0));
var nameComparison = string.Compare(_gameTicker.StationNames[x], _gameTicker.StationNames[y], StringComparison.Ordinal);
diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs
index ee8d12ff465..685df3b6fed 100644
--- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs
+++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs
@@ -3,6 +3,7 @@
using Content.Server.Atmos.Components;
using Content.Shared.Administration;
using Content.Shared.Atmos;
+using Content.Shared.Atmos.Components;
using Robust.Shared.Console;
using Robust.Shared.Map;
using Robust.Shared.Map.Components;
@@ -104,44 +105,72 @@ private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] ar
continue;
}
- var transform = Transform(euid.Value);
+ // Force Invalidate & update air on all tiles
+ Entity grid =
+ new(euid.Value, gridAtmosphere, Comp(euid.Value), gridComp, Transform(euid.Value));
- foreach (var (indices, tileMain) in gridAtmosphere.Tiles)
- {
- var tile = tileMain.Air;
- if (tile == null)
- continue;
+ RebuildGridTiles(grid);
- if (!_mapSystem.TryGetTile(gridComp, indices, out var gTile) || gTile.IsEmpty)
- {
- gridAtmosphere.Tiles.Remove(indices);
+ var query = GetEntityQuery();
+ foreach (var (indices, tile) in gridAtmosphere.Tiles.ToArray())
+ {
+ if (tile.Air is not {Immutable: false} air)
continue;
- }
- if (tile.Immutable && !IsTileSpace(euid, transform.MapUid, indices))
- {
- tile = new GasMixture(tile.Volume) { Temperature = tile.Temperature };
- tileMain.Air = tile;
- }
-
- tile.Clear();
+ air.Clear();
var mixtureId = 0;
- foreach (var entUid in gridComp.GetAnchoredEntities(indices))
+ var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(grid, grid, indices);
+ while (enumerator.MoveNext(out var entUid))
{
- if (!TryComp(entUid, out AtmosFixMarkerComponent? afm))
- continue;
- mixtureId = afm.Mode;
- break;
+ if (query.TryComp(entUid, out var marker))
+ mixtureId = marker.Mode;
}
- var mixture = mixtures[mixtureId];
- Merge(tile, mixture);
- tile.Temperature = mixture.Temperature;
- gridAtmosphere.InvalidatedCoords.Add(indices);
+ var mixture = mixtures[mixtureId];
+ Merge(air, mixture);
+ air.Temperature = mixture.Temperature;
}
}
}
+ ///
+ /// Clears & re-creates all references to s stored on a grid.
+ ///
+ private void RebuildGridTiles(
+ Entity ent)
+ {
+ foreach (var indices in ent.Comp1.Tiles.Keys)
+ {
+ InvalidateVisuals((ent, ent), indices);
+ }
+
+ var atmos = ent.Comp1;
+ atmos.MapTiles.Clear();
+ atmos.ActiveTiles.Clear();
+ atmos.ExcitedGroups.Clear();
+ atmos.HotspotTiles.Clear();
+ atmos.SuperconductivityTiles.Clear();
+ atmos.HighPressureDelta.Clear();
+ atmos.CurrentRunTiles.Clear();
+ atmos.CurrentRunExcitedGroups.Clear();
+ atmos.InvalidatedCoords.Clear();
+ atmos.CurrentRunInvalidatedTiles.Clear();
+ atmos.PossiblyDisconnectedTiles.Clear();
+ atmos.Tiles.Clear();
+
+ var volume = GetVolumeForTiles(ent);
+ TryComp(ent.Comp4.MapUid, out MapAtmosphereComponent? mapAtmos);
+
+ var enumerator = _map.GetAllTilesEnumerator(ent, ent);
+ while (enumerator.MoveNext(out var tileRef))
+ {
+ var tile = GetOrNewTile(ent, ent, tileRef.Value.GridIndices);
+ UpdateTileData(ent, mapAtmos, tile);
+ UpdateAdjacentTiles(ent, tile, activate: true);
+ UpdateTileAir(ent, tile, volume);
+ }
+ }
+
private CompletionResult FixGridAtmosCommandCompletions(IConsoleShell shell, string[] args)
{
MapId? playerMap = null;
diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs
index bd023e8574a..85b1a93e20f 100644
--- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs
+++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs
@@ -30,13 +30,15 @@ public sealed partial class AtmosphereSystem
private int _currentRunAtmosphereIndex;
private bool _simulationPaused;
- private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index)
+ private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index, bool invalidateNew = true)
{
var tile = atmosphere.Tiles.GetOrNew(index, out var existing);
if (existing)
return tile;
- atmosphere.InvalidatedCoords.Add(index);
+ if (invalidateNew)
+ atmosphere.InvalidatedCoords.Add(index);
+
tile.GridIndex = owner;
tile.GridIndices = index;
return tile;
@@ -68,7 +70,7 @@ private bool ProcessRevalidate(Entity(receiver.Owner, out var antag))
+ {
+ recipient = null;
+ return false;
+ }
+
var accessTags = access.Tags;
var mayReceivePriorityMail = !(_mindSystem.GetMind(receiver.Owner) == null);
diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs
index b98b9c2e43a..5d4cee896f8 100644
--- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs
+++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs
@@ -30,7 +30,7 @@ public sealed partial class SalvageSystem
* Handles setup / teardown of salvage expeditions.
*/
- private const int MissionLimit = 4;
+ private const int MissionLimit = 5;
[Dependency] private readonly StationSystem _stationSystem = default!;
private readonly JobQueue _salvageQueue = new();
diff --git a/Content.Server/Shuttles/Components/ThrusterComponent.cs b/Content.Server/Shuttles/Components/ThrusterComponent.cs
index 9a08e5fbe5b..d60a275f992 100644
--- a/Content.Server/Shuttles/Components/ThrusterComponent.cs
+++ b/Content.Server/Shuttles/Components/ThrusterComponent.cs
@@ -66,7 +66,7 @@ public sealed partial class ThrusterComponent : Component
public string MachinePartThrust = "Capacitor";
[DataField("partRatingThrustMultiplier")]
- public float PartRatingThrustMultiplier = 1.5f;
+ public float PartRatingThrustMultiplier = 1.15f; // Frontier - PR #1292 1.5f<1.15f
[DataField("thrusterIgnoreEmp")]
public bool ThrusterIgnoreEmp = false;
diff --git a/Content.Server/StationEvents/Events/IonStormRule.cs b/Content.Server/StationEvents/Events/IonStormRule.cs
index cd3cd63ae86..54c0ca89d08 100644
--- a/Content.Server/StationEvents/Events/IonStormRule.cs
+++ b/Content.Server/StationEvents/Events/IonStormRule.cs
@@ -64,15 +64,19 @@ protected override void Started(EntityUid uid, IonStormRuleComponent comp, GameR
{
base.Started(uid, comp, gameRule, args);
- if (!TryGetRandomStation(out var chosenStation))
- return;
+ // Frontier - Affect all silicon beings in the sector, not just on-station.
+ // if (!TryGetRandomStation(out var chosenStation))
+ // return;
+ // End Frontier
var query = EntityQueryEnumerator();
while (query.MoveNext(out var ent, out var lawBound, out var xform, out var target))
{
- // only affect law holders on the station
- if (CompOrNull(xform.GridUid)?.Station != chosenStation)
- continue;
+ // Frontier - Affect all silicon beings in the sector, not just on-station.
+ // // only affect law holders on the station
+ // if (CompOrNull(xform.GridUid)?.Station != chosenStation)
+ // continue;
+ // End Frontier
if (!RobustRandom.Prob(target.Chance))
continue;
diff --git a/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs b/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs
index 0edee1e36f1..c304066a1eb 100644
--- a/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs
+++ b/Content.Server/_NF/Contraband/Systems/ContrabandSystem.cs
@@ -165,7 +165,7 @@ private bool CanSell(EntityUid uid, TransformComponent xform)
{
if (_mobQuery.HasComponent(uid))
{
- if (_mobQuery.GetComponent(uid).CurrentState == MobState.Alive)
+ if (_mobQuery.GetComponent(uid).CurrentState == MobState.Dead) // Allow selling alive prisoners
{
return false;
}
diff --git a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs
index 6851d0fd434..d65c8f03311 100644
--- a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs
+++ b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs
@@ -222,7 +222,7 @@ private void OnStartup(RoundStartingEvent ev)
if (_map.TryLoad(mapId, cove, out var depotUid6s, new MapLoadOptions
{
- Offset = _random.NextVector2(4650f, 6800f)
+ Offset = _random.NextVector2(10000f, 15000f)
}))
{
if (_prototypeManager.TryIndex("Cove", out var stationProto))
diff --git a/Content.Shared/DeltaV/StepTrigger/Component/NoShoesSilentFootstepsComponent.cs b/Content.Shared/DeltaV/StepTrigger/Component/NoShoesSilentFootstepsComponent.cs
new file mode 100644
index 00000000000..ae2697b0ef0
--- /dev/null
+++ b/Content.Shared/DeltaV/StepTrigger/Component/NoShoesSilentFootstepsComponent.cs
@@ -0,0 +1,9 @@
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.StepTrigger.Components;
+
+
+[RegisterComponent, NetworkedComponent]
+public sealed partial class NoShoesSilentFootstepsComponent : Component
+{
+}
diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs
index 92b953aca98..31a05b2004c 100644
--- a/Content.Shared/Movement/Systems/SharedMoverController.cs
+++ b/Content.Shared/Movement/Systems/SharedMoverController.cs
@@ -23,6 +23,7 @@
using Robust.Shared.Timing;
using Robust.Shared.Utility;
using PullableComponent = Content.Shared.Movement.Pulling.Components.PullableComponent;
+using Content.Shared.StepTrigger.Components; // Delta V-NoShoesSilentFootstepsComponent
namespace Content.Shared.Movement.Systems
{
@@ -46,6 +47,7 @@ public abstract partial class SharedMoverController : VirtualController
[Dependency] protected readonly SharedPhysicsSystem Physics = default!;
[Dependency] private readonly SharedTransformSystem _transform = default!;
[Dependency] private readonly TagSystem _tags = default!;
+ [Dependency] private readonly IEntityManager _entities = default!; // Delta V-NoShoesSilentFootstepsComponent
protected EntityQuery MoverQuery;
protected EntityQuery MobMoverQuery;
@@ -438,6 +440,14 @@ private bool TryGetSound(
sound = moverModifier.FootstepSoundCollection;
return true;
}
+
+ // If got the component in yml and no shoes = no sound. Delta V
+ if (_entities.TryGetComponent(uid, out NoShoesSilentFootstepsComponent? _) &
+ !_inventory.TryGetSlotEntity(uid, "shoes", out var _))
+ {
+ return false;
+ }
+ // Delta V NoShoesSilentFootsteps till here.
if (_inventory.TryGetSlotEntity(uid, "shoes", out var shoes) &&
TryComp(shoes, out var modifier))
diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs
index 6cc3507538f..a6e9329efa6 100644
--- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs
+++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTimeMod.cs
@@ -11,13 +11,14 @@ public sealed class SalvageTimeMod : IPrototype, ISalvageMod
///
/// Cost for difficulty modifiers.
+ /// Frontier: expedition timer min set to 900 and max to 930
///
[DataField("cost")]
public float Cost { get; private set; }
[DataField("minDuration")]
- public int MinDuration = 630;
+ public int MinDuration = 900;
[DataField("maxDuration")]
- public int MaxDuration = 570;
+ public int MaxDuration = 930;
}
diff --git a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs
index 83dc40d1aa0..2aec5deef57 100644
--- a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs
+++ b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs
@@ -5,7 +5,7 @@
namespace Content.Shared.Salvage.Expeditions;
[Prototype("salvageFaction")]
-public sealed partial class SalvageFactionPrototype : IPrototype
+public sealed partial class SalvageFactionPrototype : IPrototype, ISalvageMod
{
[IdDataField] public string ID { get; } = default!;
diff --git a/Content.Shared/Salvage/SharedSalvageSystem.cs b/Content.Shared/Salvage/SharedSalvageSystem.cs
index af032f8090b..669ab9cef86 100644
--- a/Content.Shared/Salvage/SharedSalvageSystem.cs
+++ b/Content.Shared/Salvage/SharedSalvageSystem.cs
@@ -59,15 +59,15 @@ public int GetDifficulty(DifficultyRating rating)
switch (rating)
{
case DifficultyRating.Minimal:
- return 1;
+ return 4;
case DifficultyRating.Minor:
- return 2;
+ return 6;
case DifficultyRating.Moderate:
- return 4;
- case DifficultyRating.Hazardous:
return 8;
+ case DifficultyRating.Hazardous:
+ return 10;
case DifficultyRating.Extreme:
- return 16;
+ return 12;
default:
throw new ArgumentOutOfRangeException(nameof(rating), rating, null);
}
@@ -100,12 +100,10 @@ public SalvageMission GetMission(SalvageMissionType config, DifficultyRating dif
// - Biome
// - Lighting
// - Atmos
+ var faction = GetMod(rand, ref rating);
var biome = GetMod(rand, ref rating);
var air = GetBiomeMod(biome.ID, rand, ref rating);
var dungeon = GetBiomeMod(biome.ID, rand, ref rating);
- var factionProtos = _proto.EnumeratePrototypes().ToList();
- factionProtos.Sort((x, y) => string.Compare(x.ID, y.ID, StringComparison.Ordinal));
- var faction = factionProtos[rand.Next(factionProtos.Count)];
var mods = new List();
@@ -196,24 +194,27 @@ private List GetRewards(DifficultyRating difficulty, System.Random rand)
///
/// Get a list of WeightedRandomEntityPrototype IDs with the rewards for a certain difficulty.
+ /// Frontier: added uncommon and legendary reward tiers, limited amount of rewards to 1 per difficulty rating
///
private string[] RewardsForDifficulty(DifficultyRating rating)
{
var common = "SalvageRewardCommon";
+ var uncommon = "SalvageRewardUncommon";
var rare = "SalvageRewardRare";
var epic = "SalvageRewardEpic";
+ var legendary = "SalvageRewardLegendary";
switch (rating)
{
case DifficultyRating.Minimal:
- return new string[] { common, common, common };
+ return new string[] { common };
case DifficultyRating.Minor:
- return new string[] { common, common, rare };
+ return new string[] { uncommon };
case DifficultyRating.Moderate:
- return new string[] { common, rare, rare };
+ return new string[] { rare };
case DifficultyRating.Hazardous:
- return new string[] { rare, rare, rare, epic };
+ return new string[] { epic };
case DifficultyRating.Extreme:
- return new string[] { rare, rare, epic, epic, epic };
+ return new string[] { legendary };
default:
throw new NotImplementedException();
}
diff --git a/Resources/Audio/_NF/Voice/Goblin/attributions.yml b/Resources/Audio/_NF/Voice/Goblin/attributions.yml
index 5da1cf34088..6a2b1738bf2 100644
--- a/Resources/Audio/_NF/Voice/Goblin/attributions.yml
+++ b/Resources/Audio/_NF/Voice/Goblin/attributions.yml
@@ -1,10 +1,10 @@
- files: ["goblin-cackle-01.ogg, goblin-cackle-02.ogg, goblin-cackle-03.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (converted to mono, cropped, lowered amplitudes) by erhardsteinhauer (discord/github)"
source: "https://freesound.org/people/SnowFightStudios/sounds/643664/"
- files: ["goblin-cackle-04.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by spookymodem (https://freesound.org/people/spookymodem/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by spookymodem (https://freesound.org/people/spookymodem/), edited (converted to mono, cropped) by erhardsteinhauer (discord/github)"
source: "https://freesound.org/people/spookymodem/sounds/202096/"
- files: ["goblin-cackle-05.ogg"]
license: "CC-BY-4.0"
@@ -12,21 +12,21 @@
source: "https://freesound.org/people/Nanakisan/sounds/253532/"
- files: ["goblin-scream-01.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (converted to mono, cropped) by erhardsteinhauer (discord/github)"
source: "https://freesound.org/people/SnowFightStudios/sounds/643655/"
- files: ["goblin-scream-02.ogg, goblin-scream-03.ogg, goblin-scream-04.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by Duisterwho (https://freesound.org/people/Duisterwho/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by Duisterwho (https://freesound.org/people/Duisterwho/), edited (converted to mono, cropped) by erhardsteinhauer (discord/github)"
source: "https://freesound.org/people/Duisterwho/sounds/643497/"
- files: ["goblin-cry-01.ogg, goblin-cry-02.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (converted to mono, cropped) by erhardsteinhauer (discord/github)"
source: https://freesound.org/people/SnowFightStudios/sounds/643657/
- files: ["goblin-chatter-01.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by Fenodyrie (https://freesound.org/people/Fenodyrie/)"
+ copyright: "Original file made by Fenodyrie (https://freesound.org/people/Fenodyrie/), edited (converted to mono) by erhardsteinhauer (discord/github)"
source: https://freesound.org/people/Fenodyrie/sounds/565923/
- files: ["goblin-hiss-01.ogg"]
license: "CC-BY-4.0"
- copyright: "Original file made by LittleRobotSoundFactory (https://freesound.org/people/LittleRobotSoundFactory/)"
+ copyright: "Original file made by LittleRobotSoundFactory (https://freesound.org/people/LittleRobotSoundFactory/), edited (converted to mono) by erhardsteinhauer (discord/github)"
source: https://freesound.org/people/LittleRobotSoundFactory/sounds/270389/
diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-01.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-01.ogg
index 74d3e2e0555..56bfd911568 100644
Binary files a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-01.ogg and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-01.ogg differ
diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-02.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-02.ogg
index 42587638db5..5b56010b6b3 100644
Binary files a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-02.ogg and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-02.ogg differ
diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-03.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-03.ogg
index 7db2a2f7bea..c84ad8527ba 100644
Binary files a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-03.ogg and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-03.ogg differ
diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-04.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-04.ogg
index 1b9d67543c7..d607c86a7a5 100644
Binary files a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-04.ogg and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-04.ogg differ
diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-05.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-05.ogg
index 8d98dbda60d..fee25893c64 100644
Binary files a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-05.ogg and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-05.ogg differ
diff --git a/Resources/Audio/_NF/Voice/Goblin/license.txt b/Resources/Audio/_NF/Voice/Goblin/license.txt
index 824f0bdbeda..21f10cccf15 100644
--- a/Resources/Audio/_NF/Voice/Goblin/license.txt
+++ b/Resources/Audio/_NF/Voice/Goblin/license.txt
@@ -1,32 +1,32 @@
- files: ["goblin-cackle-01.ogg, goblin-cackle-02.ogg, goblin-cackle-03.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (converted to mono, cropped, lowered amplitudes) by erhardsteinhauer (discord/github)"
source: "https://freesound.org/people/SnowFightStudios/sounds/643664/"
- files: ["goblin-cackle-04.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by spookymodem (https://freesound.org/people/spookymodem/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by spookymodem (https://freesound.org/people/spookymodem/), edited (converted to mono, cropped) by erhardsteinhauer (discord/github)"
source: "https://freesound.org/people/spookymodem/sounds/202096/"
- files: ["goblin-cackle-05.ogg"]
- license: "CC BY 4.0"
+ license: "CC-BY-4.0"
copyright: "Original file made by Nanakisan (https://freesound.org/people/Nanakisan/)"
source: "https://freesound.org/people/Nanakisan/sounds/253532/"
- files: ["goblin-scream-01.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (converted to mono, cropped) by erhardsteinhauer (discord/github)"
source: "https://freesound.org/people/SnowFightStudios/sounds/643655/"
- files: ["goblin-scream-02.ogg, goblin-scream-03.ogg, goblin-scream-04.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by Duisterwho (https://freesound.org/people/Duisterwho/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by Duisterwho (https://freesound.org/people/Duisterwho/), edited (converted to mono, cropped) by erhardsteinhauer (discord/github)"
source: "https://freesound.org/people/Duisterwho/sounds/643497/"
- files: ["goblin-cry-01.ogg, goblin-cry-02.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)"
+ copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (converted to mono, cropped) by erhardsteinhauer (discord/github)"
source: https://freesound.org/people/SnowFightStudios/sounds/643657/
- files: ["goblin-chatter-01.ogg"]
license: "CC0-1.0"
- copyright: "Original file made by Fenodyrie (https://freesound.org/people/Fenodyrie/)"
+ copyright: "Original file made by Fenodyrie (https://freesound.org/people/Fenodyrie/), edited (converted to mono) by erhardsteinhauer (discord/github)"
source: https://freesound.org/people/Fenodyrie/sounds/565923/
- files: ["goblin-hiss-01.ogg"]
- license: "CC BY 4.0"
- copyright: "Original file made by LittleRobotSoundFactory (https://freesound.org/people/LittleRobotSoundFactory/)"
+ license: "CC-BY-4.0"
+ copyright: "Original file made by LittleRobotSoundFactory (https://freesound.org/people/LittleRobotSoundFactory/), edited (converted to mono) by erhardsteinhauer (discord/github)"
source: https://freesound.org/people/LittleRobotSoundFactory/sounds/270389/
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index cd7e2afef9e..e7f7d050ab3 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -4303,3 +4303,193 @@ Entries:
message: Knuckleverse can hire latejoins correctly.
id: 4947
time: '2024-04-27T15:21:40.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: >-
+ Borgs can have laws that will force them to become goblin slayers due to
+ ion storms. Same for harpies.
+ id: 4948
+ time: '2024-04-27T17:48:50.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Tweak
+ message: The pirates moved to a new base, McCove if you will.
+ id: 4949
+ time: '2024-04-27T18:33:25.0000000+00:00'
+- author: GingerAvalanche
+ changes:
+ - type: Add
+ message: Shuttle console display UI now shows ship name and designation
+ id: 4950
+ time: '2024-04-27T19:07:30.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Fix
+ message: 'Fixes the plasteel recipe to be lore accurate: Plasteel = Plasma + Steel'
+ id: 4951
+ time: '2024-04-27T23:46:34.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Tweak
+ message: Updated conveyor belts sprites.
+ id: 4952
+ time: '2024-04-28T03:15:52.0000000+00:00'
+- author: MagnusCrowe
+ changes:
+ - type: Tweak
+ message: Rotated Bocakillo.
+ id: 4953
+ time: '2024-04-28T06:02:55.0000000+00:00'
+- author: ThatOneGoblin25
+ changes:
+ - type: Tweak
+ message: Updated and reworked the Spectre to current mapping guidelines.
+ id: 4954
+ time: '2024-04-29T03:06:00.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Add
+ message: >-
+ Added the new mail ship, the Mail Pod, available for the mail carrier in
+ the mail office.
+ id: 4955
+ time: '2024-04-29T03:07:21.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Add
+ message: Added a short entry to guidebook concerning goblins.
+ id: 4956
+ time: '2024-04-29T16:24:52.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Tweak
+ message: NT No longer send mail to pirates.
+ id: 4957
+ time: '2024-04-29T17:21:42.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Tweak
+ message: >-
+ The cultist and syndicate migrated to the harder difficulty expeditions
+ only.
+ id: 4958
+ time: '2024-04-29T17:22:51.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Add
+ message: >-
+ Added Syndicate and Pirate themed hoverbikes, both are considered
+ contraband.
+ - type: Add
+ message: Added syndicate hoverbike flatpack to contravend.
+ id: 4959
+ time: '2024-04-29T17:26:42.0000000+00:00'
+- author: Kesiath
+ changes:
+ - type: Tweak
+ message: Reduced top thruster speeds.
+ id: 4960
+ time: '2024-04-29T17:29:13.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Tweak
+ message: >-
+ You can now sell antagonist human like AI like the Syndicate agents to
+ NFSD, as long as they are alive, for NFSD coins.
+ id: 4961
+ time: '2024-04-29T17:48:22.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Add
+ message: Added goblin speech bubble.
+ - type: Tweak
+ message: Added to goblins low tolerance for cleanliness.
+ - type: Tweak
+ message: Goblins are less affected by slowdown from wounds.
+ id: 4962
+ time: '2024-04-29T20:02:58.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: >-
+ Salvage expedition dungeons now feature a more varied loot/fluff items
+ pool.
+ - type: Tweak
+ message: Extended salvage expeditions time limit to 15 minutes.
+ - type: Tweak
+ message: >-
+ Limited rewards for completed expeditions to cash only, sum depends on
+ expedition difficulty.
+ - type: Tweak
+ message: Edible food can not be found in salvage expedition dungeons anymore.
+ - type: Add
+ message: Added new salvage expedition dungeon theme - Virology Lab.
+ - type: Add
+ message: >-
+ Added weapon cases. Guns and energy melee weapons on expeditions now
+ spawn in weapon cases with spare magazines.
+ - type: Tweak
+ message: >-
+ Duffel bags with shuttle guns were replaced with newly added weapon
+ cases.
+ id: 4963
+ time: '2024-04-29T21:36:47.0000000+00:00'
+- author: VMSolidus
+ changes:
+ - type: Fix
+ message: >-
+ All Jumpskirts in the game have been correctly listed as skirts, now
+ Harpies can wear them again.
+ id: 4964
+ time: '2024-05-01T21:37:35.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Fix
+ message: >-
+ Fixed goblin stomach. Now it actually doesn't turn itself out when raw
+ meat or blood is consumed by owner of that stomach.
+ - type: Fix
+ message: Lowered sound level of goblin laughter sfx.
+ id: 4965
+ time: '2024-05-01T23:10:16.0000000+00:00'
+- author: blueDev2
+ changes:
+ - type: Add
+ message: Brigmedic PDAs can now perform medical scans
+ id: 4966
+ time: '2024-05-01T23:32:16.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Tweak
+ message: >-
+ Lower IFF amounts in Expeditionary Flatpackvend, you can now find many
+ IFF boards on planets.
+ - type: Tweak
+ message: >-
+ Added R&D Server Flatpack to Flatpackvend, removed the hidden HoverBike,
+ they can also be found on planets now.
+ id: 4967
+ time: '2024-05-02T01:07:48.0000000+00:00'
+- author: DeltaV
+ changes:
+ - type: Add
+ message: Felinids now scream in agony from water.
+ - type: Tweak
+ message: Felinid's thieving gloves have been removed for Soft paws mechanic.
+ - type: Add
+ message: Added a speech bubble to felinids. Mraow!
+ id: 4968
+ time: '2024-05-02T01:08:21.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Fix
+ message: Fixed mailpod power issue
+ id: 4969
+ time: '2024-05-02T01:21:52.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Fix
+ message: Added felinids/goblins/vulps to hoverbike built-in storage blacklist.
+ id: 4970
+ time: '2024-05-03T00:27:37.0000000+00:00'
diff --git a/Resources/Locale/en-US/_NF/shuttles/console.ftl b/Resources/Locale/en-US/_NF/shuttles/console.ftl
index d22ff4d3bea..ec0a1d12a2a 100644
--- a/Resources/Locale/en-US/_NF/shuttles/console.ftl
+++ b/Resources/Locale/en-US/_NF/shuttles/console.ftl
@@ -1 +1,2 @@
-shuttle-console-designation = Designation:
\ No newline at end of file
+shuttle-console-designation = Designation:
+shuttle-console-designation-unknown = Unknown
diff --git a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl
index 6d65758abd7..9ff0cb4f2cd 100644
--- a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl
+++ b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl
@@ -24,6 +24,10 @@ uplink-security-hardsuit-combat-name = Patrol Combat Hardsuit
uplink-security-hardsuit-combat-desc = An armored patrol suit for combat meant to be utilized for multi-environmental hostile engagements.
uplink-security-hardsuit-commmand-name = Command Combat Hardsuit
uplink-security-hardsuit-commmand-desc = An advanced combat suit designed for seasoned nfsd supervisors meant to be utilized for multi-environmental hostile engagements.
+uplink-security-lethalarmory-name = Lethal armory stock crate
+uplink-security-lethalarmory-desc = A crate containing weapons necessary to fill an armory.
+uplink-security-nonlethalarmory-name = Non-lethal armory stock crate
+uplink-security-nonlethalarmory-desc = A crate containing non-lethal weapons necessary to fill an armory.
uplink-security-mk58-name = MK 58
uplink-security-mk58-desc = Cheap, standard issue side-arm. Uses .35 Auto.
uplink-security-kammerer-name = Kammerer
diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml
index 6d2b5dc3212..0fe62ef9c8d 100644
--- a/Resources/Maps/Dungeon/experiment.yml
+++ b/Resources/Maps/Dungeon/experiment.yml
@@ -20,20 +20,20 @@ tilemap:
76: FloorPlastic
78: FloorReinforced
81: FloorShowroom
- 83: FloorShuttleOrange
- 90: FloorSteel
- 95: FloorSteelDiagonal
- 100: FloorSteelMini
- 101: FloorSteelMono
- 104: FloorSteelPavementVertical
- 105: FloorTechMaint
- 106: FloorTechMaint2
- 107: FloorTechMaint3
- 109: FloorWhite
- 114: FloorWhiteMono
- 118: FloorWhitePlastic
- 119: FloorWood
- 122: Plating
+ 85: FloorShuttleOrange
+ 92: FloorSteel
+ 97: FloorSteelDiagonal
+ 102: FloorSteelMini
+ 103: FloorSteelMono
+ 106: FloorSteelPavementVertical
+ 107: FloorTechMaint
+ 108: FloorTechMaint2
+ 109: FloorTechMaint3
+ 111: FloorWhite
+ 116: FloorWhiteMono
+ 120: FloorWhitePlastic
+ 121: FloorWood
+ 125: Plating
entities:
- proto: ""
entities:
@@ -49,95 +49,95 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: cgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAADbQAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAbQAAAAAAWgAAAAABWgAAAAADegAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAegAAAAAAWgAAAAABWgAAAAABbQAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABcgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAATAAAAAAAdgAAAAABTAAAAAAATAAAAAABdgAAAAABTAAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABUwAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATAAAAAADdgAAAAABTAAAAAAATAAAAAACdgAAAAAATAAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADUwAAAAAAJgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAAWgAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAAAdwAAAAABdwAAAAADUwAAAAAAJgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAATAAAAAACdwAAAAABdwAAAAABdwAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAAAdwAAAAACdwAAAAAAdwAAAAACUwAAAAAAJgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAATAAAAAABTAAAAAACTAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAABTAAAAAAATAAAAAACTAAAAAABTAAAAAABUwAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAHgAAAAABWgAAAAADWgAAAAACWgAAAAADHgAAAAACegAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAUwAAAAAAegAAAAAAHgAAAAACWgAAAAABWgAAAAABWgAAAAABHgAAAAADegAAAAAAUwAAAAAAHgAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAAAUwAAAAAAHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAADUwAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAUwAAAAAA
+ tiles: dAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAADbwAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAbwAAAAAAXAAAAAABXAAAAAADfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABdAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATAAAAAAAeAAAAAABTAAAAAAATAAAAAABeAAAAAABTAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABVQAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATAAAAAADeAAAAAABTAAAAAAATAAAAAACeAAAAAAATAAAAAACXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAAXAAAAAAAeQAAAAABeQAAAAAAeQAAAAABeQAAAAAAeQAAAAADeQAAAAACeQAAAAABeQAAAAAAeQAAAAABeQAAAAADVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAATAAAAAACeQAAAAABeQAAAAABeQAAAAAAeQAAAAACeQAAAAABeQAAAAABeQAAAAAAeQAAAAACeQAAAAAAeQAAAAACVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAATAAAAAABTAAAAAACTAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAABTAAAAAAATAAAAAACTAAAAAABTAAAAAABVQAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAHgAAAAABXAAAAAADXAAAAAACXAAAAAADHgAAAAACfQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAHgAAAAACXAAAAAABXAAAAAABXAAAAAABHgAAAAADfQAAAAAAVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAfQAAAAAAXAAAAAACXAAAAAABXAAAAAAAVQAAAAAAHgAAAAAAfQAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAADVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: WgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAABUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAUwAAAAAAWgAAAAABbQAAAAACbQAAAAACbQAAAAADWgAAAAABUwAAAAAAMgAAAAAAbQAAAAADbQAAAAADbQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAUwAAAAAAbQAAAAABbQAAAAADMgAAAAAAbQAAAAADbQAAAAADUwAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAACLQAAAAAALQAAAAAAdgAAAAADdgAAAAADdgAAAAADUwAAAAAAbQAAAAADMgAAAAAAMgAAAAAAMgAAAAAAbQAAAAABUwAAAAAAbQAAAAABbQAAAAADWgAAAAABbQAAAAADLQAAAAAAegAAAAAAdgAAAAADbQAAAAACbQAAAAACUwAAAAAAbQAAAAABbQAAAAACMgAAAAAAbQAAAAABbQAAAAAAUwAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAABLQAAAAAAegAAAAAAdgAAAAADbQAAAAAAbQAAAAADUwAAAAAAWgAAAAAAbQAAAAADbQAAAAAAbQAAAAABWgAAAAABUwAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAADUwAAAAAAUQAAAAAAUQAAAAAALQAAAAAAUwAAAAAAZAAAAAACZAAAAAACZQAAAAAAUwAAAAAATgAAAAAAEgAAAAAATgAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAWgAAAAADUwAAAAAALQAAAAAAUQAAAAAALQAAAAAAUwAAAAAAZAAAAAACZAAAAAACZQAAAAACUwAAAAAATgAAAAAAEgAAAAAATgAAAAAAUwAAAAAAWgAAAAADWgAAAAACWgAAAAADUwAAAAAALQAAAAAALQAAAAAALQAAAAAAUwAAAAAAZAAAAAADZAAAAAACZQAAAAACUwAAAAAATgAAAAAAEgAAAAAATgAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAABUwAAAAAALQAAAAAAUQAAAAAALQAAAAAAUwAAAAAAZAAAAAACZAAAAAADZQAAAAABUwAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAWgAAAAABWgAAAAAAWgAAAAACUwAAAAAALQAAAAAALQAAAAAAUQAAAAAAUwAAAAAAZAAAAAADZAAAAAAAZQAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABbQAAAAABWgAAAAACbQAAAAAAbQAAAAADegAAAAAAHgAAAAAAHgAAAAAAHgAAAAACUwAAAAAAbQAAAAAAbQAAAAACWgAAAAAAHgAAAAABHgAAAAABHgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAADHgAAAAABHgAAAAABHgAAAAADWgAAAAADUwAAAAAAbQAAAAACbQAAAAAC
+ tiles: XAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAABVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAXAAAAAABbwAAAAACbwAAAAACbwAAAAADXAAAAAABVQAAAAAAMgAAAAAAbwAAAAADbwAAAAADbwAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAbwAAAAABbwAAAAADMgAAAAAAbwAAAAADbwAAAAADVQAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAACLQAAAAAALQAAAAAAeAAAAAADeAAAAAADeAAAAAADVQAAAAAAbwAAAAADMgAAAAAAMgAAAAAAMgAAAAAAbwAAAAABVQAAAAAAbwAAAAABbwAAAAADXAAAAAABbwAAAAADLQAAAAAAfQAAAAAAeAAAAAADbwAAAAACbwAAAAACVQAAAAAAbwAAAAABbwAAAAACMgAAAAAAbwAAAAABbwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAADbwAAAAABLQAAAAAAfQAAAAAAeAAAAAADbwAAAAAAbwAAAAADVQAAAAAAXAAAAAAAbwAAAAADbwAAAAAAbwAAAAABXAAAAAABVQAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAADVQAAAAAAUQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAACZwAAAAAAVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAXAAAAAADVQAAAAAALQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAACZwAAAAACVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAZgAAAAADZgAAAAACZwAAAAACVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABVQAAAAAALQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZwAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAALQAAAAAALQAAAAAAUQAAAAAAVQAAAAAAZgAAAAADZgAAAAAAZwAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABbwAAAAABXAAAAAACbwAAAAAAbwAAAAADfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAbwAAAAAAbwAAAAACXAAAAAAAHgAAAAABHgAAAAABHgAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAADHgAAAAABHgAAAAABHgAAAAADXAAAAAADVQAAAAAAbwAAAAACbwAAAAAC
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: cgAAAAAAUwAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAAbQAAAAAAUwAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAATgAAAAAAbQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAbQAAAAAAUwAAAAAAWgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcgAAAAAAUwAAAAAAWgAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAaAAAAAAAWgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAAJgAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAWgAAAAAAaAAAAAAAWgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAAJgAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAWgAAAAAAaAAAAAAAWgAAAAAAOwAAAAAAaAAAAAAAOwAAAAAAJgAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADUwAAAAAATgAAAAAATgAAAAAATgAAAAAAbQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAUwAAAAAAWgAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWgAAAAABUwAAAAAATgAAAAAATgAAAAAATgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHgAAAAAAUwAAAAAAWgAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWgAAAAADUwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAWgAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAWgAAAAAAUwAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAA
+ tiles: dAAAAAAAVQAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAAbwAAAAAAVQAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAdAAAAAAAVQAAAAAAXAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADVQAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAXAAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAHgAAAAAAVQAAAAAAXAAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAADVQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAAAVQAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: WgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAADUwAAAAAAMgAAAAAAWgAAAAABWgAAAAABWgAAAAABMgAAAAAAUwAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADUwAAAAAAbQAAAAAAbQAAAAABbQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADUwAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAADUwAAAAAAbQAAAAABbQAAAAADbQAAAAABUwAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAABUwAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAACUwAAAAAAWgAAAAACWgAAAAAAbQAAAAABUwAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAADUwAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAACUwAAAAAAWgAAAAADWgAAAAACbQAAAAADUwAAAAAAMgAAAAAAWgAAAAACWgAAAAAAWgAAAAABMgAAAAAAUwAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAADegAAAAAAUwAAAAAAWgAAAAACWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAACHgAAAAAAUwAAAAAAXwAAAAAAXwAAAAADXwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAAAHgAAAAADUwAAAAAAXwAAAAAAXwAAAAAAagAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAAAHgAAAAADUwAAAAAAXwAAAAADXwAAAAACagAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACUwAAAAAAXwAAAAAAXwAAAAABagAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACUwAAAAAAXwAAAAAAXwAAAAABXwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAADegAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAABUwAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABbQAAAAADaQAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAD
+ tiles: XAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADVQAAAAAAMgAAAAAAXAAAAAABXAAAAAABXAAAAAABMgAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAbwAAAAAAbwAAAAABbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAAbwAAAAABbwAAAAADbwAAAAABVQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAABVQAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAbwAAAAABVQAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABXAAAAAADVQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAACbwAAAAADVQAAAAAAMgAAAAAAXAAAAAACXAAAAAAAXAAAAAABMgAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADfQAAAAAAVQAAAAAAXAAAAAACXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAACHgAAAAAAVQAAAAAAYQAAAAAAYQAAAAADYQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADVQAAAAAAYQAAAAAAYQAAAAAAbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAAAHgAAAAADVQAAAAAAYQAAAAADYQAAAAACbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAYQAAAAAAYQAAAAABbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAYQAAAAAAYQAAAAABYQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADfQAAAAAAXAAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAABVQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABbwAAAAADawAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAD
version: 6
-1,2:
ind: -1,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: HgAAAAADHgAAAAACHgAAAAAAegAAAAAAbQAAAAAAbQAAAAAAWgAAAAABbQAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADUwAAAAAAbQAAAAADbQAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADcgAAAAAAcgAAAAAAcgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABUwAAAAAAWgAAAAADWgAAAAABegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAZQAAAAADZQAAAAAAZQAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAABUwAAAAAAWgAAAAACcgAAAAABcgAAAAABegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABcgAAAAABcgAAAAAAcgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAABUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAABUwAAAAAAWgAAAAADWgAAAAABNwAAAAAANwAAAAAANwAAAAAAWgAAAAABWgAAAAADUwAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAABbQAAAAADTgAAAAAATgAAAAAATgAAAAAAUwAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABUwAAAAAAWgAAAAABWgAAAAABWgAAAAADbQAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAACegAAAAAAegAAAAAAUwAAAAAAWgAAAAABWgAAAAAAWgAAAAADbQAAAAACTgAAAAAATgAAAAAATgAAAAAAUwAAAAAAWgAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAWgAAAAAAUwAAAAAAWgAAAAACWgAAAAAAWgAAAAADegAAAAAAbQAAAAACbQAAAAAAbQAAAAADUwAAAAAAWgAAAAADagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABUwAAAAAAWgAAAAADWgAAAAABWgAAAAADbQAAAAABbQAAAAADegAAAAAAbQAAAAACUwAAAAAAWgAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAABUwAAAAAAdgAAAAAAdgAAAAABdgAAAAAAbQAAAAABegAAAAAAbQAAAAABbQAAAAADUwAAAAAAWgAAAAADawAAAAACagAAAAAAawAAAAAAagAAAAAAawAAAAAAWgAAAAABUwAAAAAA
+ tiles: HgAAAAADHgAAAAACHgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAABbwAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAADVQAAAAAAbwAAAAADbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADdAAAAAAAdAAAAAAAdAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAABVQAAAAAAXAAAAAADXAAAAAABfQAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAZwAAAAADZwAAAAAAZwAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAABVQAAAAAAXAAAAAACdAAAAAABdAAAAAABfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABdAAAAAABdAAAAAAAdAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAABVQAAAAAAXAAAAAADXAAAAAABNwAAAAAANwAAAAAANwAAAAAAXAAAAAABXAAAAAADVQAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABbwAAAAADTgAAAAAATgAAAAAATgAAAAAAVQAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABVQAAAAAAXAAAAAABXAAAAAABXAAAAAADbwAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAACfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAADbwAAAAACTgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXAAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADfQAAAAAAbwAAAAACbwAAAAAAbwAAAAADVQAAAAAAXAAAAAADbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAABVQAAAAAAXAAAAAADXAAAAAABXAAAAAADbwAAAAABbwAAAAADfQAAAAAAbwAAAAACVQAAAAAAXAAAAAACbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAABVQAAAAAAeAAAAAAAeAAAAAABeAAAAAAAbwAAAAABfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAXAAAAAADbQAAAAACbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAXAAAAAABVQAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: dgAAAAACdgAAAAABdgAAAAABegAAAAAAegAAAAAAbQAAAAADegAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAACeAAAAAABeAAAAAABfQAAAAAAfQAAAAAAbwAAAAADfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: bQAAAAABegAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAACUwAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAACUwAAAAAAMAAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAAAWgAAAAABcgAAAAABegAAAAAAegAAAAAAegAAAAAAcgAAAAAAegAAAAAAWgAAAAADUwAAAAAAbQAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAACUwAAAAAAMAAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAABUwAAAAAAWgAAAAABWgAAAAADegAAAAAAWgAAAAAAegAAAAAAWgAAAAACWgAAAAADUwAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAUwAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAADUwAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACUwAAAAAAWgAAAAACWgAAAAADegAAAAAAWgAAAAADegAAAAAAWgAAAAACWgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAJwAAAAADHgAAAAACHgAAAAABJwAAAAADHgAAAAACHgAAAAACJwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAANwAAAAAAegAAAAAANwAAAAAAegAAAAAAHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAegAAAAAANwAAAAAANwAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAegAAAAAANwAAAAAANwAAAAAAHgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAANwAAAAAAegAAAAAANwAAAAAAegAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: bwAAAAABfQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAACVQAAAAAAMAAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAABdAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAXAAAAAADVQAAAAAAbwAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAACVQAAAAAAMAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAAAXAAAAAABXAAAAAABVQAAAAAAXAAAAAABXAAAAAADfQAAAAAAXAAAAAAAfQAAAAAAXAAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACVQAAAAAAXAAAAAACXAAAAAADfQAAAAAAXAAAAAADfQAAAAAAXAAAAAACXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJwAAAAADHgAAAAACHgAAAAABJwAAAAADHgAAAAACHgAAAAACJwAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAANwAAAAAAfQAAAAAANwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAfQAAAAAANwAAAAAANwAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJwAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAfQAAAAAANwAAAAAANwAAAAAAHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAANwAAAAAAfQAAAAAANwAAAAAAfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: JwAAAAADHgAAAAAAHgAAAAAAJwAAAAAAHgAAAAAAHgAAAAADJwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: JwAAAAADHgAAAAAAHgAAAAAAJwAAAAAAHgAAAAAAHgAAAAADJwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: TgAAAAAATgAAAAAAWgAAAAAAUwAAAAAAWgAAAAADWgAAAAACWgAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAATgAAAAAATgAAAAAAWgAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAATgAAAAAAWgAAAAAAWgAAAAAAUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAbQAAAAAAbQAAAAAAWgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAbQAAAAAAegAAAAAAWgAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAACegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAADWgAAAAACWgAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAJwAAAAAAJwAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAUwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAUwAAAAAAHgAAAAAAHgAAAAAAWgAAAAABWgAAAAACWgAAAAADbQAAAAAAbQAAAAAAUwAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAUwAAAAAAegAAAAAAHgAAAAAAWgAAAAACWgAAAAACWgAAAAACbQAAAAAAbQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADUwAAAAAA
+ tiles: TgAAAAAATgAAAAAAXAAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAACfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAATgAAAAAATgAAAAAAXAAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAATgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAfQAAAAAAJwAAAAAAJwAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAXAAAAAABXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAfQAAAAAAHgAAAAAAXAAAAAACXAAAAAACXAAAAAACbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: dwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,2:
ind: 3,2
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: HgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAACMAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAADbQAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAMAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACegAAAAAAWgAAAAADegAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAACUwAAAAAAWgAAAAAAWgAAAAACWgAAAAABegAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAAAUwAAAAAAWgAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACMAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAADbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAMAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACfQAAAAAAXAAAAAADfQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAACVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: HgAAAAAAHgAAAAAAegAAAAAAWgAAAAABWgAAAAABbQAAAAAAbQAAAAAAUwAAAAAAWgAAAAADWgAAAAACegAAAAAAWgAAAAABegAAAAAAWgAAAAABWgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAACbQAAAAAAbQAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAAAbQAAAAACbQAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAADbQAAAAACbQAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAACTgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAbQAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: HgAAAAAAHgAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAADXAAAAAACfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAAAbwAAAAACbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADbwAAAAACbwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAACTgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
- type: GridPathfinding
- type: Gravity
@@ -2229,29 +2229,21 @@ entities:
entities:
- uid: 1221
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 41.5,3.5
parent: 1653
- uid: 1222
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 41.5,1.5
parent: 1653
- uid: 1223
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 49.5,1.5
parent: 1653
- uid: 1224
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 49.5,3.5
parent: 1653
@@ -2259,8 +2251,6 @@ entities:
entities:
- uid: 888
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,18.5
parent: 1653
@@ -2271,27 +2261,6 @@ entities:
- type: Transform
pos: 17.5,31.5
parent: 1653
-- proto: AloeSeeds
- entities:
- - uid: 1379
- components:
- - type: Transform
- pos: 16.516748,9.567207
- parent: 1653
-- proto: AmbrosiaVulgarisSeeds
- entities:
- - uid: 1380
- components:
- - type: Transform
- pos: 16.688623,9.410957
- parent: 1653
-- proto: AnomalyVesselCircuitboard
- entities:
- - uid: 883
- components:
- - type: Transform
- pos: 22.494812,28.596468
- parent: 1653
- proto: APCBasic
entities:
- uid: 353
@@ -2417,13 +2386,6 @@ entities:
- type: Transform
pos: 17.5,46.5
parent: 1653
-- proto: Autolathe
- entities:
- - uid: 1601
- components:
- - type: Transform
- pos: 33.5,16.5
- parent: 1653
- proto: Barricade
entities:
- uid: 665
@@ -2444,19 +2406,6 @@ entities:
- type: Transform
pos: 37.5,16.5
parent: 1653
-- proto: Beaker
- entities:
- - uid: 1470
- components:
- - type: Transform
- pos: 21.687025,4.54119
- parent: 1653
- - uid: 1604
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.286808,13.7495165
- parent: 1653
- proto: Bed
entities:
- uid: 1233
@@ -2501,64 +2450,33 @@ entities:
- type: Transform
pos: 42.5,0.5
parent: 1653
-- proto: BluespaceBeaker
- entities:
- - uid: 1476
- components:
- - type: Transform
- pos: 21.201073,4.650565
- parent: 1653
- proto: Bookshelf
entities:
- uid: 1241
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 40.5,4.5
parent: 1653
- uid: 1608
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,32.5
parent: 1653
- uid: 1609
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 38.5,32.5
parent: 1653
- uid: 1610
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 36.5,30.5
parent: 1653
- uid: 1611
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,30.5
parent: 1653
-- proto: BoxBeaker
- entities:
- - uid: 1484
- components:
- - type: Transform
- pos: 22.482006,0.7443154
- parent: 1653
-- proto: BoxFolderBlue
- entities:
- - uid: 776
- components:
- - type: Transform
- pos: 22.48359,30.550323
- parent: 1653
- proto: BoxFolderWhite
entities:
- uid: 1003
@@ -2566,18 +2484,6 @@ entities:
- type: Transform
pos: 21.488142,22.553272
parent: 1653
- - uid: 1568
- components:
- - type: Transform
- pos: 24.522593,16.500835
- parent: 1653
-- proto: CabbageSeeds
- entities:
- - uid: 1381
- components:
- - type: Transform
- pos: 16.501123,8.739082
- parent: 1653
- proto: CableApcExtension
entities:
- uid: 1
@@ -5175,23 +5081,6 @@ entities:
- type: Transform
pos: 27.5,7.5
parent: 1653
-- proto: CableApcStack
- entities:
- - uid: 824
- components:
- - type: Transform
- pos: 6.439933,35.56771
- parent: 1653
- - uid: 1117
- components:
- - type: Transform
- pos: 4.6041045,16.682789
- parent: 1653
- - uid: 1541
- components:
- - type: Transform
- pos: 27.694578,8.767019
- parent: 1653
- proto: CableHV
entities:
- uid: 544
@@ -5394,13 +5283,6 @@ entities:
- type: Transform
pos: 25.5,9.5
parent: 1653
-- proto: CableHVStack
- entities:
- - uid: 1543
- components:
- - type: Transform
- pos: 27.850828,8.329519
- parent: 1653
- proto: CableMV
entities:
- uid: 573
@@ -5473,18 +5355,6 @@ entities:
- type: Transform
pos: 30.5,9.5
parent: 1653
-- proto: CableMVStack
- entities:
- - uid: 825
- components:
- - type: Transform
- pos: 12.486409,39.468937
- parent: 1653
- - uid: 1542
- components:
- - type: Transform
- pos: 27.819578,8.595144
- parent: 1653
- proto: CableTerminal
entities:
- uid: 543
@@ -5516,13 +5386,6 @@ entities:
rot: 3.141592653589793 rad
pos: 30.5,7.5
parent: 1653
-- proto: CannabisSeeds
- entities:
- - uid: 905
- components:
- - type: Transform
- pos: 4.5,18.5
- parent: 1653
- proto: CarpetGreen
entities:
- uid: 1244
@@ -5627,13 +5490,6 @@ entities:
- type: Transform
pos: 10.5,7.5
parent: 1653
-- proto: CarrotSeeds
- entities:
- - uid: 1382
- components:
- - type: Transform
- pos: 16.641748,8.598457
- parent: 1653
- proto: Catwalk
entities:
- uid: 560
@@ -6141,13 +5997,6 @@ entities:
- type: Transform
pos: 29.5,4.5
parent: 1653
-- proto: ChemDispenserMachineCircuitboard
- entities:
- - uid: 1116
- components:
- - type: Transform
- pos: 1.4478545,16.542164
- parent: 1653
- proto: ChemicalPayload
entities:
- uid: 1106
@@ -6162,54 +6011,6 @@ entities:
- type: Transform
pos: 45.521095,1.5328176
parent: 1653
-- proto: CircuitImprinter
- entities:
- - uid: 1600
- components:
- - type: Transform
- pos: 32.5,16.5
- parent: 1653
-- proto: ClosetBombFilled
- entities:
- - uid: 847
- components:
- - type: Transform
- pos: 20.5,28.5
- parent: 1653
-- proto: ClosetEmergencyFilledRandom
- entities:
- - uid: 470
- components:
- - type: Transform
- pos: 2.5,48.5
- parent: 1653
- - uid: 744
- components:
- - type: Transform
- pos: 16.5,32.5
- parent: 1653
- - uid: 899
- components:
- - type: Transform
- pos: 4.5,22.5
- parent: 1653
-- proto: ClosetFireFilled
- entities:
- - uid: 468
- components:
- - type: Transform
- pos: 0.5,48.5
- parent: 1653
- - uid: 747
- components:
- - type: Transform
- pos: 1.5,40.5
- parent: 1653
- - uid: 900
- components:
- - type: Transform
- pos: 3.5,22.5
- parent: 1653
- proto: ClosetJanitorFilled
entities:
- uid: 727
@@ -6224,69 +6025,6 @@ entities:
- type: Transform
pos: 4.5,28.5
parent: 1653
-- proto: ClosetL3ScienceFilled
- entities:
- - uid: 469
- components:
- - type: Transform
- pos: 1.5,48.5
- parent: 1653
- - uid: 1285
- components:
- - type: Transform
- pos: 53.5,0.5
- parent: 1653
- - uid: 1286
- components:
- - type: Transform
- pos: 54.5,0.5
- parent: 1653
-- proto: ClosetMaintenanceFilledRandom
- entities:
- - uid: 745
- components:
- - type: Transform
- pos: 14.5,32.5
- parent: 1653
- - uid: 948
- components:
- - type: Transform
- pos: 5.5,7.5
- parent: 1653
- - uid: 954
- components:
- - type: Transform
- pos: 0.5,7.5
- parent: 1653
- - uid: 955
- components:
- - type: Transform
- pos: 0.5,6.5
- parent: 1653
- - uid: 1284
- components:
- - type: Transform
- pos: 52.5,0.5
- parent: 1653
-- proto: ClosetRadiationSuitFilled
- entities:
- - uid: 746
- components:
- - type: Transform
- pos: 43.5,40.5
- parent: 1653
- - uid: 1556
- components:
- - type: Transform
- pos: 30.5,16.5
- parent: 1653
-- proto: ClosetToolFilled
- entities:
- - uid: 584
- components:
- - type: Transform
- pos: 14.5,42.5
- parent: 1653
- proto: ClothingBeltUtilityEngineering
entities:
- uid: 786
@@ -6294,13 +6032,6 @@ entities:
- type: Transform
pos: 30.535934,19.609272
parent: 1653
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 591
- components:
- - type: Transform
- pos: 10.480986,45.607067
- parent: 1653
- proto: ClothingHeadHatAnimalHeadslime
entities:
- uid: 1457
@@ -6315,20 +6046,6 @@ entities:
- type: Transform
pos: 17.452066,13.392001
parent: 1653
-- proto: ClothingHeadHatWeldingMaskFlame
- entities:
- - uid: 661
- components:
- - type: Transform
- pos: 21.418028,36.658634
- parent: 1653
-- proto: ClothingHeadHatWeldingMaskFlameBlue
- entities:
- - uid: 662
- components:
- - type: Transform
- pos: 21.605528,36.471134
- parent: 1653
- proto: ClothingHeadsetMedicalScience
entities:
- uid: 1566
@@ -6345,11 +6062,6 @@ entities:
parent: 1653
- proto: ClothingOuterCoatLab
entities:
- - uid: 686
- components:
- - type: Transform
- pos: 33.54252,36.551563
- parent: 1653
- uid: 828
components:
- type: Transform
@@ -6512,20 +6224,6 @@ entities:
- type: Transform
pos: 6.5,28.5
parent: 1653
-- proto: Crowbar
- entities:
- - uid: 1115
- components:
- - type: Transform
- pos: 2.5208104,12.456571
- parent: 1653
-- proto: CryostasisBeaker
- entities:
- - uid: 1340
- components:
- - type: Transform
- pos: 8.491919,3.5715053
- parent: 1653
- proto: DisposalTrunk
entities:
- uid: 1436
@@ -6594,13 +6292,6 @@ entities:
- type: Transform
pos: 33.5,2.5
parent: 1653
-- proto: DonkpocketBoxSpawner
- entities:
- - uid: 962
- components:
- - type: Transform
- pos: 0.5,9.5
- parent: 1653
- proto: DrinkCognacBottleFull
entities:
- uid: 866
@@ -6608,102 +6299,19 @@ entities:
- type: Transform
pos: 37.505463,32.677124
parent: 1653
-- proto: DrinkGoldenCup
+- proto: EmergencyLight
entities:
- - uid: 865
+ - uid: 1605
components:
- type: Transform
- pos: 31.489838,32.583374
+ pos: 29.5,8.5
parent: 1653
-- proto: DrinkMug
- entities:
- - uid: 963
+ - type: ActiveEmergencyLight
+ - uid: 1606
components:
- type: Transform
- pos: 1.4545751,10.669063
- parent: 1653
-- proto: DrinkMugDog
- entities:
- - uid: 965
- components:
- - type: Transform
- pos: 1.4858251,10.465938
- parent: 1653
-- proto: DrinkMugMetal
- entities:
- - uid: 964
- components:
- - type: Transform
- pos: 1.6889501,10.590938
- parent: 1653
-- proto: DrinkMugMoebius
- entities:
- - uid: 966
- components:
- - type: Transform
- pos: 2.173325,10.684688
- parent: 1653
-- proto: DrinkWaterCup
- entities:
- - uid: 508
- components:
- - type: Transform
- pos: 20.373915,40.64657
- parent: 1653
- - uid: 509
- components:
- - type: Transform
- pos: 20.54579,40.724693
- parent: 1653
- - uid: 510
- components:
- - type: Transform
- pos: 20.592665,40.537193
- parent: 1653
- - uid: 1351
- components:
- - type: Transform
- pos: 0.40165997,3.6027553
- parent: 1653
- - uid: 1352
- components:
- - type: Transform
- pos: 0.62040997,3.4777553
- parent: 1653
-- proto: Dropper
- entities:
- - uid: 1471
- components:
- - type: Transform
- pos: 22.57765,4.50994
- parent: 1653
-- proto: EggplantSeeds
- entities:
- - uid: 1384
- components:
- - type: Transform
- pos: 16.626123,7.6609573
- parent: 1653
-- proto: EggySeeds
- entities:
- - uid: 1383
- components:
- - type: Transform
- pos: 16.422998,7.8484573
- parent: 1653
-- proto: EmergencyLight
- entities:
- - uid: 1605
- components:
- - type: Transform
- pos: 29.5,8.5
- parent: 1653
- - type: ActiveEmergencyLight
- - uid: 1606
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,16.5
parent: 1653
- type: ActiveEmergencyLight
- uid: 1607
@@ -6761,11 +6369,6 @@ entities:
- type: Transform
pos: 18.5,0.5
parent: 1653
- - uid: 1576
- components:
- - type: Transform
- pos: 35.5,16.5
- parent: 1653
- proto: filingCabinetRandom
entities:
- uid: 1482
@@ -6793,18 +6396,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 26.272593,12.469586
parent: 1653
-- proto: FlashlightLantern
- entities:
- - uid: 818
- components:
- - type: Transform
- pos: 14.29982,28.712414
- parent: 1653
- - uid: 819
- components:
- - type: Transform
- pos: 14.51857,28.524914
- parent: 1653
- proto: FlashPayload
entities:
- uid: 1105
@@ -6819,13 +6410,6 @@ entities:
- type: Transform
pos: 19.496153,34.502384
parent: 1653
-- proto: FloodlightBroken
- entities:
- - uid: 523
- components:
- - type: Transform
- pos: 36.481613,40.499622
- parent: 1653
- proto: FloorDrain
entities:
- uid: 472
@@ -6858,80 +6442,48 @@ entities:
fixtures: {}
- proto: FoamedAluminiumMetal
entities:
- - uid: 646
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 19.5,36.5
- parent: 1653
- uid: 647
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,34.5
parent: 1653
- uid: 648
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,34.5
parent: 1653
- uid: 649
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,34.5
parent: 1653
- uid: 650
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,35.5
parent: 1653
- uid: 651
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,35.5
parent: 1653
- uid: 652
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,35.5
parent: 1653
- uid: 653
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,36.5
parent: 1653
- uid: 654
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,36.5
parent: 1653
- - uid: 655
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 15.5,35.5
- parent: 1653
- uid: 656
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,36.5
parent: 1653
@@ -6939,22 +6491,16 @@ entities:
entities:
- uid: 532
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 36.5,39.5
parent: 1653
- uid: 533
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 35.5,40.5
parent: 1653
- uid: 534
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 36.5,38.5
parent: 1653
@@ -6982,18 +6528,6 @@ entities:
- type: Transform
pos: 19.514566,14.517001
parent: 1653
-- proto: FoodTinBeans
- entities:
- - uid: 732
- components:
- - type: Transform
- pos: 1.4379241,25.941437
- parent: 1653
- - uid: 733
- components:
- - type: Transform
- pos: 1.5941741,25.738312
- parent: 1653
- proto: GasCanisterBrokenBase
entities:
- uid: 492
@@ -7265,8 +6799,6 @@ entities:
entities:
- uid: 1153
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,13.5
parent: 1653
@@ -7282,13 +6814,6 @@ entities:
- type: Transform
pos: 0.5,22.5
parent: 1653
-- proto: HydroponicsToolMiniHoe
- entities:
- - uid: 1378
- components:
- - type: Transform
- pos: 18.469873,9.442207
- parent: 1653
- proto: hydroponicsTray
entities:
- uid: 1354
@@ -7351,20 +6876,6 @@ entities:
- type: Transform
pos: 21.5,9.5
parent: 1653
-- proto: IngotGold
- entities:
- - uid: 712
- components:
- - type: Transform
- pos: 1.5054436,26.820345
- parent: 1653
-- proto: KitchenMicrowave
- entities:
- - uid: 961
- components:
- - type: Transform
- pos: 0.5,10.5
- parent: 1653
- proto: Lamp
entities:
- uid: 769
@@ -7399,25 +6910,6 @@ entities:
- type: Transform
pos: 6.619122,16.201466
parent: 1653
-- proto: LargeBeaker
- entities:
- - uid: 1468
- components:
- - type: Transform
- pos: 21.7339,4.82244
- parent: 1653
- - uid: 1469
- components:
- - type: Transform
- pos: 21.9839,4.619315
- parent: 1653
-- proto: LockerElectricalSuppliesFilled
- entities:
- - uid: 1533
- components:
- - type: Transform
- pos: 27.5,9.5
- parent: 1653
- proto: LockerScienceFilled
entities:
- uid: 699
@@ -7435,11 +6927,6 @@ entities:
- type: Transform
pos: 14.5,25.5
parent: 1653
- - uid: 811
- components:
- - type: Transform
- pos: 14.5,26.5
- parent: 1653
- uid: 812
components:
- type: Transform
@@ -7450,13 +6937,6 @@ entities:
- type: Transform
pos: 30.5,18.5
parent: 1653
-- proto: LockerWeldingSuppliesFilled
- entities:
- - uid: 1531
- components:
- - type: Transform
- pos: 31.5,9.5
- parent: 1653
- proto: MachineAPE
entities:
- uid: 838
@@ -7465,12 +6945,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 22.5,25.5
parent: 1653
- - uid: 839
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,26.5
- parent: 1653
- uid: 840
components:
- type: Transform
@@ -7479,21 +6953,11 @@ entities:
parent: 1653
- proto: MachineFrame
entities:
- - uid: 617
- components:
- - type: Transform
- pos: 18.5,46.5
- parent: 1653
- uid: 1087
components:
- type: Transform
pos: 2.5,16.5
parent: 1653
- - uid: 1603
- components:
- - type: Transform
- pos: 32.5,14.5
- parent: 1653
- proto: MachineTraversalDistorter
entities:
- uid: 1058
@@ -7550,34 +7014,6 @@ entities:
- type: Transform
pos: 24.569468,13.125836
parent: 1653
-- proto: MaterialCloth
- entities:
- - uid: 879
- components:
- - type: Transform
- pos: 8.569059,28.508856
- parent: 1653
-- proto: MaterialDiamond
- entities:
- - uid: 821
- components:
- - type: Transform
- pos: 1.5085931,27.696789
- parent: 1653
-- proto: MaterialDurathread
- entities:
- - uid: 880
- components:
- - type: Transform
- pos: 1.4759097,31.629063
- parent: 1653
-- proto: MaterialWoodPlank
- entities:
- - uid: 669
- components:
- - type: Transform
- pos: 20.62062,34.599228
- parent: 1653
- proto: MedicalScanner
entities:
- uid: 1548
@@ -7656,37 +7092,6 @@ entities:
- type: Transform
pos: 4.4881024,27.500042
parent: 1653
-- proto: Multitool
- entities:
- - uid: 494
- components:
- - type: Transform
- pos: 0.51333475,46.52365
- parent: 1653
- - uid: 1049
- components:
- - type: Transform
- pos: 27.480967,22.500828
- parent: 1653
-- proto: NitrousOxideCanister
- entities:
- - uid: 834
- components:
- - type: Transform
- pos: 16.5,26.5
- parent: 1653
-- proto: PaperBin5
- entities:
- - uid: 785
- components:
- - type: Transform
- pos: 24.5,31.5
- parent: 1653
- - uid: 1567
- components:
- - type: Transform
- pos: 30.5,13.5
- parent: 1653
- proto: PartRodMetal1
entities:
- uid: 531
@@ -7694,27 +7099,6 @@ entities:
- type: Transform
pos: 33.42354,40.437122
parent: 1653
-- proto: Pen
- entities:
- - uid: 1077
- components:
- - type: Transform
- pos: 19.504536,32.587963
- parent: 1653
-- proto: PillCanister
- entities:
- - uid: 1574
- components:
- - type: Transform
- pos: 24.34895,16.173763
- parent: 1653
-- proto: PlasmaCanister
- entities:
- - uid: 833
- components:
- - type: Transform
- pos: 16.5,27.5
- parent: 1653
- proto: PlasmaReinforcedWindowDirectional
entities:
- uid: 645
@@ -7763,13 +7147,6 @@ entities:
- type: Transform
pos: 34.5,36.5
parent: 1653
-- proto: PlasmaTankFilled
- entities:
- - uid: 1473
- components:
- - type: Transform
- pos: 30.568752,4.54119
- parent: 1653
- proto: PlushieSharkGrey
entities:
- uid: 926
@@ -7810,30 +7187,6 @@ entities:
- type: Transform
pos: 0.5,13.5
parent: 1653
-- proto: PottedPlant10
- entities:
- - uid: 927
- components:
- - type: Transform
- pos: 10.505794,22.255857
- parent: 1653
-- proto: PottedPlant19
- entities:
- - uid: 503
- components:
- - type: Transform
- pos: 11.477652,39.22891
- parent: 1653
- - uid: 990
- components:
- - type: Transform
- pos: 4.4883204,10.239479
- parent: 1653
- - uid: 1100
- components:
- - type: Transform
- pos: 5.5066643,12.233577
- parent: 1653
- proto: PottedPlantRandom
entities:
- uid: 498
@@ -7873,12 +7226,25 @@ entities:
- type: Transform
pos: 7.5,32.5
parent: 1653
-- proto: PowerCellHyperPrinted
- entities:
- - uid: 1599
+ - uid: 833
components:
- type: Transform
- pos: 33.368233,13.5307665
+ pos: 10.5,22.5
+ parent: 1653
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 1653
+ - uid: 865
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1653
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 11.5,39.5
parent: 1653
- proto: PowerCellRecharger
entities:
@@ -7907,19 +7273,10 @@ entities:
- type: Transform
pos: 36.5,14.5
parent: 1653
-- proto: PowerDrill
- entities:
- - uid: 1050
- components:
- - type: Transform
- pos: 28.512217,21.547703
- parent: 1653
- proto: Poweredlight
entities:
- uid: 499
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 18.5,38.5
@@ -7928,8 +7285,6 @@ entities:
powerLoad: 0
- uid: 506
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,38.5
@@ -7938,8 +7293,6 @@ entities:
powerLoad: 0
- uid: 513
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,38.5
@@ -7948,8 +7301,6 @@ entities:
powerLoad: 0
- uid: 537
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 42.5,40.5
parent: 1653
@@ -7957,8 +7308,6 @@ entities:
powerLoad: 0
- uid: 634
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,36.5
parent: 1653
@@ -7966,8 +7315,6 @@ entities:
powerLoad: 0
- uid: 635
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,34.5
@@ -7976,8 +7323,6 @@ entities:
powerLoad: 0
- uid: 657
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,36.5
parent: 1653
@@ -7985,8 +7330,6 @@ entities:
powerLoad: 0
- uid: 676
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 31.5,34.5
@@ -7995,8 +7338,6 @@ entities:
powerLoad: 0
- uid: 680
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,36.5
parent: 1653
@@ -8004,8 +7345,6 @@ entities:
powerLoad: 0
- uid: 704
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,32.5
parent: 1653
@@ -8013,8 +7352,6 @@ entities:
powerLoad: 0
- uid: 770
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,32.5
parent: 1653
@@ -8022,8 +7359,6 @@ entities:
powerLoad: 0
- uid: 771
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,32.5
parent: 1653
@@ -8031,8 +7366,6 @@ entities:
powerLoad: 0
- uid: 870
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,32.5
parent: 1653
@@ -8040,8 +7373,6 @@ entities:
powerLoad: 0
- uid: 872
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 38.5,32.5
parent: 1653
@@ -8049,8 +7380,6 @@ entities:
powerLoad: 0
- uid: 932
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,19.5
@@ -8059,8 +7388,6 @@ entities:
powerLoad: 0
- uid: 933
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 6.5,21.5
@@ -8069,8 +7396,6 @@ entities:
powerLoad: 0
- uid: 944
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,22.5
parent: 1653
@@ -8078,8 +7403,6 @@ entities:
powerLoad: 0
- uid: 945
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 13.5,18.5
@@ -8088,8 +7411,6 @@ entities:
powerLoad: 0
- uid: 1011
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,22.5
parent: 1653
@@ -8097,8 +7418,6 @@ entities:
powerLoad: 0
- uid: 1012
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 22.5,18.5
@@ -8107,8 +7426,6 @@ entities:
powerLoad: 0
- uid: 1052
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 25.5,18.5
@@ -8117,8 +7434,6 @@ entities:
powerLoad: 0
- uid: 1109
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,14.5
@@ -8127,8 +7442,6 @@ entities:
powerLoad: 0
- uid: 1110
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,14.5
@@ -8137,8 +7450,6 @@ entities:
powerLoad: 0
- uid: 1280
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 36.5,3.5
@@ -8147,8 +7458,6 @@ entities:
powerLoad: 0
- uid: 1281
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 54.5,1.5
@@ -8157,8 +7466,6 @@ entities:
powerLoad: 0
- uid: 1282
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 43.5,2.5
parent: 1653
@@ -8166,8 +7473,6 @@ entities:
powerLoad: 0
- uid: 1344
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,2.5
@@ -8176,8 +7481,6 @@ entities:
powerLoad: 0
- uid: 1345
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 14.5,2.5
@@ -8186,8 +7489,6 @@ entities:
powerLoad: 0
- uid: 1385
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 15.5,8.5
@@ -8196,8 +7497,6 @@ entities:
powerLoad: 0
- uid: 1386
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 19.5,8.5
@@ -8206,8 +7505,6 @@ entities:
powerLoad: 0
- uid: 1590
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,4.5
parent: 1653
@@ -8215,8 +7512,6 @@ entities:
powerLoad: 0
- uid: 1591
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,15.5
@@ -8225,8 +7520,6 @@ entities:
powerLoad: 0
- uid: 1592
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 24.5,13.5
@@ -8235,8 +7528,6 @@ entities:
powerLoad: 0
- uid: 1593
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 34.5,19.5
@@ -8272,8 +7563,6 @@ entities:
entities:
- uid: 622
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 18.5,43.5
@@ -8282,8 +7571,6 @@ entities:
powerLoad: 0
- uid: 1342
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 12.5,2.5
@@ -8292,8 +7579,6 @@ entities:
powerLoad: 0
- uid: 1343
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,2.5
@@ -8545,13 +7830,6 @@ entities:
parent: 1653
- type: ApcPowerReceiver
powerLoad: 0
-- proto: Protolathe
- entities:
- - uid: 618
- components:
- - type: Transform
- pos: 20.5,46.5
- parent: 1653
- proto: Rack
entities:
- uid: 659
@@ -8685,22 +7963,13 @@ entities:
- type: Transform
pos: 34.5,22.5
parent: 1653
-- proto: RandomFoodMeal
- entities:
- - uid: 993
- components:
- - type: Transform
- pos: 12.5,22.5
- parent: 1653
-- proto: RandomFoodSingle
+- proto: RandomInstruments
entities:
- - uid: 708
+ - uid: 934
components:
- type: Transform
- pos: 11.5,30.5
+ pos: 10.5,27.5
parent: 1653
-- proto: RandomInstruments
- entities:
- uid: 1248
components:
- type: Transform
@@ -8728,21 +7997,11 @@ entities:
- type: Transform
pos: 7.5,22.5
parent: 1653
- - uid: 1658
- components:
- - type: Transform
- pos: 14.5,28.5
- parent: 1653
- uid: 1659
components:
- type: Transform
pos: 20.5,24.5
parent: 1653
- - uid: 1660
- components:
- - type: Transform
- pos: 22.5,28.5
- parent: 1653
- uid: 1661
components:
- type: Transform
@@ -8753,11 +8012,6 @@ entities:
- type: Transform
pos: 19.5,30.5
parent: 1653
- - uid: 1663
- components:
- - type: Transform
- pos: 1.5,31.5
- parent: 1653
- uid: 1664
components:
- type: Transform
@@ -8813,16 +8067,6 @@ entities:
- type: Transform
pos: 27.5,22.5
parent: 1653
- - uid: 1675
- components:
- - type: Transform
- pos: 33.5,13.5
- parent: 1653
- - uid: 1676
- components:
- - type: Transform
- pos: 36.5,15.5
- parent: 1653
- uid: 1677
components:
- type: Transform
@@ -8838,16 +8082,6 @@ entities:
- type: Transform
pos: 2.5,10.5
parent: 1653
- - uid: 1680
- components:
- - type: Transform
- pos: 27.5,2.5
- parent: 1653
- - uid: 1681
- components:
- - type: Transform
- pos: 46.5,1.5
- parent: 1653
- uid: 1682
components:
- type: Transform
@@ -8885,13 +8119,6 @@ entities:
- type: Transform
pos: 39.5,0.5
parent: 1653
-- proto: RandomSnacks
- entities:
- - uid: 994
- components:
- - type: Transform
- pos: 16.5,18.5
- parent: 1653
- proto: RandomSoap
entities:
- uid: 800
@@ -8941,13 +8168,6 @@ entities:
- type: Transform
pos: 6.5,45.5
parent: 1653
-- proto: RandomVending
- entities:
- - uid: 934
- components:
- - type: Transform
- pos: 16.5,22.5
- parent: 1653
- proto: Recycler
entities:
- uid: 832
@@ -8968,496 +8188,1211 @@ entities:
- type: Transform
pos: 17.5,32.5
parent: 1653
-- proto: RemoteSignaller
+- proto: SeedExtractor
entities:
- - uid: 1628
- components:
- - type: Transform
- pos: 42.357162,12.70194
- parent: 1653
- - uid: 1629
+ - uid: 1373
components:
- type: Transform
- pos: 42.482162,12.85819
+ pos: 18.5,8.5
parent: 1653
- - uid: 1630
+- proto: ShardGlass
+ entities:
+ - uid: 474
components:
- type: Transform
- pos: 42.607162,12.70194
+ pos: 2.445806,46.508026
parent: 1653
-- proto: ResearchDisk
+- proto: ShardGlassReinforced
entities:
- - uid: 1625
+ - uid: 1057
components:
- type: Transform
- pos: 8.434439,1.4775863
+ pos: 34.381138,20.460537
parent: 1653
- - uid: 1626
+ - uid: 1561
components:
- type: Transform
- pos: 32.469986,0.49321127
+ pos: 25.506968,14.578961
parent: 1653
- - uid: 1627
+- proto: SheetSteel1
+ entities:
+ - uid: 536
components:
- type: Transform
- pos: 24.461615,16.586529
+ pos: 32.52815,38.437122
parent: 1653
-- proto: ResearchDisk10000
+- proto: ShuttersWindow
entities:
- - uid: 621
+ - uid: 580
components:
- type: Transform
- pos: 18.512283,44.508656
+ pos: 10.5,43.5
parent: 1653
-- proto: ResearchDisk5000
- entities:
- - uid: 1624
+ - type: DeviceLinkSink
+ links:
+ - 583
+ - uid: 581
components:
- type: Transform
- pos: 36.524506,15.557037
+ pos: 11.5,43.5
parent: 1653
-- proto: RockGuitarInstrument
- entities:
- - uid: 829
+ - type: DeviceLinkSink
+ links:
+ - 583
+ - uid: 582
components:
- type: Transform
- pos: 10.533063,27.58727
+ pos: 12.5,43.5
parent: 1653
-- proto: RPED
+ - type: DeviceLinkSink
+ links:
+ - 583
+- proto: SignalButton
entities:
- - uid: 1646
+ - uid: 583
components:
- type: Transform
- pos: 32.49994,15.5244
+ pos: 9.5,43.5
parent: 1653
-- proto: SalvageCanisterSpawner
+ - type: DeviceLinkSource
+ linkedPorts:
+ 580:
+ - Pressed: Toggle
+ 581:
+ - Pressed: Toggle
+ 582:
+ - Pressed: Toggle
+- proto: SignElectricalMed
entities:
- - uid: 493
+ - uid: 585
components:
- type: Transform
- pos: 6.5,48.5
+ pos: 8.5,43.5
parent: 1653
- - uid: 835
+ - uid: 626
components:
- type: Transform
- pos: 16.5,25.5
+ pos: 21.5,47.5
parent: 1653
- - uid: 1086
+ - uid: 1540
components:
- type: Transform
- pos: 1.5,12.5
+ pos: 28.5,9.5
parent: 1653
- - uid: 1098
+- proto: SignRedFour
+ entities:
+ - uid: 1252
components:
- type: Transform
- pos: 1.5,13.5
+ pos: 48.5,1.5
parent: 1653
-- proto: SalvagePartsT2Spawner
+- proto: SignRedOne
entities:
- - uid: 1637
+ - uid: 1249
components:
- type: Transform
- pos: 41.5,12.5
+ pos: 40.5,3.5
parent: 1653
- - uid: 1639
+- proto: SignRedThree
+ entities:
+ - uid: 1251
components:
- type: Transform
- pos: 35.5,14.5
+ pos: 48.5,3.5
parent: 1653
- - uid: 1640
+- proto: SignRedTwo
+ entities:
+ - uid: 1250
components:
- type: Transform
- pos: 10.5,7.5
+ pos: 40.5,1.5
parent: 1653
- - uid: 1641
+- proto: SignScience
+ entities:
+ - uid: 1596
components:
- type: Transform
- pos: 23.5,2.5
+ pos: 34.5,16.5
parent: 1653
- - uid: 1643
+- proto: SignSecureMed
+ entities:
+ - uid: 698
components:
- type: Transform
- pos: 37.5,0.5
+ pos: 3.5,32.5
parent: 1653
- - uid: 1644
+ - uid: 1154
components:
- type: Transform
- pos: 2.5,31.5
+ pos: 10.5,13.5
parent: 1653
- - uid: 1645
+- proto: SignShock
+ entities:
+ - uid: 625
components:
- type: Transform
- pos: 1.5,46.5
+ pos: 17.5,43.5
parent: 1653
-- proto: SalvagePartsT3Spawner
- entities:
- - uid: 1638
+ - uid: 1155
components:
- type: Transform
- pos: 42.5,13.5
+ pos: 12.5,13.5
parent: 1653
- - uid: 1642
+- proto: SignXenolab
+ entities:
+ - uid: 1461
components:
- type: Transform
- pos: 31.5,2.5
+ pos: 19.5,4.5
parent: 1653
-- proto: Screwdriver
- entities:
- - uid: 1111
+ - uid: 1462
components:
- type: Transform
- pos: 2.6822295,12.620289
+ pos: 33.5,4.5
parent: 1653
-- proto: SeedExtractor
+- proto: SinkWide
entities:
- - uid: 1373
+ - uid: 471
components:
- type: Transform
- pos: 18.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,47.5
+ parent: 1653
+ - uid: 717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,25.5
+ parent: 1653
+ - uid: 803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,24.5
+ parent: 1653
+ - uid: 804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,28.5
+ parent: 1653
+ - uid: 805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,28.5
+ parent: 1653
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1653
+ - uid: 891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,19.5
+ parent: 1653
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1653
+- proto: SmartFridge
+ entities:
+ - uid: 1458
+ components:
+ - type: Transform
+ pos: 23.5,4.5
+ parent: 1653
+- proto: SMESBasic
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+- proto: SpawnDungeonClutterBeakerEmpty
+ entities:
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 22.287348,4.675832
+ parent: 1653
+ - uid: 591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.36547,13.565901
+ parent: 1653
+ - uid: 617
+ components:
+ - type: Transform
+ pos: 21.115473,4.441457
+ parent: 1653
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 22.709223,4.472707
+ parent: 1653
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 8.461665,3.597707
+ parent: 1653
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 22.474848,0.55083203
+ parent: 1653
+ - uid: 969
+ components:
+ - type: Transform
+ pos: 21.365473,4.769582
+ parent: 1653
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 21.724848,4.457082
+ parent: 1653
+ - uid: 1699
+ components:
+ - type: Transform
+ pos: 8.727577,3.7073417
+ parent: 1653
+- proto: SpawnDungeonClutterMedical
+ entities:
+ - uid: 1688
+ components:
+ - type: Transform
+ pos: 24.561113,15.592649
+ parent: 1653
+- proto: SpawnDungeonLootArmoryGuns
+ entities:
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 31.586124,32.486885
+ parent: 1653
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 4.57791,18.555695
+ parent: 1653
+ - uid: 1700
+ components:
+ - type: Transform
+ pos: 42.576458,0.5552789
+ parent: 1653
+ - uid: 1704
+ components:
+ - type: Transform
+ pos: 36.555485,40.471622
+ parent: 1653
+- proto: SpawnDungeonLootBureaucracy
+ entities:
+ - uid: 619
+ components:
+ - type: Transform
+ pos: 19.528336,32.551476
+ parent: 1653
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 24.357988,16.108274
+ parent: 1653
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 24.54396,31.660852
+ parent: 1653
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 30.51717,13.502149
+ parent: 1653
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 22.51271,30.598352
+ parent: 1653
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: 24.592363,16.514524
+ parent: 1653
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 16.5,25.5
+ parent: 1653
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 6.5,48.5
+ parent: 1653
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 1653
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1653
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 1653
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1653
+- proto: SpawnDungeonLootChemsHydroponics
+ entities:
+ - uid: 1703
+ components:
+ - type: Transform
+ pos: 18.602531,9.773348
+ parent: 1653
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 22.38291,28.488028
+ parent: 1653
+ - uid: 1383
+ components:
+ - type: Transform
+ pos: 22.679785,28.597403
+ parent: 1653
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 33.507645,36.598564
+ parent: 1653
+ - uid: 880
+ components:
+ - type: Transform
+ pos: 14.341439,28.738409
+ parent: 1653
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 14.310189,28.457159
+ parent: 1653
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 33.191795,13.486207
+ parent: 1653
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: 14.669564,28.613409
+ parent: 1653
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: 33.629295,13.673707
+ parent: 1653
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 36.973045,15.079957
+ parent: 1653
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 41.42337,12.704957
+ parent: 1653
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 41.220245,12.501832
+ parent: 1653
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 41.70462,12.470582
+ parent: 1653
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 42.51712,13.548707
+ parent: 1653
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 36.48867,16.579956
+ parent: 1653
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: 10.367256,7.6852627
+ parent: 1653
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 42.57962,12.751832
+ parent: 1653
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: 37.614346,39.748646
+ parent: 1653
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 32.55117,13.658082
+ parent: 1653
+ - uid: 1641
+ components:
+ - type: Transform
+ pos: 35.535545,14.642457
+ parent: 1653
+ - uid: 1680
+ components:
+ - type: Transform
+ pos: 21.462755,36.54628
+ parent: 1653
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: 8.553732,35.58555
+ parent: 1653
+ - uid: 1686
+ components:
+ - type: Transform
+ pos: 10.648506,7.4196377
+ parent: 1653
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: 36.51992,15.923707
+ parent: 1653
+- proto: SpawnDungeonLootClutterKitchen
+ entities:
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 1.5097866,10.419947
+ parent: 1653
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 1.2597866,10.779322
+ parent: 1653
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 1.2129116,10.482447
+ parent: 1653
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 1.6972866,10.716822
+ parent: 1653
+ - uid: 1697
+ components:
+ - type: Transform
+ pos: 2.0410366,10.544947
+ parent: 1653
+ - uid: 1698
+ components:
+ - type: Transform
+ pos: 2.4160366,10.701197
+ parent: 1653
+- proto: SpawnDungeonLootClutterSalvage
+ entities:
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: 36.614346,40.60802
+ parent: 1653
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 0.4160366,9.513697
+ parent: 1653
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 0.5879116,9.919947
+ parent: 1653
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 1.3656492,25.793985
+ parent: 1653
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 1.6937742,25.52836
+ parent: 1653
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 12.461545,22.599348
+ parent: 1653
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 11.53257,30.694124
+ parent: 1653
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 16.47303,18.559921
+ parent: 1653
+- proto: SpawnDungeonLootKitchenTabletop
+ entities:
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+- proto: SpawnDungeonLootLathe
+ entities:
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 32.5,16.5
+ parent: 1653
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 33.5,16.5
+ parent: 1653
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 1653
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 1642
+ components:
+ - type: Transform
+ pos: 20.5,44.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersEngi
+ entities:
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 43.5,40.5
+ parent: 1653
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 14.5,42.5
+ parent: 1653
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 1653
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: 27.5,9.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersGeneral
+ entities:
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1653
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1653
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 44.5,4.5
+ parent: 1653
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1653
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersMed
+ entities:
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 30.5,16.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersProtectiveGear
+ entities:
+ - uid: 468
+ components:
+ - type: Transform
+ pos: 20.5,28.5
+ parent: 1653
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 0.5,48.5
+ parent: 1653
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 1653
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 2.5,48.5
+ parent: 1653
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 1.5,40.5
+ parent: 1653
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1653
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 1.5,48.5
+ parent: 1653
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 54.5,0.5
+ parent: 1653
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 53.5,0.5
+ parent: 1653
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 1653
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 4.631857,35.58555
+ parent: 1653
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 4.603287,16.547016
+ parent: 1653
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 27.427818,8.406059
+ parent: 1653
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 27.802818,8.281059
+ parent: 1653
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 12.357041,39.463593
+ parent: 1653
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 27.521568,8.671684
+ parent: 1653
+ - uid: 1556
+ components:
+ - type: Transform
+ pos: 0.52582324,16.047016
+ parent: 1653
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 27.802818,8.515434
+ parent: 1653
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 32.50711,4.582082
+ parent: 1653
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 0.55707324,16.547016
parent: 1653
-- proto: ShardGlass
- entities:
- - uid: 474
+ - uid: 1600
components:
- type: Transform
- pos: 2.445806,46.508026
+ pos: 7.4517813,6.5602627
parent: 1653
- - uid: 535
+ - uid: 1637
components:
- type: Transform
- pos: 37.501663,39.608997
+ pos: 6.428732,35.538673
parent: 1653
-- proto: ShardGlassReinforced
+ - uid: 1643
+ components:
+ - type: Transform
+ pos: 8.631171,28.549417
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableFull
entities:
- - uid: 1057
+ - uid: 746
components:
- type: Transform
- pos: 34.381138,20.460537
+ pos: 0.54144824,15.625142
parent: 1653
- - uid: 1561
+ - uid: 968
components:
- type: Transform
- pos: 25.506968,14.578961
+ pos: 1.496994,27.709425
parent: 1653
-- proto: SheetGlass
- entities:
- - uid: 1112
+ - uid: 1114
components:
- type: Transform
- pos: 0.5572295,16.464039
+ pos: 20.545664,34.64003
parent: 1653
- - uid: 1535
+ - uid: 1568
components:
- type: Transform
- pos: 27.48748,8.492639
+ pos: 14.497689,24.666225
parent: 1653
-- proto: SheetPGlass
- entities:
- - uid: 820
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: 15.420664,34.54628
+ parent: 1653
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: 31.551804,8.577934
+ parent: 1653
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: 6.4992156,22.555288
+ parent: 1653
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: 16.536243,24.58135
+ parent: 1653
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 20.468935,4.597707
+ parent: 1653
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 21.514414,34.67128
+ parent: 1653
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 1.496994,27.16255
+ parent: 1653
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 1.434494,26.740675
+ parent: 1653
+ - uid: 1687
components:
- type: Transform
- pos: 14.534195,24.571789
+ pos: 1.471144,31.615616
parent: 1653
-- proto: SheetPlasma
+- proto: SpawnDungeonLootMugs
entities:
- - uid: 1472
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 20.527668,40.46952
+ parent: 1653
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 20.340168,40.71952
+ parent: 1653
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 20.715168,40.71952
+ parent: 1653
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 0.7518523,3.5126042
+ parent: 1653
+ - uid: 963
components:
- type: Transform
- pos: 32.4712,4.556815
+ pos: 0.29872727,3.6376042
parent: 1653
-- proto: SheetPlasteel
+- proto: SpawnDungeonLootOresFull
entities:
- - uid: 658
+ - uid: 1111
components:
- type: Transform
- pos: 15.499195,34.56076
+ pos: 10.521796,25.471292
parent: 1653
- - uid: 1536
+ - uid: 1112
components:
- type: Transform
- pos: 31.534355,8.523889
+ pos: 1.481369,26.365675
parent: 1653
-- proto: SheetPlastic
+- proto: SpawnDungeonLootPartsEngi
entities:
- - uid: 1114
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: 1.533644,31.990616
+ parent: 1653
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 1.4959452,46.502045
+ parent: 1653
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 2.705519,31.59999
+ parent: 1653
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 27.493414,2.519582
+ parent: 1653
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 46.40493,1.503957
+ parent: 1653
+ - uid: 1536
components:
- type: Transform
- pos: 0.5416045,16.026539
+ pos: 31.462164,2.613332
parent: 1653
- uid: 1537
components:
- type: Transform
- pos: 7.5163627,6.5836935
+ pos: 37.55002,0.50395703
parent: 1653
-- proto: SheetRGlass
- entities:
- uid: 1538
components:
- type: Transform
- pos: 6.5744953,22.554136
+ pos: 2.127394,31.50624
parent: 1653
-- proto: SheetRPGlass
- entities:
- - uid: 841
+ - uid: 1542
components:
- type: Transform
- pos: 16.508902,24.578423
+ pos: 23.399664,2.644582
parent: 1653
- - uid: 1474
+ - uid: 1692
components:
- type: Transform
- pos: 20.5658,4.54119
+ pos: 19.55425,2.457082
parent: 1653
-- proto: SheetSteel
- entities:
- - uid: 670
+ - uid: 1693
components:
- type: Transform
- pos: 21.511246,34.536728
+ pos: 30.66336,4.535207
parent: 1653
- - uid: 1113
+ - uid: 1694
components:
- type: Transform
- pos: 0.5103545,15.635914
+ pos: 31.50711,4.550832
parent: 1653
- - uid: 1539
+- proto: SpawnDungeonLootPowerCell
+ entities:
+ - uid: 905
components:
- type: Transform
- pos: 4.6210227,35.514687
+ pos: 12.660753,45.699017
parent: 1653
-- proto: SheetSteel1
- entities:
- - uid: 536
+ - uid: 1690
components:
- type: Transform
- pos: 32.52815,38.437122
+ pos: 36.23867,15.001832
parent: 1653
-- proto: ShuttersWindow
+- proto: SpawnDungeonLootRnDDisk
entities:
- - uid: 580
+ - uid: 1284
components:
- type: Transform
- pos: 10.5,43.5
+ pos: 8.5620365,1.5680878
parent: 1653
- - type: DeviceLinkSink
- links:
- - 583
- - uid: 581
+ - uid: 1285
components:
- type: Transform
- pos: 11.5,43.5
+ pos: 32.50315,0.5243919
parent: 1653
- - type: DeviceLinkSink
- links:
- - 583
- - uid: 582
+ - uid: 1286
components:
- type: Transform
- pos: 12.5,43.5
+ pos: 24.390997,16.62883
parent: 1653
- - type: DeviceLinkSink
- links:
- - 583
-- proto: SignalButton
- entities:
- - uid: 583
+ - uid: 1346
components:
- type: Transform
- pos: 9.5,43.5
+ pos: 18.496307,44.463806
parent: 1653
- - type: DeviceLinkSource
- linkedPorts:
- 580:
- - Pressed: Toggle
- 581:
- - Pressed: Toggle
- 582:
- - Pressed: Toggle
-- proto: SignalTrigger
- entities:
- - uid: 1597
+ - uid: 1351
components:
- type: Transform
- pos: 32.571358,13.5151415
+ pos: 36.562843,15.472088
parent: 1653
-- proto: SignElectricalMed
+- proto: SpawnDungeonLootSeed
entities:
- - uid: 585
+ - uid: 494
components:
- type: Transform
- pos: 8.5,43.5
+ pos: 16.4067,7.8727627
parent: 1653
- - uid: 626
+ - uid: 522
components:
- type: Transform
- pos: 21.5,47.5
+ pos: 16.609825,7.6071377
parent: 1653
- - uid: 1540
+ - uid: 643
components:
- type: Transform
- pos: 28.5,9.5
+ pos: 16.4067,8.747763
parent: 1653
-- proto: SignRedFour
- entities:
- - uid: 1252
+ - uid: 686
components:
- type: Transform
- pos: 48.5,1.5
+ pos: 4.5460906,18.508413
parent: 1653
-- proto: SignRedOne
- entities:
- - uid: 1249
+ - uid: 712
components:
- type: Transform
- pos: 40.5,3.5
+ pos: 16.62545,8.450888
parent: 1653
-- proto: SignRedThree
- entities:
- - uid: 1251
+ - uid: 841
components:
- type: Transform
- pos: 48.5,3.5
+ pos: 16.391075,9.497763
parent: 1653
-- proto: SignRedTwo
- entities:
- - uid: 1250
+ - uid: 879
components:
- type: Transform
- pos: 40.5,1.5
+ pos: 16.62545,9.310263
parent: 1653
-- proto: SignScience
+- proto: SpawnDungeonLootToolbox
entities:
- - uid: 1596
+ - uid: 1050
components:
- type: Transform
- pos: 34.5,16.5
+ pos: 36.497677,16.296684
parent: 1653
-- proto: SignSecureMed
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: 4.4930425,12.593797
+ parent: 1653
+- proto: SpawnDungeonLootToolsAdvancedEngineering
entities:
- - uid: 698
+ - uid: 1380
components:
- type: Transform
- pos: 3.5,32.5
+ pos: 28.450766,21.574556
parent: 1653
- - uid: 1154
+ - uid: 1476
components:
- type: Transform
- pos: 10.5,13.5
+ pos: 32.564045,15.580274
parent: 1653
-- proto: SignShock
+- proto: SpawnDungeonLootToolsBasicEngineering
entities:
- - uid: 625
+ - uid: 820
components:
- type: Transform
- pos: 17.5,43.5
+ pos: 10.514916,45.573624
parent: 1653
- - uid: 1155
+ - uid: 821
components:
- type: Transform
- pos: 12.5,13.5
+ pos: 20.369005,36.60878
parent: 1653
-- proto: SignXenolab
- entities:
- - uid: 1461
+ - uid: 822
components:
- type: Transform
- pos: 19.5,4.5
+ pos: 20.650255,36.499405
parent: 1653
- - uid: 1462
+ - uid: 824
components:
- type: Transform
- pos: 33.5,4.5
+ pos: 2.6024175,12.562547
+ parent: 1653
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 27.580544,22.502699
+ parent: 1653
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: 0.5271952,46.502045
+ parent: 1653
+ - uid: 1543
+ components:
+ - type: Transform
+ pos: 2.3992925,12.703172
parent: 1653
-- proto: SilverOre
+- proto: SpawnDungeonLootToolsHydroponics
entities:
- - uid: 822
+ - uid: 744
components:
- type: Transform
- pos: 1.5210686,26.30472
+ pos: 18.399406,9.695223
parent: 1653
-- proto: SinkWide
+ - uid: 1701
+ components:
+ - type: Transform
+ pos: 18.586906,9.507723
+ parent: 1653
+- proto: SpawnDungeonLootVaultGuns
entities:
- - uid: 471
+ - uid: 1378
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,47.5
+ pos: 12.530378,14.475547
parent: 1653
- - uid: 717
+ - uid: 1484
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,25.5
+ pos: 10.452253,14.584922
parent: 1653
- - uid: 803
+ - uid: 1647
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,24.5
+ pos: 12.436628,14.694297
parent: 1653
- - uid: 804
+- proto: SpawnDungeonVendomatsClothes
+ entities:
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: 46.5,4.5
+ parent: 1653
+- proto: SpawnDungeonVendomatsMed
+ entities:
+ - uid: 1675
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 1653
+- proto: SpawnDungeonVendomatsRecreational
+ entities:
+ - uid: 927
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,28.5
+ pos: 16.5,22.5
parent: 1653
- - uid: 805
+ - uid: 1352
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,28.5
+ pos: 10.5,18.5
parent: 1653
- - uid: 890
+ - uid: 1625
components:
- type: Transform
- pos: 1.5,20.5
+ pos: 21.5,40.5
parent: 1653
- - uid: 891
+ - uid: 1626
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,19.5
+ pos: 7.5,10.5
parent: 1653
- - uid: 960
+ - uid: 1627
components:
- type: Transform
- pos: 3.5,10.5
+ pos: 0.5,4.5
parent: 1653
-- proto: SmartFridge
- entities:
- - uid: 1458
+ - uid: 1644
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 23.5,4.5
+ pos: 38.5,4.5
parent: 1653
-- proto: SMESBasic
- entities:
- - uid: 262
+ - uid: 1646
components:
- type: Transform
- pos: 26.5,20.5
+ pos: 29.5,38.5
parent: 1653
- - uid: 539
+ - uid: 1658
components:
- type: Transform
- pos: 11.5,45.5
+ pos: 7.5,35.5
parent: 1653
- - uid: 1485
+ - uid: 1660
components:
- type: Transform
- pos: 28.5,8.5
+ pos: 8.5,10.5
parent: 1653
- - uid: 1486
+ - uid: 1663
components:
- type: Transform
- pos: 29.5,8.5
+ pos: 37.5,4.5
parent: 1653
- - uid: 1487
+ - uid: 1676
components:
- type: Transform
- pos: 30.5,8.5
+ pos: 9.5,10.5
parent: 1653
- proto: SpawnVehicleATV
entities:
@@ -9616,13 +9551,6 @@ entities:
- type: Transform
pos: 28.5,13.5
parent: 1653
-- proto: StorageCanister
- entities:
- - uid: 1647
- components:
- - type: Transform
- pos: 40.5,16.5
- parent: 1653
- proto: SubstationBasic
entities:
- uid: 559
@@ -9674,11 +9602,6 @@ entities:
- type: Transform
pos: 37.5,40.5
parent: 1653
- - uid: 526
- components:
- - type: Transform
- pos: 35.5,38.5
- parent: 1653
- uid: 589
components:
- type: Transform
@@ -9943,6 +9866,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 42.5,13.5
parent: 1653
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 1653
- proto: TableCarpet
entities:
- uid: 859
@@ -10251,18 +10179,6 @@ entities:
- type: Transform
pos: 1.492549,27.312542
parent: 1653
-- proto: ToolboxMechanicalFilled
- entities:
- - uid: 1108
- components:
- - type: Transform
- pos: 4.523156,12.6515875
- parent: 1653
- - uid: 1586
- components:
- - type: Transform
- pos: 36.51179,16.622833
- parent: 1653
- proto: ToyRubberDuck
entities:
- uid: 875
@@ -10291,11 +10207,6 @@ entities:
parent: 1653
- proto: UnfinishedMachineFrame
entities:
- - uid: 619
- components:
- - type: Transform
- pos: 20.5,44.5
- parent: 1653
- uid: 1341
components:
- type: Transform
@@ -10306,13 +10217,6 @@ entities:
- type: Transform
pos: 33.5,14.5
parent: 1653
-- proto: UraniumOre
- entities:
- - uid: 823
- components:
- - type: Transform
- pos: 10.548276,25.257845
- parent: 1653
- proto: VariantCubeBox
entities:
- uid: 1168
@@ -10339,81 +10243,6 @@ entities:
- type: Transform
pos: 20.483374,24.635374
parent: 1653
-- proto: VendingMachineCigs
- entities:
- - uid: 928
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 10.5,18.5
- parent: 1653
- - uid: 1278
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 37.5,4.5
- parent: 1653
-- proto: VendingMachineClothing
- entities:
- - uid: 1255
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 46.5,4.5
- parent: 1653
-- proto: VendingMachineCoffee
- entities:
- - uid: 522
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 29.5,38.5
- parent: 1653
- - uid: 642
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 7.5,35.5
- parent: 1653
- - uid: 968
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 8.5,10.5
- parent: 1653
-- proto: VendingMachineCola
- entities:
- - uid: 1277
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 38.5,4.5
- parent: 1653
-- proto: VendingMachineGeneDrobe
- entities:
- - uid: 1554
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 29.5,16.5
- parent: 1653
-- proto: VendingMachineSciDrobe
- entities:
- - uid: 969
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 9.5,10.5
- parent: 1653
- proto: VoiceTrigger
entities:
- uid: 1103
@@ -10432,78 +10261,56 @@ entities:
entities:
- uid: 301
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,14.5
parent: 1653
- uid: 303
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,15.5
parent: 1653
- uid: 1124
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,13.5
parent: 1653
- uid: 1125
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,13.5
parent: 1653
- uid: 1127
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,15.5
parent: 1653
- uid: 1128
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,15.5
parent: 1653
- uid: 1129
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,15.5
parent: 1653
- uid: 1131
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,15.5
parent: 1653
- uid: 1132
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,14.5
parent: 1653
- uid: 1133
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,13.5
parent: 1653
- uid: 1134
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,13.5
parent: 1653
@@ -10511,420 +10318,284 @@ entities:
entities:
- uid: 514
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,38.5
parent: 1653
- uid: 515
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,40.5
parent: 1653
- uid: 516
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,40.5
parent: 1653
- uid: 517
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,38.5
parent: 1653
- uid: 566
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,43.5
parent: 1653
- uid: 567
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,43.5
parent: 1653
- uid: 570
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,43.5
parent: 1653
- uid: 571
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,43.5
parent: 1653
- uid: 592
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,43.5
parent: 1653
- uid: 593
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,47.5
parent: 1653
- uid: 594
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,47.5
parent: 1653
- uid: 595
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,43.5
parent: 1653
- uid: 685
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,32.5
parent: 1653
- uid: 687
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,30.5
parent: 1653
- uid: 884
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,21.5
parent: 1653
- uid: 885
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,22.5
parent: 1653
- uid: 886
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,19.5
parent: 1653
- uid: 887
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,19.5
parent: 1653
- uid: 1022
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,22.5
parent: 1653
- uid: 1081
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,14.5
parent: 1653
- uid: 1082
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,12.5
parent: 1653
- uid: 1083
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,13.5
parent: 1653
- uid: 1084
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,12.5
parent: 1653
- uid: 1085
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,13.5
parent: 1653
- uid: 1197
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 40.5,3.5
parent: 1653
- uid: 1198
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 39.5,3.5
parent: 1653
- uid: 1199
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 39.5,4.5
parent: 1653
- uid: 1200
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 42.5,3.5
parent: 1653
- uid: 1201
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 43.5,3.5
parent: 1653
- uid: 1202
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 43.5,4.5
parent: 1653
- uid: 1203
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 39.5,0.5
parent: 1653
- uid: 1204
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 39.5,1.5
parent: 1653
- uid: 1205
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 40.5,1.5
parent: 1653
- uid: 1206
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 42.5,1.5
parent: 1653
- uid: 1207
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 43.5,1.5
parent: 1653
- uid: 1208
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 43.5,0.5
parent: 1653
- uid: 1209
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 47.5,0.5
parent: 1653
- uid: 1210
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 47.5,1.5
parent: 1653
- uid: 1211
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 48.5,1.5
parent: 1653
- uid: 1212
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 50.5,1.5
parent: 1653
- uid: 1213
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 51.5,1.5
parent: 1653
- uid: 1214
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 51.5,0.5
parent: 1653
- uid: 1215
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 50.5,3.5
parent: 1653
- uid: 1216
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 51.5,3.5
parent: 1653
- uid: 1217
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 51.5,4.5
parent: 1653
- uid: 1218
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 48.5,3.5
parent: 1653
- uid: 1219
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 47.5,3.5
parent: 1653
- uid: 1220
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 47.5,4.5
parent: 1653
- uid: 1322
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,2.5
parent: 1653
- uid: 1323
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,2.5
parent: 1653
- uid: 1459
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,4.5
parent: 1653
- uid: 1460
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,4.5
parent: 1653
- uid: 1501
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,9.5
parent: 1653
- uid: 1506
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,9.5
parent: 1653
- uid: 1507
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,9.5
parent: 1653
- uid: 1575
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 34.5,16.5
parent: 1653
-- proto: WardrobeMixedFilled
- entities:
- - uid: 1257
- components:
- - type: Transform
- pos: 44.5,4.5
- parent: 1653
-- proto: WaterCooler
- entities:
- - uid: 512
- components:
- - type: Transform
- pos: 21.5,40.5
- parent: 1653
- - uid: 967
- components:
- - type: Transform
- pos: 7.5,10.5
- parent: 1653
- - uid: 1346
- components:
- - type: Transform
- pos: 0.5,4.5
- parent: 1653
- proto: WaterTankFull
entities:
- uid: 1372
@@ -10944,39 +10615,6 @@ entities:
- type: Transform
pos: 7.5,3.5
parent: 1653
-- proto: WeaponEnergyGun
- entities:
- - uid: 1152
- components:
- - type: Transform
- pos: 10.540278,14.546922
- parent: 1653
-- proto: WeaponLaserGun
- entities:
- - uid: 1150
- components:
- - type: Transform
- pos: 12.468685,14.590134
- parent: 1653
- - uid: 1151
- components:
- - type: Transform
- pos: 12.593685,14.371384
- parent: 1653
-- proto: Welder
- entities:
- - uid: 663
- components:
- - type: Transform
- pos: 20.605528,36.564884
- parent: 1653
-- proto: WelderMini
- entities:
- - uid: 643
- components:
- - type: Transform
- pos: 8.596551,35.528828
- parent: 1653
- proto: WeldingFuelTankFull
entities:
- uid: 881
diff --git a/Resources/Maps/Dungeon/lava_brig.yml b/Resources/Maps/Dungeon/lava_brig.yml
index 4f09149ceff..165d80824dd 100644
--- a/Resources/Maps/Dungeon/lava_brig.yml
+++ b/Resources/Maps/Dungeon/lava_brig.yml
@@ -11,15 +11,15 @@ tilemap:
55: FloorGreenCircuit
63: FloorLino
78: FloorReinforced
- 83: FloorShuttleOrange
- 90: FloorSteel
- 100: FloorSteelMini
- 101: FloorSteelMono
- 105: FloorTechMaint
- 109: FloorWhite
- 113: FloorWhiteMini
- 119: FloorWood
- 122: Plating
+ 85: FloorShuttleOrange
+ 92: FloorSteel
+ 102: FloorSteelMini
+ 103: FloorSteelMono
+ 107: FloorTechMaint
+ 111: FloorWhite
+ 115: FloorWhiteMini
+ 121: FloorWood
+ 125: Plating
entities:
- proto: ""
entities:
@@ -35,83 +35,83 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: WgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAABegAAAAAADwAAAAAAHgAAAAABDwAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAADwAAAAAAHgAAAAACDwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABUwAAAAAAZQAAAAACWgAAAAAAZQAAAAACegAAAAAAHgAAAAAAIwAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAACHgAAAAACUwAAAAAAZAAAAAACZAAAAAAAZAAAAAAAegAAAAAAHgAAAAABIwAAAAACegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAABHgAAAAADUwAAAAAAZAAAAAACZAAAAAAAZAAAAAAAWgAAAAACHgAAAAAAIwAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAAAHgAAAAABUwAAAAAAZAAAAAADZAAAAAABZAAAAAABegAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAUwAAAAAAZQAAAAABWgAAAAABZQAAAAACegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAABegAAAAAAHgAAAAADegAAAAAAHgAAAAADHgAAAAADUwAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAAAdwAAAAADUwAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAACdwAAAAACUwAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAACdwAAAAADUwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAABUwAAAAAA
+ tiles: XAAAAAADXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABfQAAAAAADwAAAAAAHgAAAAABDwAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAADawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAAHgAAAAACDwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABVQAAAAAAZwAAAAACXAAAAAAAZwAAAAACfQAAAAAAHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAACHgAAAAACVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAfQAAAAAAHgAAAAABIwAAAAACfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABHgAAAAADVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAXAAAAAACHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAHgAAAAABVQAAAAAAZgAAAAADZgAAAAABZgAAAAABfQAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAZwAAAAABXAAAAAABZwAAAAACfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABfQAAAAAAHgAAAAADfQAAAAAAHgAAAAADHgAAAAADVQAAAAAAawAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAADeQAAAAAAeQAAAAADVQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAACeQAAAAACVQAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAADeQAAAAADeQAAAAACeQAAAAADVQAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAeQAAAAABVQAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: HgAAAAAAHgAAAAADegAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABUwAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAWgAAAAABaQAAAAAAHgAAAAACegAAAAAADwAAAAAAegAAAAAAHgAAAAACUwAAAAAAWgAAAAADZAAAAAAAZAAAAAABZAAAAAADWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAWgAAAAAAZAAAAAABZAAAAAACZAAAAAACWgAAAAADUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAHgAAAAAAegAAAAAADwAAAAAAegAAAAAAHgAAAAAAUwAAAAAAWgAAAAABZAAAAAABZAAAAAABZAAAAAABWgAAAAADUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABUwAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAACcQAAAAABUwAAAAAAWgAAAAADWgAAAAADZQAAAAAAUwAAAAAAHgAAAAAADwAAAAAAHgAAAAACUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAACcQAAAAADUwAAAAAAWgAAAAAAWgAAAAABZQAAAAABUwAAAAAAHgAAAAACDwAAAAAAHgAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAUwAAAAAAWgAAAAABWgAAAAABWgAAAAABUwAAAAAAHgAAAAACDwAAAAAAHgAAAAABUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAADcQAAAAABUwAAAAAAZQAAAAACWgAAAAABWgAAAAACUwAAAAAAHgAAAAADHgAAAAACHgAAAAADUwAAAAAAegAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAACcQAAAAADUwAAAAAAZQAAAAACWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACUwAAAAAAWgAAAAABWgAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAA
+ tiles: HgAAAAAAHgAAAAADfQAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAeQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAXAAAAAABawAAAAAAHgAAAAACfQAAAAAADwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAXAAAAAADZgAAAAAAZgAAAAABZgAAAAADXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAACZgAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAHgAAAAAAfQAAAAAADwAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAABZgAAAAABZgAAAAABZgAAAAABXAAAAAADVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAABVQAAAAAAXAAAAAADXAAAAAADZwAAAAAAVQAAAAAAHgAAAAAADwAAAAAAHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAACcwAAAAADVQAAAAAAXAAAAAAAXAAAAAABZwAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAADcwAAAAABVQAAAAAAZwAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAADHgAAAAACHgAAAAADVQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAADVQAAAAAAZwAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACVQAAAAAAXAAAAAABXAAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: WgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADWgAAAAADUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABWgAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAZQAAAAAAWgAAAAABZQAAAAAAUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAABUwAAAAAATgAAAAAAegAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADZAAAAAADZAAAAAAAZAAAAAADUwAAAAAATgAAAAAAegAAAAAAKwAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAZAAAAAACZAAAAAABZAAAAAADUwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAABegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAZQAAAAADWgAAAAABZQAAAAACUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAACWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAUwAAAAAAWgAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADaQAAAAAAUwAAAAAAWgAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAAAZAAAAAABWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAUwAAAAAA
+ tiles: XAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADXAAAAAADVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABXAAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAZwAAAAAAXAAAAAABZwAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAABVQAAAAAATgAAAAAAfQAAAAAAIwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADZgAAAAADZgAAAAAAZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAKwAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAZgAAAAACZgAAAAABZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfQAAAAAAZwAAAAADXAAAAAABZwAAAAACVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAABZgAAAAACZgAAAAACZgAAAAAAZgAAAAADZgAAAAACXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAADZgAAAAABZgAAAAACZgAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAABZgAAAAADZgAAAAAAZgAAAAABXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: WgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAACaQAAAAAAUwAAAAAAWgAAAAADZAAAAAACZAAAAAABZAAAAAAAWgAAAAABUwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAWgAAAAADZAAAAAADWgAAAAACUwAAAAAAWgAAAAADZAAAAAADZAAAAAADZAAAAAADWgAAAAABUwAAAAAAegAAAAAAWgAAAAABegAAAAAAWgAAAAABegAAAAAAUwAAAAAAWgAAAAAAZAAAAAABWgAAAAADUwAAAAAAWgAAAAAAZAAAAAAAZAAAAAACZAAAAAACWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAADZAAAAAADWgAAAAACUwAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAACUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAABWgAAAAACZQAAAAACUwAAAAAAWgAAAAABWgAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAADZQAAAAABUwAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAADWgAAAAAAWgAAAAADUwAAAAAAWgAAAAADWgAAAAACWgAAAAADUwAAAAAAZQAAAAADWgAAAAACZQAAAAADUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAZQAAAAAAWgAAAAADWgAAAAACUwAAAAAAZQAAAAABWgAAAAABZQAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAZQAAAAADWgAAAAADWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: XAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACawAAAAAAVQAAAAAAXAAAAAADZgAAAAACZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAADZgAAAAADZgAAAAADZgAAAAADXAAAAAABVQAAAAAAfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABXAAAAAADVQAAAAAAXAAAAAAAZgAAAAAAZgAAAAACZgAAAAACXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAACVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACZwAAAAACVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADZwAAAAABVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAZwAAAAADXAAAAAACZwAAAAADVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAZwAAAAAAXAAAAAADXAAAAAACVQAAAAAAZwAAAAABXAAAAAABZwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAZwAAAAADXAAAAAADXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABUwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAUwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACUwAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAABegAAAAAADwAAAAAADwAAAAAAUwAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAABUwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAUwAAAAAAbQAAAAABbQAAAAABegAAAAAAbQAAAAAAegAAAAAAbQAAAAABbQAAAAADUwAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAUwAAAAAAIwAAAAABIwAAAAABIwAAAAACaQAAAAAAIwAAAAADIwAAAAACIwAAAAABUwAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAUwAAAAAAIwAAAAACIwAAAAAAIwAAAAABaQAAAAAAIwAAAAABIwAAAAACIwAAAAAAUwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAUwAAAAAAIwAAAAAAIwAAAAAAIwAAAAACaQAAAAAAIwAAAAAAIwAAAAACIwAAAAADUwAAAAAA
+ tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAVQAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACVQAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAABVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAABbwAAAAABfQAAAAAAbwAAAAAAfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAABIwAAAAABIwAAAAACawAAAAAAIwAAAAADIwAAAAACIwAAAAABVQAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAABawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAACawAAAAAAIwAAAAAAIwAAAAACIwAAAAADVQAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: DwAAAAAADwAAAAAAegAAAAAAIwAAAAAAegAAAAAADwAAAAAADwAAAAAAUwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAaQAAAAAAIwAAAAABIwAAAAACIwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: DwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAAAawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: aQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAACZAAAAAADZAAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZAAAAAACZAAAAAAAZAAAAAABWgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZAAAAAADZAAAAAADZAAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAADZAAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACZAAAAAAAZAAAAAADZAAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADZAAAAAABZAAAAAABZAAAAAACUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACZAAAAAADZAAAAAABZAAAAAACUwAAAAAAaQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAACaQAAAAAAUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAADUwAAAAAAaQAAAAAAWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACIgAAAAABIgAAAAADWgAAAAACUwAAAAAAaQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABIgAAAAAAIgAAAAABWgAAAAABUwAAAAAA
+ tiles: awAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZgAAAAABfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAACZgAAAAAAZgAAAAABXAAAAAACawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAADZgAAAAADZgAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAACZgAAAAABZgAAAAADZgAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACZgAAAAAAZgAAAAADZgAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADZgAAAAABZgAAAAABZgAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACZgAAAAADZgAAAAABZgAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACawAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADVQAAAAAAawAAAAAAXAAAAAABawAAAAAAawAAAAAAawAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACIgAAAAABIgAAAAADXAAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABIgAAAAAAIgAAAAABXAAAAAABVQAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: aQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: awAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: HgAAAAAAHgAAAAABWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HgAAAAAAHgAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAACWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAABWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAAAWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAACXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAADZgAAAAABXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Gravity
gravityShakeSound: !type:SoundPathSpecifier
@@ -2708,8 +2708,6 @@ entities:
entities:
- uid: 1515
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,43.5
parent: 588
@@ -3141,39 +3139,19 @@ entities:
entities:
- uid: 1600
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,7.5
parent: 588
- uid: 1601
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,9.5
parent: 588
- uid: 1602
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,7.5
parent: 588
-- proto: Bola
- entities:
- - uid: 1157
- components:
- - type: Transform
- pos: 15.616387,0.61007345
- parent: 588
-- proto: BookEscalationSecurity
- entities:
- - uid: 373
- components:
- - type: Transform
- pos: 19.42657,0.6288943
- parent: 588
- proto: BookRandom
entities:
- uid: 1835
@@ -3181,66 +3159,6 @@ entities:
- type: Transform
pos: 24.420084,44.539436
parent: 588
-- proto: BoxFolderBlack
- entities:
- - uid: 365
- components:
- - type: Transform
- pos: 27.841173,1.5632035
- parent: 588
- - uid: 728
- components:
- - type: Transform
- pos: 10.690479,19.262342
- parent: 588
-- proto: BoxFolderGrey
- entities:
- - uid: 364
- components:
- - type: Transform
- pos: 25.072409,1.4780562
- parent: 588
- - uid: 727
- components:
- - type: Transform
- pos: 7.2148314,22.575037
- parent: 588
-- proto: BoxFolderRed
- entities:
- - uid: 329
- components:
- - type: Transform
- pos: 21.42984,3.6329575
- parent: 588
- - uid: 362
- components:
- - type: Transform
- pos: 24.788435,1.6057768
- parent: 588
- - uid: 363
- components:
- - type: Transform
- pos: 28.196142,1.5773941
- parent: 588
- - uid: 726
- components:
- - type: Transform
- pos: 10.428753,19.429379
- parent: 588
-- proto: BoxMouthSwab
- entities:
- - uid: 1476
- components:
- - type: Transform
- pos: 12.356534,44.605965
- parent: 588
-- proto: BoxSterileMask
- entities:
- - uid: 1477
- components:
- - type: Transform
- pos: 12.683106,44.705303
- parent: 588
- proto: BriefcaseBrownFilled
entities:
- uid: 325
@@ -3256,18 +3174,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 25.063513,27.520548
parent: 588
-- proto: Bucket
- entities:
- - uid: 1839
- components:
- - type: Transform
- pos: 29.616838,43.531868
- parent: 588
- - uid: 1857
- components:
- - type: Transform
- pos: 30.264944,21.705044
- parent: 588
- proto: CableApcExtension
entities:
- uid: 1
@@ -6853,13 +6759,6 @@ entities:
- type: Transform
pos: 24.5,18.5
parent: 588
-- proto: Cautery
- entities:
- - uid: 1474
- components:
- - type: Transform
- pos: 8.533231,42.775993
- parent: 588
- proto: Chair
entities:
- uid: 357
@@ -7155,11 +7054,6 @@ entities:
parent: 588
- proto: ClosetBombFilled
entities:
- - uid: 413
- components:
- - type: Transform
- pos: 14.5,6.5
- parent: 588
- uid: 1014
components:
- type: Transform
@@ -7170,64 +7064,6 @@ entities:
- type: Transform
pos: 16.5,27.5
parent: 588
-- proto: ClosetEmergencyFilledRandom
- entities:
- - uid: 1203
- components:
- - type: Transform
- pos: 12.5,30.5
- parent: 588
- - uid: 1204
- components:
- - type: Transform
- pos: 0.5,32.5
- parent: 588
- - uid: 1205
- components:
- - type: Transform
- pos: 9.5,9.5
- parent: 588
- - uid: 1207
- components:
- - type: Transform
- pos: 1.5,7.5
- parent: 588
-- proto: ClosetFireFilled
- entities:
- - uid: 1194
- components:
- - type: Transform
- pos: 1.5,9.5
- parent: 588
- - uid: 1195
- components:
- - type: Transform
- pos: 9.5,7.5
- parent: 588
- - uid: 1196
- components:
- - type: Transform
- pos: 6.5,40.5
- parent: 588
- - uid: 1197
- components:
- - type: Transform
- pos: 0.5,38.5
- parent: 588
-- proto: ClosetL3SecurityFilled
- entities:
- - uid: 415
- components:
- - type: Transform
- pos: 20.5,10.5
- parent: 588
-- proto: ClosetToolFilled
- entities:
- - uid: 1007
- components:
- - type: Transform
- pos: 14.5,30.5
- parent: 588
- proto: ClosetWallMaintenanceFilledRandom
entities:
- uid: 499
@@ -7252,41 +7088,6 @@ entities:
- type: Transform
pos: 21.5,43.5
parent: 588
-- proto: ClothingBeltChampion
- entities:
- - uid: 1236
- components:
- - type: Transform
- pos: 10.581136,39.53631
- parent: 588
-- proto: ClothingBeltSecurity
- entities:
- - uid: 511
- components:
- - type: Transform
- pos: 1.537538,12.488802
- parent: 588
-- proto: ClothingBeltSecurityWebbing
- entities:
- - uid: 1030
- components:
- - type: Transform
- pos: 12.624772,24.657341
- parent: 588
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 1108
- components:
- - type: Transform
- pos: 25.666832,30.643515
- parent: 588
-- proto: ClothingEyesGlassesSecurity
- entities:
- - uid: 1029
- components:
- - type: Transform
- pos: 18.630856,25.622337
- parent: 588
- proto: ClothingHandsGlovesNitrile
entities:
- uid: 1715
@@ -7294,20 +7095,6 @@ entities:
- type: Transform
pos: 10.432637,44.476112
parent: 588
-- proto: ClothingHeadBandRed
- entities:
- - uid: 1295
- components:
- - type: Transform
- pos: 12.571781,39.694115
- parent: 588
-- proto: ClothingHeadHatFedoraBrown
- entities:
- - uid: 577
- components:
- - type: Transform
- pos: 12.686508,13.58602
- parent: 588
- proto: ClothingHeadHatPwig
entities:
- uid: 369
@@ -7315,18 +7102,6 @@ entities:
- type: Transform
pos: 25.824945,3.5783403
parent: 588
-- proto: ClothingHeadHatSecsoftFlipped
- entities:
- - uid: 606
- components:
- - type: Transform
- pos: 12.705482,6.671774
- parent: 588
- - uid: 1027
- components:
- - type: Transform
- pos: 18.403675,25.53719
- parent: 588
- proto: ClothingHeadHatSurgcapPurple
entities:
- uid: 1711
@@ -7334,18 +7109,6 @@ entities:
- type: Transform
pos: 10.304593,44.632217
parent: 588
-- proto: ClothingHeadHelmetRiot
- entities:
- - uid: 603
- components:
- - type: Transform
- pos: 5.6515694,12.555424
- parent: 588
- - uid: 1617
- components:
- - type: Transform
- pos: 22.499683,6.7142525
- parent: 588
- proto: ClothingHeadHelmetThunderdome
entities:
- uid: 1240
@@ -7353,30 +7116,6 @@ entities:
- type: Transform
pos: 34.666565,24.66942
parent: 588
-- proto: ClothingMaskGasSecurity
- entities:
- - uid: 375
- components:
- - type: Transform
- pos: 3.346735,0.48929083
- parent: 588
- - uid: 1028
- components:
- - type: Transform
- pos: 12.383391,24.472857
- parent: 588
- - uid: 1613
- components:
- - type: Transform
- pos: 22.338257,10.489087
- parent: 588
-- proto: ClothingMaskGasSwat
- entities:
- - uid: 265
- components:
- - type: Transform
- pos: 5.3304586,0.49946034
- parent: 588
- proto: ClothingNeckLawyerbadge
entities:
- uid: 326
@@ -7384,20 +7123,6 @@ entities:
- type: Transform
pos: 21.586027,4.583762
parent: 588
-- proto: ClothingNeckTieDet
- entities:
- - uid: 573
- components:
- - type: Transform
- pos: 12.714905,13.486683
- parent: 588
-- proto: ClothingOuterArmorBasic
- entities:
- - uid: 1032
- components:
- - type: Transform
- pos: 18.616657,24.64315
- parent: 588
- proto: ClothingOuterArmorHeavy
entities:
- uid: 522
@@ -7405,6 +7130,35 @@ entities:
- type: Transform
pos: 30.47641,8.530076
parent: 588
+ - type: GroupExamine
+ group:
+ - hoverMessage: ""
+ contextText: verb-examine-group-other
+ icon: /Textures/Interface/examine-star.png
+ components:
+ - Armor
+ - ClothingSpeedModifier
+ entries:
+ - message: This decreases your speed by [color=yellow]10%[/color].
+ priority: 0
+ component: ClothingSpeedModifier
+ - message: >-
+ It provides the following protection:
+
+ - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color].
+
+ - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color].
+
+ - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]50%[/color].
+
+ - [color=yellow]Heat[/color] damage reduced by [color=lightblue]30%[/color].
+
+ - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]25%[/color].
+
+ - [color=orange]Explosion[/color] damage reduced by [color=lightblue]30%[/color].
+ priority: 0
+ component: Armor
+ title: null
- uid: 1069
components:
- type: Transform
@@ -7439,70 +7193,30 @@ entities:
priority: 0
component: Armor
title: null
-- proto: ClothingOuterArmorReflective
+- proto: ClothingOuterRobesJudge
entities:
- - uid: 1031
+ - uid: 370
components:
- type: Transform
- pos: 18.47467,24.458666
+ pos: 27.40101,3.677678
parent: 588
-- proto: ClothingOuterArmorRiot
+- proto: ClothingUniformJumpskirtColorMaroon
entities:
- - uid: 602
+ - uid: 1714
components:
- type: Transform
- pos: 5.3959923,12.612188
+ pos: 10.673761,44.53288
parent: 588
- - uid: 1616
+- proto: ClothingUniformJumpsuitColorMaroon
+ entities:
+ - uid: 1713
components:
- type: Transform
- pos: 12.576138,6.600724
+ pos: 10.645364,44.67479
parent: 588
-- proto: ClothingOuterCoatDetective
+- proto: ClusterBangFull
entities:
- - uid: 574
- components:
- - type: Transform
- pos: 13.396446,12.479115
- parent: 588
-- proto: ClothingOuterRobesJudge
- entities:
- - uid: 370
- components:
- - type: Transform
- pos: 27.40101,3.677678
- parent: 588
-- proto: ClothingShoesBootsCombatFilled
- entities:
- - uid: 1036
- components:
- - type: Transform
- pos: 12.582174,25.636528
- parent: 588
-- proto: ClothingShoesBootsLaceup
- entities:
- - uid: 372
- components:
- - type: Transform
- pos: 18.586912,0.70824456
- parent: 588
-- proto: ClothingUniformJumpskirtColorMaroon
- entities:
- - uid: 1714
- components:
- - type: Transform
- pos: 10.673761,44.53288
- parent: 588
-- proto: ClothingUniformJumpsuitColorMaroon
- entities:
- - uid: 1713
- components:
- - type: Transform
- pos: 10.645364,44.67479
- parent: 588
-- proto: ClusterBangFull
- entities:
- - uid: 599
+ - uid: 599
components:
- type: Transform
pos: 33.484257,28.42918
@@ -7616,13 +7330,6 @@ entities:
- type: Transform
pos: 25.5,43.5
parent: 588
-- proto: CrateHydroponicsSeedsExotic
- entities:
- - uid: 1660
- components:
- - type: Transform
- pos: 31.5,22.5
- parent: 588
- proto: CrayonBox
entities:
- uid: 1057
@@ -7630,11 +7337,6 @@ entities:
- type: Transform
pos: 20.47107,24.608877
parent: 588
- - uid: 1116
- components:
- - type: Transform
- pos: 20.607256,14.646415
- parent: 588
- proto: CryoPod
entities:
- uid: 1395
@@ -7666,13 +7368,6 @@ entities:
- type: Transform
pos: 32.5,24.5
parent: 588
-- proto: DiceBag
- entities:
- - uid: 552
- components:
- - type: Transform
- pos: 20.294882,15.426926
- parent: 588
- proto: DiseaseDiagnoser
entities:
- uid: 1424
@@ -7702,18 +7397,6 @@ entities:
- type: Transform
pos: 22.5,38.5
parent: 588
-- proto: DonkpocketBoxSpawner
- entities:
- - uid: 526
- components:
- - type: Transform
- pos: 16.5,13.5
- parent: 588
- - uid: 723
- components:
- - type: Transform
- pos: 18.5,21.5
- parent: 588
- proto: DoorElectronics
entities:
- uid: 659
@@ -7754,32 +7437,6 @@ entities:
- type: Transform
pos: 13.5,34.5
parent: 588
-- proto: DrinkDetFlask
- entities:
- - uid: 1577
- components:
- - type: Transform
- pos: 12.606661,13.037249
- parent: 588
-- proto: DrinkMugMetal
- entities:
- - uid: 1294
- components:
- - type: Transform
- pos: 22.442232,12.514399
- parent: 588
-- proto: DrinkMugRed
- entities:
- - uid: 721
- components:
- - type: Transform
- pos: 22.448559,18.561966
- parent: 588
- - uid: 1293
- components:
- - type: Transform
- pos: 22.328642,12.741456
- parent: 588
- proto: DrinkShinyFlask
entities:
- uid: 1874
@@ -7787,25 +7444,8 @@ entities:
- type: Transform
pos: 6.890398,22.663696
parent: 588
-- proto: DrinkShotGlass
- entities:
- - uid: 578
- components:
- - type: Transform
- pos: 12.412022,12.535878
- parent: 588
- - uid: 579
- components:
- - type: Transform
- pos: 12.539811,12.748745
- parent: 588
- proto: DrinkWaterCup
entities:
- - uid: 722
- components:
- - type: Transform
- pos: 18.373508,18.661304
- parent: 588
- uid: 762
components:
- type: Transform
@@ -8126,18 +7766,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
-- proto: EmergencyRollerBed
- entities:
- - uid: 1141
- components:
- - type: Transform
- pos: 30.5,25.5
- parent: 588
- - uid: 1142
- components:
- - type: Transform
- pos: 30.5,24.5
- parent: 588
- proto: ExtinguisherCabinetFilled
entities:
- uid: 867
@@ -8208,19 +7836,6 @@ entities:
- type: Transform
pos: 10.726851,19.047483
parent: 588
-- proto: FlashlightSeclite
- entities:
- - uid: 374
- components:
- - type: Transform
- pos: 13.377204,0.54605544
- parent: 588
- - uid: 604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.6941657,16.387024
- parent: 588
- proto: FloodlightBroken
entities:
- uid: 1193
@@ -8584,27 +8199,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,43.5
parent: 588
-- proto: FoodBowlBigTrash
- entities:
- - uid: 1840
- components:
- - type: Transform
- pos: 30.547388,48.16116
- parent: 588
-- proto: FoodBurgerMime
- entities:
- - uid: 399
- components:
- - type: Transform
- pos: 10.958169,39.64943
- parent: 588
-- proto: FoodPlateSmallPlastic
- entities:
- - uid: 529
- components:
- - type: Transform
- pos: 17.462528,12.615073
- parent: 588
- proto: FoodPlateTrash
entities:
- uid: 1692
@@ -8612,20 +8206,6 @@ entities:
- type: Transform
pos: 28.80027,47.44947
parent: 588
-- proto: ForensicPad
- entities:
- - uid: 761
- components:
- - type: Transform
- pos: 7.562898,22.48225
- parent: 588
-- proto: ForkPlastic
- entities:
- - uid: 531
- components:
- - type: Transform
- pos: 17.405733,12.600882
- parent: 588
- proto: GasFilter
entities:
- uid: 1415
@@ -8852,40 +8432,20 @@ entities:
- type: Transform
pos: 28.5,8.5
parent: 588
-- proto: Handcuffs
- entities:
- - uid: 1614
- components:
- - type: Transform
- pos: 22.608034,10.659381
- parent: 588
-- proto: Hemostat
- entities:
- - uid: 1471
- components:
- - type: Transform
- pos: 8.51377,43.004257
- parent: 588
- proto: HighSecArmoryLocked
entities:
- uid: 1597
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,7.5
parent: 588
- uid: 1598
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,7.5
parent: 588
- uid: 1599
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,9.5
parent: 588
@@ -8893,31 +8453,23 @@ entities:
entities:
- uid: 402
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,27.5
parent: 588
- uid: 949
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,24.5
parent: 588
- uid: 951
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 10.5,27.5
parent: 588
- uid: 1768
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 24.5,48.5
@@ -8982,44 +8534,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 24.5,42.5
parent: 588
-- proto: HydroponicsToolHatchet
- entities:
- - uid: 1844
- components:
- - type: Transform
- pos: 29.538284,44.04174
- parent: 588
- - uid: 1851
- components:
- - type: Transform
- pos: 30.630798,21.602604
- parent: 588
-- proto: HydroponicsToolMiniHoe
- entities:
- - uid: 1837
- components:
- - type: Transform
- pos: 30.099596,43.446724
- parent: 588
- - uid: 1841
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.38517,20.601
- parent: 588
-- proto: HydroponicsToolSpade
- entities:
- - uid: 1838
- components:
- - type: Transform
- pos: 29.95761,43.361576
- parent: 588
- - uid: 1842
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.42777,20.58681
- parent: 588
- proto: hydroponicsTray
entities:
- uid: 796
@@ -9059,49 +8573,6 @@ entities:
- type: Transform
pos: 30.5,42.5
parent: 588
-- proto: IngotGold
- entities:
- - uid: 952
- components:
- - type: Transform
- pos: 11.069347,39.504154
- parent: 588
-- proto: KitchenMicrowave
- entities:
- - uid: 524
- components:
- - type: Transform
- pos: 16.5,12.5
- parent: 588
- - uid: 709
- components:
- - type: Transform
- pos: 18.5,22.5
- parent: 588
- - uid: 1785
- components:
- - type: Transform
- pos: 29.5,48.5
- parent: 588
-- proto: KitchenReagentGrinder
- entities:
- - uid: 1786
- components:
- - type: Transform
- pos: 30.5,47.5
- parent: 588
-- proto: KnifePlastic
- entities:
- - uid: 530
- components:
- - type: Transform
- pos: 17.249546,12.643455
- parent: 588
- - uid: 1836
- components:
- - type: Transform
- pos: 30.241585,48.271698
- parent: 588
- proto: Lamp
entities:
- uid: 581
@@ -9183,13 +8654,6 @@ entities:
- type: Transform
pos: 16.5,22.5
parent: 588
-- proto: LockerMedicineFilled
- entities:
- - uid: 1152
- components:
- - type: Transform
- pos: 28.5,27.5
- parent: 588
- proto: LockerSecurityFilled
entities:
- uid: 416
@@ -9209,13 +8673,6 @@ entities:
- type: Transform
pos: 6.5,12.5
parent: 588
-- proto: MachineFrame
- entities:
- - uid: 400
- components:
- - type: Transform
- pos: 26.5,8.5
- parent: 588
- proto: MagazinePistolSubMachineGunPractice
entities:
- uid: 376
@@ -9320,20 +8777,6 @@ entities:
- type: Transform
pos: 28.5,25.5
parent: 588
-- proto: MedkitAdvancedFilled
- entities:
- - uid: 1153
- components:
- - type: Transform
- pos: 30.614443,28.392822
- parent: 588
-- proto: MedkitCombatFilled
- entities:
- - uid: 1154
- components:
- - type: Transform
- pos: 30.40146,28.066427
- parent: 588
- proto: OperatingTable
entities:
- uid: 1389
@@ -9353,111 +8796,36 @@ entities:
- type: Transform
pos: 20.669853,24.52373
parent: 588
-- proto: PaperOffice
+- proto: PartRodMetal1
entities:
- - uid: 327
+ - uid: 1071
components:
- type: Transform
- pos: 21.415642,4.0728827
+ rot: 1.5707963267948966 rad
+ pos: 25.341253,26.595633
parent: 588
- - uid: 328
+ - uid: 1072
components:
- type: Transform
- pos: 21.586027,4.0019264
+ pos: 25.36965,28.11408
parent: 588
- - uid: 1113
+- proto: PhoneInstrument
+ entities:
+ - uid: 371
components:
- type: Transform
- pos: 20.706646,15.341779
+ pos: 25.484175,4.4865713
parent: 588
- - uid: 1114
+- proto: PlushieNuke
+ entities:
+ - uid: 1850
components:
- type: Transform
- pos: 20.465267,15.185677
+ pos: 22.519993,28.594225
parent: 588
- - uid: 1115
- components:
- - type: Transform
- pos: 20.30908,14.603841
- parent: 588
-- proto: PartRodMetal1
- entities:
- - uid: 1071
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.341253,26.595633
- parent: 588
- - uid: 1072
- components:
- - type: Transform
- pos: 25.36965,28.11408
- parent: 588
-- proto: Pen
- entities:
- - uid: 366
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.352327,3.9473093
- parent: 588
- - uid: 367
- components:
- - type: Transform
- pos: 18.75395,1.1232786
- parent: 588
- - uid: 368
- components:
- - type: Transform
- pos: 24.788435,1.4496742
- parent: 588
- - uid: 731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.36841,19.019064
- parent: 588
- - uid: 732
- components:
- - type: Transform
- pos: 7.4631767,22.637186
- parent: 588
-- proto: PhoneInstrument
- entities:
- - uid: 371
- components:
- - type: Transform
- pos: 25.484175,4.4865713
- parent: 588
-- proto: PillCanister
- entities:
- - uid: 1481
- components:
- - type: Transform
- pos: 14.438607,42.637726
- parent: 588
-- proto: PillSpaceDrugs
- entities:
- - uid: 1479
- components:
- - type: Transform
- pos: 14.438607,42.96412
- parent: 588
- - uid: 1480
- components:
- - type: Transform
- pos: 14.537998,42.878975
- parent: 588
-- proto: PlushieNuke
- entities:
- - uid: 1850
- components:
- - type: Transform
- pos: 22.519993,28.594225
- parent: 588
-- proto: PortableFlasher
- entities:
- - uid: 1234
+- proto: PortableFlasher
+ entities:
+ - uid: 1234
components:
- type: Transform
pos: 32.5,25.5
@@ -9575,18 +8943,6 @@ entities:
- type: Transform
pos: 22.5,40.5
parent: 588
-- proto: PowerCellHyper
- entities:
- - uid: 469
- components:
- - type: Transform
- pos: 12.355853,25.41643
- parent: 588
- - uid: 590
- components:
- - type: Transform
- pos: 5.381793,16.642464
- parent: 588
- proto: PowerCellRecharger
entities:
- uid: 1103
@@ -9603,8 +8959,6 @@ entities:
entities:
- uid: 1641
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,0.5
@@ -9613,8 +8967,6 @@ entities:
powerLoad: 0
- uid: 1642
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 14.5,0.5
@@ -9623,8 +8975,6 @@ entities:
powerLoad: 0
- uid: 1646
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 24.5,0.5
@@ -9633,8 +8983,6 @@ entities:
powerLoad: 0
- uid: 1647
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 28.5,0.5
@@ -9643,8 +8991,6 @@ entities:
powerLoad: 0
- uid: 1648
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 21.5,6.5
@@ -9653,8 +8999,6 @@ entities:
powerLoad: 0
- uid: 1649
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,10.5
parent: 588
@@ -9662,8 +9006,6 @@ entities:
powerLoad: 0
- uid: 1650
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 16.5,6.5
@@ -9672,8 +9014,6 @@ entities:
powerLoad: 0
- uid: 1651
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,10.5
parent: 588
@@ -9681,8 +9021,6 @@ entities:
powerLoad: 0
- uid: 1693
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 32.5,25.5
@@ -9691,8 +9029,6 @@ entities:
powerLoad: 0
- uid: 1701
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 18.5,12.5
@@ -9701,8 +9037,6 @@ entities:
powerLoad: 0
- uid: 1702
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,16.5
parent: 588
@@ -9710,8 +9044,6 @@ entities:
powerLoad: 0
- uid: 1703
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 34.5,20.5
@@ -9720,8 +9052,6 @@ entities:
powerLoad: 0
- uid: 1704
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 16.5,25.5
@@ -9730,8 +9060,6 @@ entities:
powerLoad: 0
- uid: 1705
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,27.5
@@ -9740,8 +9068,6 @@ entities:
powerLoad: 0
- uid: 1706
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,40.5
parent: 588
@@ -9749,8 +9075,6 @@ entities:
powerLoad: 0
- uid: 1741
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,21.5
@@ -9759,8 +9083,6 @@ entities:
powerLoad: 0
- uid: 1743
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,22.5
parent: 588
@@ -9768,8 +9090,6 @@ entities:
powerLoad: 0
- uid: 1830
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,43.5
@@ -9778,8 +9098,6 @@ entities:
powerLoad: 0
- uid: 1831
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,47.5
@@ -9790,8 +9108,6 @@ entities:
entities:
- uid: 1707
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,42.5
@@ -9800,8 +9116,6 @@ entities:
powerLoad: 0
- uid: 1708
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,42.5
@@ -9810,8 +9124,6 @@ entities:
powerLoad: 0
- uid: 1709
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,46.5
@@ -9820,8 +9132,6 @@ entities:
powerLoad: 0
- uid: 1710
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,46.5
@@ -9830,8 +9140,6 @@ entities:
powerLoad: 0
- uid: 1725
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 28.5,27.5
@@ -10823,13 +10131,6 @@ entities:
- type: Transform
pos: 5.5,43.5
parent: 588
-- proto: RandomDrinkBottle
- entities:
- - uid: 580
- components:
- - type: Transform
- pos: 12.5,12.5
- parent: 588
- proto: RandomFoodSingle
entities:
- uid: 764
@@ -10898,13 +10199,6 @@ entities:
- type: Transform
pos: 8.5,24.5
parent: 588
-- proto: RandomVending
- entities:
- - uid: 539
- components:
- - type: Transform
- pos: 17.5,16.5
- parent: 588
- proto: ReinforcedWindow
entities:
- uid: 214
@@ -10967,118 +10261,8 @@ entities:
- type: Transform
pos: 15.5,34.5
parent: 588
-- proto: RemoteSignaller
- entities:
- - uid: 593
- components:
- - type: Transform
- pos: 34.361877,24.623777
- parent: 588
- - type: DeviceLinkSource
- linkedPorts:
- 1238:
- - Pressed: Toggle
- 1239:
- - Pressed: Toggle
- 1237:
- - Pressed: Toggle
- - uid: 1104
- components:
- - type: Transform
- pos: 25.24476,30.698978
- parent: 588
- - uid: 1105
- components:
- - type: Transform
- pos: 25.443544,30.613832
- parent: 588
- - uid: 1106
- components:
- - type: Transform
- pos: 5.677143,16.762346
- parent: 588
-- proto: RiotLaserShield
- entities:
- - uid: 1618
- components:
- - type: Transform
- pos: 12.616156,10.534842
- parent: 588
-- proto: RiotShield
- entities:
- - uid: 600
- components:
- - type: Transform
- pos: 1.3209407,16.656654
- parent: 588
- - uid: 601
- components:
- - type: Transform
- pos: 1.5481212,16.543125
- parent: 588
- - uid: 1615
- components:
- - type: Transform
- pos: 12.363155,6.657488
- parent: 588
-- proto: SalvageCanisterSpawner
- entities:
- - uid: 998
- components:
- - type: Transform
- pos: 22.5,30.5
- parent: 588
- - uid: 1009
- components:
- - type: Transform
- pos: 19.5,30.5
- parent: 588
- - uid: 1025
- components:
- - type: Transform
- pos: 21.5,30.5
- parent: 588
- - uid: 1190
- components:
- - type: Transform
- pos: 9.5,36.5
- parent: 588
- - uid: 1210
- components:
- - type: Transform
- pos: 9.5,48.5
- parent: 588
- - uid: 1413
- components:
- - type: Transform
- pos: 13.5,48.5
- parent: 588
- - uid: 1470
- components:
- - type: Transform
- pos: 12.5,48.5
- parent: 588
-- proto: SawAdvanced
- entities:
- - uid: 1468
- components:
- - type: Transform
- pos: 8.527969,43.529327
- parent: 588
-- proto: ScalpelLaser
- entities:
- - uid: 1472
- components:
- - type: Transform
- pos: 8.485372,43.131977
- parent: 588
- proto: ScalpelShiv
entities:
- - uid: 708
- components:
- - type: Transform
- pos: 16.074419,18.727995
- parent: 588
- uid: 1592
components:
- type: Transform
@@ -11096,39 +10280,6 @@ entities:
- type: Transform
pos: 28.5,42.5
parent: 588
-- proto: SheetGlass
- entities:
- - uid: 649
- components:
- - type: Transform
- pos: 14.3137455,32.471424
- parent: 588
-- proto: SheetPlasteel
- entities:
- - uid: 866
- components:
- - type: Transform
- pos: 2.412651,34.456436
- parent: 588
-- proto: SheetPlastic
- entities:
- - uid: 398
- components:
- - type: Transform
- pos: 17.46578,47.64306
- parent: 588
-- proto: SheetSteel
- entities:
- - uid: 656
- components:
- - type: Transform
- pos: 26.36062,32.5183
- parent: 588
- - uid: 699
- components:
- - type: Transform
- pos: 29.259031,40.432583
- parent: 588
- proto: ShowcaseRobot
entities:
- uid: 1621
@@ -11145,24 +10296,14 @@ entities:
entities:
- uid: 1237
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 34.5,27.5
parent: 588
- - type: DeviceLinkSink
- links:
- - 593
- uid: 1238
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,27.5
parent: 588
- - type: DeviceLinkSink
- links:
- - 593
- proto: ShuttersWindow
entities:
- uid: 1239
@@ -11170,9 +10311,6 @@ entities:
- type: Transform
pos: 33.5,27.5
parent: 588
- - type: DeviceLinkSink
- links:
- - 593
- proto: SignCloning
entities:
- uid: 1484
@@ -11231,95 +10369,966 @@ entities:
- uid: 1483
components:
- type: Transform
- pos: 10.5,43.5
+ pos: 10.5,43.5
+ parent: 588
+- proto: Sink
+ entities:
+ - uid: 935
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 588
+- proto: SinkStemlessWater
+ entities:
+ - uid: 1461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,42.5
+ parent: 588
+ - uid: 1462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,42.5
+ parent: 588
+- proto: SMESBasic
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 588
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 588
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 588
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 588
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 588
+- proto: SoapSyndie
+ entities:
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: 10.4890785,27.46785
+ parent: 588
+- proto: SpawnDungeonClutterMedical
+ entities:
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 14.464357,43.03244
+ parent: 588
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 14.417482,42.87619
+ parent: 588
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 14.589357,42.610565
+ parent: 588
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 14.542482,43.25119
+ parent: 588
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 12.321655,44.516815
+ parent: 588
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 14.354982,43.40744
+ parent: 588
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 12.52478,44.62619
+ parent: 588
+- proto: SpawnDungeonClutterPatientTransport
+ entities:
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 30.529268,25.626429
+ parent: 588
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 30.513643,24.642054
+ parent: 588
+- proto: SpawnDungeonLootArmoryClutterSec
+ entities:
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 3.481042,0.55812025
+ parent: 588
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 1.35179,16.461943
+ parent: 588
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 12.868824,25.464571
+ parent: 588
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 18.577902,24.730196
+ parent: 588
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 12.469565,6.590061
+ parent: 588
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 18.577902,24.558321
+ parent: 588
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 5.398665,12.743193
+ parent: 588
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 22.3696,6.6631455
+ parent: 588
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 15.478392,0.62062025
+ parent: 588
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 12.556324,25.558321
+ parent: 588
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 22.58835,10.480686
+ parent: 588
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 15.744017,0.46437025
+ parent: 588
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 12.323845,12.540068
+ parent: 588
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 18.406027,25.620821
+ parent: 588
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 18.624777,25.527071
+ parent: 588
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 5.66429,12.602568
+ parent: 588
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 12.438315,6.715061
+ parent: 588
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 1.648665,16.540068
+ parent: 588
+ - uid: 988
+ components:
+ - type: Transform
+ pos: 12.384449,24.636446
+ parent: 588
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 12.43322,12.868193
+ parent: 588
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 13.49572,13.665068
+ parent: 588
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 12.93322,13.586943
+ parent: 588
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 13.400267,0.55812025
+ parent: 588
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 22.353975,10.574436
+ parent: 588
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 12.603199,24.558321
+ parent: 588
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 5.66429,16.493193
+ parent: 588
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: 13.511345,12.571318
+ parent: 588
+ - uid: 1480
+ components:
+ - type: Transform
+ pos: 12.594565,10.511936
+ parent: 588
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: 1.38304,12.727568
+ parent: 588
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: 1.679915,12.540068
+ parent: 588
+ - uid: 1577
+ components:
+ - type: Transform
+ pos: 12.750815,6.496311
+ parent: 588
+ - uid: 1613
+ components:
+ - type: Transform
+ pos: 12.605095,12.524443
+ parent: 588
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: 5.434167,0.52687025
+ parent: 588
+ - uid: 1615
+ components:
+ - type: Transform
+ pos: 18.613144,1.0893703
+ parent: 588
+ - uid: 1616
+ components:
+ - type: Transform
+ pos: 26.523903,3.6206203
+ parent: 588
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: 1.63304,12.758818
+ parent: 588
+- proto: SpawnDungeonLootArmoryGuns
+ entities:
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 12.573845,13.149443
+ parent: 588
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: 1.52317,0.58291197
+ parent: 588
+ - uid: 1297
+ components:
+ - type: Transform
+ pos: 26.491337,36.55478
+ parent: 588
+ - uid: 1298
+ components:
+ - type: Transform
+ pos: 26.678837,36.30478
+ parent: 588
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 12.510225,10.52252
+ parent: 588
+ - uid: 1612
+ components:
+ - type: Transform
+ pos: 22.6821,6.4756455
+ parent: 588
+- proto: SpawnDungeonLootBureaucracy
+ entities:
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 24.93235,1.6214004
+ parent: 588
+ - uid: 329
+ components:
+ - type: Transform
+ pos: 7.422515,22.667841
+ parent: 588
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 28.4636,1.6214004
+ parent: 588
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 10.34439,19.355341
+ parent: 588
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 18.516119,0.71515036
+ parent: 588
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 25.2136,1.4964004
+ parent: 588
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 24.604225,1.4651504
+ parent: 588
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 7.672515,22.480341
+ parent: 588
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 19.609869,0.55890036
+ parent: 588
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 20.602207,15.576639
+ parent: 588
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 20.570957,14.779764
+ parent: 588
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 10.797515,19.495966
+ parent: 588
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 21.391119,4.0432754
+ parent: 588
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 21.734869,3.8401504
+ parent: 588
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: 20.477207,14.436014
+ parent: 588
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: 20.399082,15.264139
+ parent: 588
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: 21.422369,3.6057754
+ parent: 588
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 18.828619,0.52765036
+ parent: 588
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 27.916725,1.4807754
+ parent: 588
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 7.328765,22.355341
+ parent: 588
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 10.328765,19.652216
+ parent: 588
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: 19.5,30.5
+ parent: 588
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: 22.5,30.5
+ parent: 588
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: 21.5,30.5
+ parent: 588
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: 9.5,36.5
+ parent: 588
+ - uid: 1241
+ components:
+ - type: Transform
+ pos: 13.5,48.5
+ parent: 588
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: 9.5,48.5
+ parent: 588
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 12.5,48.5
+ parent: 588
+- proto: SpawnDungeonLootChemsHydroponics
+ entities:
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: 33.533516,20.62025
+ parent: 588
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 1478
+ components:
+ - type: Transform
+ pos: 32.402702,8.382084
+ parent: 588
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 552
+ components:
+ - type: Transform
+ pos: 25.329813,30.721416
+ parent: 588
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 25.517313,30.518291
+ parent: 588
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 25.720438,30.752666
+ parent: 588
+ - uid: 1157
+ components:
+ - type: Transform
+ pos: 34.401733,24.67827
+ parent: 588
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 5.304915,16.524443
+ parent: 588
+- proto: SpawnDungeonLootClutterKitchen
+ entities:
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 30.661781,48.478493
+ parent: 588
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 17.570957,12.529764
+ parent: 588
+ - uid: 761
+ components:
+ - type: Transform
+ pos: 17.383457,12.514139
+ parent: 588
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 30.552406,48.572243
+ parent: 588
+ - uid: 997
+ components:
+ - type: Transform
+ pos: 30.239906,48.587868
+ parent: 588
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 17.258457,12.654764
+ parent: 588
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: 30.458656,48.244118
+ parent: 588
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 16.492832,13.529764
+ parent: 588
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 18.409803,21.792841
+ parent: 588
+- proto: SpawnDungeonLootKitchenTabletop
+ entities:
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 30.5,47.5
+ parent: 588
+ - uid: 950
+ components:
+ - type: Transform
+ pos: 16.5,12.5
+ parent: 588
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 588
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 29.5,48.5
+ parent: 588
+- proto: SpawnDungeonLootKitsFirstAid
+ entities:
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: 30.498018,28.517054
+ parent: 588
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 30.388643,28.110804
+ parent: 588
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 30.544893,27.642054
+ parent: 588
+- proto: SpawnDungeonLootLathe
+ entities:
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 588
+- proto: SpawnDungeonLootLockersEngi
+ entities:
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 14.5,30.5
+ parent: 588
+- proto: SpawnDungeonLootLockersMed
+ entities:
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 28.5,27.5
+ parent: 588
+- proto: SpawnDungeonLootLockersProtectiveGear
+ entities:
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 14.5,6.5
+ parent: 588
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 0.5,32.5
+ parent: 588
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 12.5,30.5
+ parent: 588
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 588
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 588
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 588
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 588
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 0.5,38.5
+ parent: 588
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 6.5,40.5
+ parent: 588
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 20.5,10.5
+ parent: 588
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: 26.513111,32.51829
+ parent: 588
+ - uid: 1191
+ components:
+ - type: Transform
+ pos: 14.419361,32.596416
+ parent: 588
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 29.431097,40.491657
+ parent: 588
+- proto: SpawnDungeonLootMaterialsValuableFull
+ entities:
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 2.4952426,34.536057
+ parent: 588
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 17.49705,47.59487
+ parent: 588
+ - uid: 1267
+ components:
+ - type: Transform
+ pos: 11.029299,39.508804
+ parent: 588
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 12.560549,39.68068
+ parent: 588
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: 10.482424,39.571304
+ parent: 588
+- proto: SpawnDungeonLootMugs
+ entities:
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 22.742832,12.451639
+ parent: 588
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 18.487928,18.605341
+ parent: 588
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 22.399082,12.717264
+ parent: 588
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 22.487928,18.464716
+ parent: 588
+- proto: SpawnDungeonLootPowerCell
+ entities:
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 5.53929,16.571318
+ parent: 588
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: 12.463861,25.629824
+ parent: 588
+- proto: SpawnDungeonLootSeed
+ entities:
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 29.296295,44.152103
+ parent: 588
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: 30.78067,44.152103
+ parent: 588
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: 30.43692,42.495853
+ parent: 588
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 29.62442,42.51148
+ parent: 588
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 31.758577,21.18776
+ parent: 588
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 31.492952,21.140884
+ parent: 588
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 31.367952,20.43776
+ parent: 588
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 31.586702,19.390884
+ parent: 588
+ - uid: 1475
+ components:
+ - type: Transform
+ pos: 34.36795,18.484634
+ parent: 588
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 31.727327,22.56276
+ parent: 588
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 31.258577,22.297134
+ parent: 588
+- proto: SpawnDungeonLootSpesos
+ entities:
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 11.498049,39.71193
+ parent: 588
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 11.638674,39.49318
+ parent: 588
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 11.873049,39.821304
+ parent: 588
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: 12.388674,39.49318
+ parent: 588
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 12.326174,39.758804
+ parent: 588
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: 11.982424,39.508804
+ parent: 588
+- proto: SpawnDungeonLootToolsBasicEngineering
+ entities:
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 15.481861,32.533916
+ parent: 588
+- proto: SpawnDungeonLootToolsHydroponics
+ entities:
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 29.608795,43.745853
+ parent: 588
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 30.961702,21.672134
+ parent: 588
+ - uid: 765
+ components:
+ - type: Transform
+ pos: 30.18692,43.558353
+ parent: 588
+ - uid: 930
+ components:
+ - type: Transform
+ pos: 30.492952,21.765884
+ parent: 588
+ - uid: 931
+ components:
+ - type: Transform
+ pos: 30.46817,42.98023
+ parent: 588
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 33.39289,20.698376
+ parent: 588
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 29.483795,42.85523
parent: 588
-- proto: Sink
- entities:
- - uid: 935
+ - uid: 1009
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,25.5
+ pos: 33.533516,20.573376
parent: 588
-- proto: SinkStemlessWater
+- proto: SpawnDungeonLootToolsSurgeryAdvanced
entities:
- - uid: 1461
+ - uid: 373
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,42.5
+ pos: 8.477286,43.610565
parent: 588
- - uid: 1462
+ - uid: 866
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,42.5
+ pos: 8.461661,43.360565
parent: 588
-- proto: SMESBasic
- entities:
- - uid: 46
+ - uid: 1154
components:
- type: Transform
- pos: 26.5,13.5
+ pos: 8.477286,42.81369
parent: 588
- - uid: 56
+ - uid: 1155
components:
- type: Transform
- pos: 28.5,13.5
+ pos: 8.477286,43.12619
parent: 588
- - uid: 747
+- proto: SpawnDungeonLootToolsSurgeryCrude
+ entities:
+ - uid: 1244
components:
- type: Transform
- pos: 26.5,19.5
+ pos: 16.224228,18.705944
parent: 588
- - uid: 1506
+- proto: SpawnDungeonLootVaultGuns
+ entities:
+ - uid: 1299
components:
- type: Transform
- pos: 18.5,46.5
+ pos: 26.599047,35.444897
parent: 588
- - uid: 1507
+ - uid: 1660
components:
- type: Transform
- pos: 20.5,46.5
+ pos: 11.198751,39.646996
parent: 588
-- proto: SoapSyndie
+- proto: SpawnDungeonVendomatsRecreational
entities:
- - uid: 1856
+ - uid: 1190
components:
- type: Transform
- pos: 10.4890785,27.46785
+ pos: 17.5,16.5
parent: 588
-- proto: SpaceCash100
- entities:
- - uid: 1243
+ - uid: 1196
components:
- type: Transform
- pos: 11.887424,39.621456
+ pos: 22.5,22.5
parent: 588
- - uid: 1244
+ - uid: 1197
components:
- type: Transform
- pos: 11.759636,39.479546
+ pos: 18.5,40.5
parent: 588
- - uid: 1296
+ - uid: 1203
components:
- type: Transform
- pos: 12.100407,39.465355
+ pos: 16.5,16.5
parent: 588
- - uid: 1297
+ - uid: 1204
components:
- type: Transform
- pos: 12.100407,39.80594
+ pos: 17.5,40.5
parent: 588
- - uid: 1298
+ - uid: 1205
components:
- type: Transform
- pos: 11.688642,39.720795
+ pos: 21.5,12.5
parent: 588
- - uid: 1299
+ - uid: 1295
components:
- type: Transform
- pos: 11.4330635,39.57888
+ pos: 10.5,22.5
parent: 588
- proto: Spear
entities:
@@ -11335,13 +11344,6 @@ entities:
- type: Transform
pos: 13.5,43.5
parent: 588
-- proto: StimkitFilled
- entities:
- - uid: 561
- components:
- - type: Transform
- pos: 30.39083,27.514402
- parent: 588
- proto: StimpackMini
entities:
- uid: 1879
@@ -11423,13 +11425,6 @@ entities:
- type: Transform
pos: 19.5,32.5
parent: 588
-- proto: SyringeEphedrine
- entities:
- - uid: 1475
- components:
- - type: Transform
- pos: 14.472328,42.917698
- parent: 588
- proto: Table
entities:
- uid: 525
@@ -11824,23 +11819,17 @@ entities:
entities:
- uid: 567
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,15.5
parent: 588
- uid: 1463
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,43.5
parent: 588
- uid: 1464
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 12.5,43.5
@@ -11876,42 +11865,13 @@ entities:
entities:
- uid: 532
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 18.5,12.5
parent: 588
-- proto: VendingMachineCigs
- entities:
- - uid: 720
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 22.5,22.5
- parent: 588
-- proto: VendingMachineCoffee
- entities:
- - uid: 765
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 10.5,22.5
- parent: 588
- - uid: 1285
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 18.5,40.5
- parent: 588
- proto: VendingMachineDetDrobe
entities:
- uid: 582
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 10.5,14.5
parent: 588
@@ -11919,26 +11879,13 @@ entities:
entities:
- uid: 1781
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 30.5,46.5
parent: 588
-- proto: VendingMachineDonut
- entities:
- - uid: 538
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 16.5,16.5
- parent: 588
- proto: VendingMachineLawDrobe
entities:
- uid: 319
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 18.5,4.5
parent: 588
@@ -11946,8 +11893,6 @@ entities:
entities:
- uid: 1143
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 28.5,28.5
parent: 588
@@ -11955,8 +11900,6 @@ entities:
entities:
- uid: 1013
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 14.5,27.5
parent: 588
@@ -11964,8 +11907,6 @@ entities:
entities:
- uid: 1022
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 16.5,25.5
parent: 588
@@ -11973,15 +11914,11 @@ entities:
entities:
- uid: 800
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 33.5,19.5
parent: 588
- uid: 1775
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 28.5,44.5
parent: 588
@@ -11996,134 +11933,96 @@ entities:
entities:
- uid: 377
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,7.5
parent: 588
- uid: 378
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,7.5
parent: 588
- uid: 379
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,9.5
parent: 588
- uid: 380
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,9.5
parent: 588
- uid: 381
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,8.5
parent: 588
- uid: 382
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,9.5
parent: 588
- uid: 383
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,9.5
parent: 588
- uid: 384
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,8.5
parent: 588
- uid: 385
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,7.5
parent: 588
- uid: 386
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,8.5
parent: 588
- uid: 387
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,7.5
parent: 588
- uid: 388
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,7.5
parent: 588
- uid: 389
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,7.5
parent: 588
- uid: 390
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,9.5
parent: 588
- uid: 391
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,7.5
parent: 588
- uid: 392
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,9.5
parent: 588
- uid: 393
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,8.5
parent: 588
- uid: 394
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,9.5
parent: 588
- uid: 395
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,9.5
parent: 588
@@ -12131,233 +12030,171 @@ entities:
entities:
- uid: 45
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,8.5
parent: 588
- uid: 51
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,8.5
parent: 588
- uid: 244
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,4.5
parent: 588
- uid: 245
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,3.5
parent: 588
- uid: 246
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,4.5
parent: 588
- uid: 247
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,3.5
parent: 588
- uid: 266
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,1.5
parent: 588
- uid: 267
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,0.5
parent: 588
- uid: 268
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,1.5
parent: 588
- uid: 269
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,0.5
parent: 588
- uid: 291
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,6.5
parent: 588
- uid: 292
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,6.5
parent: 588
- uid: 405
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,10.5
parent: 588
- uid: 406
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,10.5
parent: 588
- uid: 426
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,9.5
parent: 588
- uid: 432
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,7.5
parent: 588
- uid: 433
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,9.5
parent: 588
- uid: 434
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,7.5
parent: 588
- uid: 570
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,46.5
parent: 588
- uid: 621
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,21.5
parent: 588
- uid: 622
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,19.5
parent: 588
- uid: 623
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,21.5
parent: 588
- uid: 627
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,19.5
parent: 588
- uid: 1078
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 33.5,35.5
parent: 588
- uid: 1330
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,44.5
parent: 588
- uid: 1332
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,42.5
parent: 588
- uid: 1334
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,42.5
parent: 588
- uid: 1335
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,44.5
parent: 588
- uid: 1337
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,48.5
parent: 588
- uid: 1338
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,46.5
parent: 588
- uid: 1340
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,48.5
parent: 588
@@ -12365,281 +12202,203 @@ entities:
entities:
- uid: 140
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,25.5
parent: 588
- uid: 144
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,26.5
parent: 588
- uid: 145
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,25.5
parent: 588
- uid: 146
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,27.5
parent: 588
- uid: 205
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,35.5
parent: 588
- uid: 206
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,35.5
parent: 588
- uid: 207
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,35.5
parent: 588
- uid: 208
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,35.5
parent: 588
- uid: 210
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,34.5
parent: 588
- uid: 305
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,4.5
parent: 588
- uid: 306
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,3.5
parent: 588
- uid: 307
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,0.5
parent: 588
- uid: 308
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,1.5
parent: 588
- uid: 476
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,13.5
parent: 588
- uid: 481
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,15.5
parent: 588
- uid: 483
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,13.5
parent: 588
- uid: 501
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 25.5,14.5
parent: 588
- uid: 510
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,15.5
parent: 588
- uid: 749
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,19.5
parent: 588
- uid: 750
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,19.5
parent: 588
- uid: 975
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,32.5
parent: 588
- uid: 995
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 21.5,32.5
parent: 588
- uid: 1163
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,36.5
parent: 588
- uid: 1164
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,35.5
parent: 588
- uid: 1165
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,35.5
parent: 588
- uid: 1167
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,35.5
parent: 588
- uid: 1300
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,39.5
parent: 588
- uid: 1303
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,39.5
parent: 588
- uid: 1304
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,39.5
parent: 588
- uid: 1305
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,40.5
parent: 588
- uid: 1485
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,43.5
parent: 588
- uid: 1486
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,44.5
parent: 588
- uid: 1487
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,43.5
parent: 588
- uid: 1488
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,43.5
parent: 588
- uid: 1489
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,43.5
parent: 588
- uid: 1490
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,44.5
parent: 588
- uid: 1491
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,47.5
parent: 588
- uid: 1492
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,47.5
parent: 588
- uid: 1493
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,47.5
parent: 588
@@ -12647,50 +12406,36 @@ entities:
entities:
- uid: 554
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,13.5
parent: 588
- uid: 555
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,14.5
parent: 588
- uid: 556
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,15.5
parent: 588
- uid: 557
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,15.5
parent: 588
- uid: 558
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,15.5
parent: 588
- uid: 559
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,16.5
parent: 588
- uid: 566
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,12.5
parent: 588
@@ -12748,16 +12493,6 @@ entities:
- type: Transform
pos: 19.5,22.5
parent: 588
- - uid: 1284
- components:
- - type: Transform
- pos: 17.5,40.5
- parent: 588
- - uid: 1292
- components:
- - type: Transform
- pos: 21.5,12.5
- parent: 588
- proto: WaterTankHighCapacity
entities:
- uid: 801
@@ -12793,49 +12528,6 @@ entities:
- type: Transform
pos: 16.5,24.5
parent: 588
-- proto: WeaponDisablerPractice
- entities:
- - uid: 547
- components:
- - type: Transform
- pos: 1.4370823,0.5241035
- parent: 588
- - uid: 930
- components:
- - type: Transform
- pos: 26.440151,36.61676
- parent: 588
- - uid: 1611
- components:
- - type: Transform
- pos: 12.371853,10.605072
- parent: 588
-- proto: WeaponLaserCarbinePractice
- entities:
- - uid: 931
- components:
- - type: Transform
- pos: 26.596338,36.36132
- parent: 588
- - uid: 1612
- components:
- - type: Transform
- pos: 22.543945,6.5464144
- parent: 588
-- proto: WeaponRevolverDeckard
- entities:
- - uid: 988
- components:
- - type: Transform
- pos: 12.417598,13.133306
- parent: 588
-- proto: WeaponSubMachineGunDrozd
- entities:
- - uid: 583
- components:
- - type: Transform
- pos: 26.54816,35.66059
- parent: 588
- proto: WindoorAssemblySecure
entities:
- uid: 696
@@ -13450,20 +13142,6 @@ entities:
- type: Transform
pos: 13.5,44.5
parent: 588
-- proto: Wrench
- entities:
- - uid: 424
- components:
- - type: Transform
- pos: 15.156982,32.526764
- parent: 588
-- proto: Zipties
- entities:
- - uid: 1156
- components:
- - type: Transform
- pos: 15.332411,0.52492684
- parent: 588
- proto: ZiptiesBroken
entities:
- uid: 48
diff --git a/Resources/Maps/Dungeon/snowy_labs.yml b/Resources/Maps/Dungeon/snowy_labs.yml
index f2011305af9..a496f5e11c2 100644
--- a/Resources/Maps/Dungeon/snowy_labs.yml
+++ b/Resources/Maps/Dungeon/snowy_labs.yml
@@ -156,2715 +156,2716 @@ entities:
color: '#FFFFFFFF'
id: Arrows
decals:
- 231: 40,39
- 326: 10,35
- 483: 17,25
- 484: 17,26
- 485: 17,27
+ 176: 40,39
+ 271: 10,35
+ 428: 17,25
+ 429: 17,26
+ 430: 17,27
- node:
color: '#FFFFFFFF'
id: Arrows
decals:
- 941: 41,14
+ 778: 41,14
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 232: 46,39
- 327: 0,35
+ 177: 46,39
+ 272: 0,35
- node:
color: '#FFFFFFFF'
id: Bot
decals:
- 480: 16,25
- 481: 16,26
- 482: 16,27
- 508: 5,6
- 509: 5,7
- 510: 0,6
- 511: 0,7
- 512: 7,10
- 513: 8,10
- 514: 9,10
- 1009: 3,14
+ 425: 16,25
+ 426: 16,26
+ 427: 16,27
+ 453: 0,6
+ 454: 0,7
+ 455: 7,10
+ 456: 8,10
+ 457: 9,10
+ 846: 3,14
+ 1649: 3,7
+ 1650: 3,6
+ 1651: 34,28
- node:
cleanable: True
color: '#FFFFFFFF'
id: BotLeft
decals:
- 471: 14,42
+ 416: 14,42
- node:
color: '#8BDA8EB4'
id: Box
decals:
- 1339: 45,12
+ 1162: 45,12
- node:
color: '#8BDA8EFF'
id: Box
decals:
- 1633: 51,14
+ 1430: 51,14
- node:
color: '#8BDABA6F'
id: BrickCornerOverlayNE
decals:
- 1202: 22,10
+ 1025: 22,10
- node:
color: '#8BDABA6F'
id: BrickCornerOverlayNW
decals:
- 1201: 12,10
+ 1024: 12,10
- node:
color: '#8BDABA6F'
id: BrickCornerOverlaySE
decals:
- 1196: 22,6
+ 1019: 22,6
- node:
color: '#8BDABA6F'
id: BrickCornerOverlaySW
decals:
- 1197: 12,6
+ 1020: 12,6
- node:
color: '#8BDABA6F'
id: BrickLineOverlayE
decals:
- 1212: 22,9
- 1213: 22,8
- 1214: 22,7
+ 1035: 22,9
+ 1036: 22,8
+ 1037: 22,7
- node:
color: '#8BDB9B85'
id: BrickLineOverlayE
decals:
- 1386: 18,4
- 1387: 18,2
- 1388: 18,1
- 1389: 18,0
+ 1209: 18,4
+ 1210: 18,2
+ 1211: 18,1
+ 1212: 18,0
- node:
color: '#8BDABA6F'
id: BrickLineOverlayN
decals:
- 1203: 13,10
- 1204: 14,10
- 1205: 15,10
- 1206: 16,10
- 1207: 17,10
- 1208: 18,10
- 1209: 19,10
- 1210: 20,10
- 1211: 21,10
+ 1026: 13,10
+ 1027: 14,10
+ 1028: 15,10
+ 1029: 16,10
+ 1030: 17,10
+ 1031: 18,10
+ 1032: 19,10
+ 1033: 20,10
+ 1034: 21,10
- node:
color: '#8BDABA6F'
id: BrickLineOverlayS
decals:
- 1187: 13,6
- 1188: 14,6
- 1189: 15,6
- 1190: 16,6
- 1191: 17,6
- 1192: 18,6
- 1193: 19,6
- 1194: 20,6
- 1195: 21,6
+ 1010: 13,6
+ 1011: 14,6
+ 1012: 15,6
+ 1013: 16,6
+ 1014: 17,6
+ 1015: 18,6
+ 1016: 19,6
+ 1017: 20,6
+ 1018: 21,6
- node:
color: '#8BDABA6F'
id: BrickLineOverlayW
decals:
- 1198: 12,7
- 1199: 12,8
- 1200: 12,9
+ 1021: 12,7
+ 1022: 12,8
+ 1023: 12,9
- node:
color: '#8BDB9B85'
id: BrickLineOverlayW
decals:
- 1382: 34,2
- 1383: 34,1
- 1384: 34,0
- 1385: 34,4
+ 1205: 34,2
+ 1206: 34,1
+ 1207: 34,0
+ 1208: 34,4
- node:
color: '#8BDA8EFF'
id: BrickTileSteelCornerNe
decals:
- 1611: 30,24
- 1634: 54,16
- 1746: 38,16
+ 1408: 30,24
+ 1431: 54,16
+ 1536: 38,16
- node:
color: '#D381C996'
id: BrickTileSteelCornerNe
decals:
- 618: 14,16
- 805: 22,10
+ 561: 14,16
+ 670: 22,10
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNe
decals:
- 1631: 34,27
+ 1428: 34,27
- node:
color: '#8BDA8EFF'
id: BrickTileSteelCornerNw
decals:
- 1613: 28,24
- 1637: 48,16
- 1745: 32,16
+ 1410: 28,24
+ 1434: 48,16
+ 1535: 32,16
- node:
color: '#D381C996'
id: BrickTileSteelCornerNw
decals:
- 619: 8,16
- 806: 12,10
+ 562: 8,16
+ 671: 12,10
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNw
decals:
- 1629: 32,27
+ 1426: 32,27
- node:
color: '#8BDA8EFF'
id: BrickTileSteelCornerSe
decals:
- 1616: 30,28
- 1635: 54,12
- 1747: 38,12
+ 1413: 30,28
+ 1432: 54,12
+ 1537: 38,12
- node:
color: '#D381C996'
id: BrickTileSteelCornerSe
decals:
- 804: 22,6
+ 669: 22,6
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
- 1627: 34,25
+ 1424: 34,25
- node:
color: '#8BDA8EFF'
id: BrickTileSteelCornerSw
decals:
- 1614: 28,28
- 1636: 48,12
- 1744: 32,12
+ 1411: 28,28
+ 1433: 48,12
+ 1534: 32,12
- node:
color: '#D381C996'
id: BrickTileSteelCornerSw
decals:
- 803: 12,6
+ 668: 12,6
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
- 1626: 32,25
+ 1423: 32,25
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndN
decals:
- 537: 1,7
- 538: 4,7
+ 480: 1,7
+ 481: 4,7
- node:
color: '#8BDA8EFF'
id: BrickTileSteelLineE
decals:
- 1646: 54,15
- 1647: 54,14
- 1648: 54,13
- 1748: 38,13
- 1749: 38,14
- 1750: 38,15
+ 1443: 54,15
+ 1444: 54,14
+ 1445: 54,13
+ 1538: 38,13
+ 1539: 38,14
+ 1540: 38,15
- node:
color: '#D381C996'
id: BrickTileSteelLineE
decals:
- 797: 22,7
- 798: 22,8
- 799: 22,9
+ 662: 22,7
+ 663: 22,8
+ 664: 22,9
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
decals:
- 539: 4,6
- 540: 1,6
- 1561: 36,9
- 1563: 41,9
- 1567: 41,7
- 1568: 36,7
- 1601: 25,24
- 1602: 25,25
- 1603: 25,26
- 1604: 25,27
- 1605: 25,28
- 1632: 34,26
+ 482: 4,6
+ 483: 1,6
+ 1358: 36,9
+ 1360: 41,9
+ 1364: 41,7
+ 1365: 36,7
+ 1398: 25,24
+ 1399: 25,25
+ 1400: 25,26
+ 1401: 25,27
+ 1402: 25,28
+ 1429: 34,26
- node:
color: '#8BDA8EFF'
id: BrickTileSteelLineN
decals:
- 1612: 29,24
- 1641: 49,16
- 1642: 50,16
- 1643: 51,16
- 1644: 52,16
- 1645: 53,16
- 1751: 37,16
- 1752: 36,16
- 1753: 35,16
- 1754: 34,16
- 1755: 33,16
+ 1409: 29,24
+ 1438: 49,16
+ 1439: 50,16
+ 1440: 51,16
+ 1441: 52,16
+ 1442: 53,16
+ 1541: 37,16
+ 1542: 36,16
+ 1543: 35,16
+ 1544: 34,16
+ 1545: 33,16
- node:
color: '#D381C996'
id: BrickTileSteelLineN
decals:
- 613: 11,16
- 614: 10,16
- 615: 9,16
- 616: 12,16
- 617: 13,16
- 788: 21,10
- 789: 20,10
- 790: 18,10
- 791: 19,10
- 792: 17,10
- 793: 16,10
- 794: 15,10
- 795: 13,10
- 796: 14,10
+ 556: 11,16
+ 557: 10,16
+ 558: 9,16
+ 559: 12,16
+ 560: 13,16
+ 653: 21,10
+ 654: 20,10
+ 655: 18,10
+ 656: 19,10
+ 657: 17,10
+ 658: 16,10
+ 659: 15,10
+ 660: 13,10
+ 661: 14,10
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 807: 21,6
- 808: 20,6
- 809: 19,6
- 810: 17,6
- 811: 18,6
- 812: 16,6
- 813: 15,6
- 814: 14,6
- 815: 13,6
- 1585: 37,8
- 1586: 38,8
- 1587: 39,8
- 1588: 40,8
- 1589: 42,8
- 1590: 43,8
- 1591: 44,8
- 1592: 45,8
- 1593: 45,6
- 1594: 44,6
- 1595: 43,6
- 1596: 42,6
- 1597: 40,6
- 1598: 39,6
- 1599: 38,6
- 1600: 37,6
- 1630: 33,27
+ 672: 21,6
+ 673: 20,6
+ 674: 19,6
+ 675: 17,6
+ 676: 18,6
+ 677: 16,6
+ 678: 15,6
+ 679: 14,6
+ 680: 13,6
+ 1382: 37,8
+ 1383: 38,8
+ 1384: 39,8
+ 1385: 40,8
+ 1386: 42,8
+ 1387: 43,8
+ 1388: 44,8
+ 1389: 45,8
+ 1390: 45,6
+ 1391: 44,6
+ 1392: 43,6
+ 1393: 42,6
+ 1394: 40,6
+ 1395: 39,6
+ 1396: 38,6
+ 1397: 37,6
+ 1427: 33,27
- node:
color: '#8BDA8EFF'
id: BrickTileSteelLineS
decals:
- 1615: 29,28
- 1649: 53,12
- 1650: 52,12
- 1651: 51,12
- 1652: 50,12
- 1653: 49,12
- 1756: 33,12
- 1757: 34,12
- 1758: 35,12
- 1759: 36,12
- 1760: 37,12
+ 1412: 29,28
+ 1446: 53,12
+ 1447: 52,12
+ 1448: 51,12
+ 1449: 50,12
+ 1450: 49,12
+ 1546: 33,12
+ 1547: 34,12
+ 1548: 35,12
+ 1549: 36,12
+ 1550: 37,12
- node:
color: '#D381C996'
id: BrickTileSteelLineS
decals:
- 779: 21,6
- 780: 20,6
- 781: 18,6
- 782: 19,6
- 783: 17,6
- 784: 16,6
- 785: 15,6
- 786: 14,6
- 787: 13,6
+ 644: 21,6
+ 645: 20,6
+ 646: 18,6
+ 647: 19,6
+ 648: 17,6
+ 649: 16,6
+ 650: 15,6
+ 651: 14,6
+ 652: 13,6
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
decals:
- 816: 21,10
- 817: 20,10
- 818: 19,10
- 819: 18,10
- 820: 17,10
- 821: 16,10
- 822: 15,10
- 823: 14,10
- 824: 13,10
- 1569: 37,8
- 1570: 38,8
- 1571: 39,8
- 1572: 40,8
- 1573: 42,8
- 1574: 43,8
- 1575: 44,8
- 1576: 45,8
- 1577: 45,10
- 1578: 44,10
- 1579: 43,10
- 1580: 42,10
- 1581: 40,10
- 1582: 39,10
- 1583: 38,10
- 1584: 37,10
- 1625: 33,25
+ 681: 21,10
+ 682: 20,10
+ 683: 19,10
+ 684: 18,10
+ 685: 17,10
+ 686: 16,10
+ 687: 15,10
+ 688: 14,10
+ 689: 13,10
+ 1366: 37,8
+ 1367: 38,8
+ 1368: 39,8
+ 1369: 40,8
+ 1370: 42,8
+ 1371: 43,8
+ 1372: 44,8
+ 1373: 45,8
+ 1374: 45,10
+ 1375: 44,10
+ 1376: 43,10
+ 1377: 42,10
+ 1378: 40,10
+ 1379: 39,10
+ 1380: 38,10
+ 1381: 37,10
+ 1422: 33,25
- node:
color: '#8BDA8EFF'
id: BrickTileSteelLineW
decals:
- 1638: 48,13
- 1639: 48,14
- 1640: 48,15
- 1739: 32,15
- 1740: 32,14
- 1741: 32,14
- 1742: 32,12
- 1743: 32,13
+ 1435: 48,13
+ 1436: 48,14
+ 1437: 48,15
+ 1529: 32,15
+ 1530: 32,14
+ 1531: 32,14
+ 1532: 32,12
+ 1533: 32,13
- node:
color: '#D381C996'
id: BrickTileSteelLineW
decals:
- 610: 8,13
- 611: 8,14
- 612: 8,15
- 800: 12,7
- 801: 12,8
- 802: 12,9
+ 553: 8,13
+ 554: 8,14
+ 555: 8,15
+ 665: 12,7
+ 666: 12,8
+ 667: 12,9
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
- 541: 4,6
- 542: 1,6
- 1562: 41,9
- 1564: 46,9
- 1565: 46,7
- 1566: 41,7
- 1606: 25,24
- 1607: 25,25
- 1608: 25,26
- 1609: 25,27
- 1610: 25,28
- 1628: 32,26
+ 484: 4,6
+ 485: 1,6
+ 1359: 41,9
+ 1361: 46,9
+ 1362: 46,7
+ 1363: 41,7
+ 1403: 25,24
+ 1404: 25,25
+ 1405: 25,26
+ 1406: 25,27
+ 1407: 25,28
+ 1425: 32,26
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteBox
decals:
- 1320: 32,20
+ 1143: 32,20
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteCornerNe
decals:
- 1313: 34,22
- 1324: 33,21
+ 1136: 34,22
+ 1147: 33,21
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteCornerNe
decals:
- 1025: 14,16
- 1543: 46,10
- 1617: 30,27
- 1672: 15,4
- 1673: 16,3
- 1836: 6,48
+ 862: 14,16
+ 1340: 46,10
+ 1414: 30,27
+ 1467: 15,4
+ 1468: 16,3
+ 1595: 6,48
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerNe
decals:
- 1008: 6,28
+ 845: 6,28
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNe
decals:
- 58: 6,40
- 75: 14,40
- 109: 22,40
- 154: 30,40
- 155: 46,40
- 299: 10,36
- 339: 22,36
- 375: 33,36
- 420: 26,32
- 648: 38,4
- 651: 54,4
+ 10: 6,40
+ 27: 14,40
+ 54: 22,40
+ 99: 30,40
+ 100: 46,40
+ 244: 10,36
+ 284: 22,36
+ 320: 33,36
+ 365: 26,32
+ 591: 38,4
+ 594: 54,4
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteCornerNw
decals:
- 1307: 30,22
- 1323: 31,21
- 1332: 0,16
+ 1130: 30,22
+ 1146: 31,21
+ 1155: 0,16
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteCornerNw
decals:
- 1031: 8,16
- 1533: 36,10
- 1618: 28,27
- 1656: 1,4
- 1657: 0,3
- 1835: 0,48
+ 868: 8,16
+ 1330: 36,10
+ 1415: 28,27
+ 1451: 1,4
+ 1452: 0,3
+ 1594: 0,48
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerNw
decals:
- 570: 24,22
- 999: 4,28
+ 513: 24,22
+ 836: 4,28
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
decals:
- 61: 0,40
- 76: 8,40
- 108: 16,40
- 151: 40,40
- 152: 32,40
- 153: 24,40
- 301: 0,36
- 338: 12,36
- 374: 25,36
- 419: 18,32
- 646: 52,4
- 647: 36,4
+ 13: 0,40
+ 28: 8,40
+ 53: 16,40
+ 96: 40,40
+ 97: 32,40
+ 98: 24,40
+ 246: 0,36
+ 283: 12,36
+ 319: 25,36
+ 364: 18,32
+ 589: 52,4
+ 590: 36,4
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteCornerSe
decals:
- 1312: 34,18
- 1326: 33,19
+ 1135: 34,18
+ 1149: 33,19
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteCornerSe
decals:
- 1021: 14,12
- 1547: 46,6
- 1620: 30,25
- 1674: 16,1
- 1675: 15,0
- 1838: 6,42
+ 858: 14,12
+ 1344: 46,6
+ 1417: 30,25
+ 1469: 16,1
+ 1470: 15,0
+ 1597: 6,42
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSe
decals:
- 1004: 6,24
+ 841: 6,24
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSe
decals:
- 59: 6,38
- 74: 14,38
- 107: 22,38
- 149: 30,38
- 150: 46,38
- 298: 10,34
- 344: 22,34
- 373: 33,34
- 421: 26,30
- 644: 38,0
- 645: 54,0
- 696: 46,0
+ 11: 6,38
+ 26: 14,38
+ 52: 22,38
+ 94: 30,38
+ 95: 46,38
+ 243: 10,34
+ 289: 22,34
+ 318: 33,34
+ 366: 26,30
+ 587: 38,0
+ 588: 54,0
+ 639: 46,0
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteCornerSw
decals:
- 1311: 30,18
- 1322: 31,19
- 1336: 0,12
+ 1134: 30,18
+ 1145: 31,19
+ 1159: 0,12
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteCornerSw
decals:
- 1035: 8,12
- 1557: 36,6
- 1621: 28,25
- 1677: 1,0
- 1678: 0,1
- 1837: 0,42
+ 872: 8,12
+ 1354: 36,6
+ 1418: 28,25
+ 1471: 1,0
+ 1472: 0,1
+ 1596: 0,42
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSw
decals:
- 574: 24,18
- 1003: 4,24
+ 517: 24,18
+ 840: 4,24
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSw
decals:
- 60: 0,38
- 77: 8,38
- 110: 16,38
- 156: 40,38
- 157: 32,38
- 158: 24,38
- 300: 0,34
- 345: 12,34
- 376: 25,34
- 422: 18,30
- 649: 36,0
- 650: 52,0
- 697: 44,0
+ 12: 0,38
+ 29: 8,38
+ 55: 16,38
+ 101: 40,38
+ 102: 32,38
+ 103: 24,38
+ 245: 0,34
+ 290: 12,34
+ 321: 25,34
+ 367: 18,30
+ 592: 36,0
+ 593: 52,0
+ 640: 44,0
- node:
color: '#8BDABAFF'
id: BrickTileWhiteEndE
decals:
- 1072: 9,39
- 1092: 26,39
+ 909: 9,39
+ 929: 26,39
- node:
color: '#D381C996'
id: BrickTileWhiteEndE
decals:
- 102: 9,39
+ 47: 9,39
- node:
color: '#8BDABAFF'
id: BrickTileWhiteEndW
decals:
- 1073: 13,39
- 1093: 28,39
+ 910: 13,39
+ 930: 28,39
- node:
color: '#D381C996'
id: BrickTileWhiteEndW
decals:
- 101: 13,39
- 185: 28,39
+ 46: 13,39
+ 130: 28,39
- node:
color: '#8BDA8E88'
id: BrickTileWhiteInnerNe
decals:
- 1884: 0,42
+ 1642: 0,42
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteInnerNe
decals:
- 1290: 21,21
- 1300: 9,21
+ 1113: 21,21
+ 1123: 9,21
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteInnerNe
decals:
- 1681: 15,3
+ 1475: 15,3
- node:
color: '#8BDABAFF'
id: BrickTileWhiteInnerNe
decals:
- 1068: 9,38
- 1097: 25,39
+ 905: 9,38
+ 934: 25,39
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerNe
decals:
- 1015: 1,12
+ 852: 1,12
- node:
color: '#D381C996'
id: BrickTileWhiteInnerNe
decals:
- 106: 9,38
- 188: 25,39
- 193: 25,38
- 562: 21,21
+ 51: 9,38
+ 133: 25,39
+ 138: 25,38
+ 505: 21,21
- node:
color: '#D4D4D4FF'
id: BrickTileWhiteInnerNe
decals:
- 1734: 32,14
- 1735: 32,12
+ 1524: 32,14
+ 1525: 32,12
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerNe
decals:
- 695: 38,2
+ 638: 38,2
- node:
color: '#8BDA8E88'
id: BrickTileWhiteInnerNw
decals:
- 1883: 6,42
+ 1641: 6,42
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteInnerNw
decals:
- 1291: 19,21
- 1301: 7,21
+ 1114: 19,21
+ 1124: 7,21
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteInnerNw
decals:
- 1658: 1,3
+ 1453: 1,3
- node:
color: '#8BDABAFF'
id: BrickTileWhiteInnerNw
decals:
- 1067: 13,38
- 1096: 29,39
+ 904: 13,38
+ 933: 29,39
- node:
color: '#D381C996'
id: BrickTileWhiteInnerNw
decals:
- 105: 13,38
- 189: 29,39
- 192: 29,38
- 561: 19,21
+ 50: 13,38
+ 134: 29,39
+ 137: 29,38
+ 504: 19,21
- node:
color: '#D4D4D4FF'
id: BrickTileWhiteInnerNw
decals:
- 1732: 38,12
- 1733: 38,14
+ 1522: 38,12
+ 1523: 38,14
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerNw
decals:
- 694: 52,2
+ 637: 52,2
- node:
color: '#8BDA8E88'
id: BrickTileWhiteInnerSe
decals:
- 1882: 0,48
+ 1640: 0,48
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteInnerSe
decals:
- 1289: 21,19
- 1303: 9,19
+ 1112: 21,19
+ 1126: 9,19
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteInnerSe
decals:
- 1680: 15,1
+ 1474: 15,1
- node:
color: '#8BDABAFF'
id: BrickTileWhiteInnerSe
decals:
- 1071: 9,40
- 1095: 25,39
+ 908: 9,40
+ 932: 25,39
- node:
color: '#D381C996'
id: BrickTileWhiteInnerSe
decals:
- 104: 9,40
- 187: 25,39
- 191: 25,40
- 563: 21,19
+ 49: 9,40
+ 132: 25,39
+ 136: 25,40
+ 506: 21,19
- node:
color: '#D4D4D4FF'
id: BrickTileWhiteInnerSe
decals:
- 1728: 32,16
- 1729: 32,14
+ 1518: 32,16
+ 1519: 32,14
- node:
color: '#8BDA8E88'
id: BrickTileWhiteInnerSw
decals:
- 1881: 6,48
+ 1639: 6,48
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteInnerSw
decals:
- 1302: 7,19
+ 1125: 7,19
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteInnerSw
decals:
- 1679: 1,1
+ 1473: 1,1
- node:
color: '#8BDABAFF'
id: BrickTileWhiteInnerSw
decals:
- 1066: 13,40
- 1094: 29,39
+ 903: 13,40
+ 931: 29,39
- node:
color: '#D381C996'
id: BrickTileWhiteInnerSw
decals:
- 103: 13,40
- 186: 29,39
- 190: 29,40
+ 48: 13,40
+ 131: 29,39
+ 135: 29,40
- node:
color: '#D4D4D4FF'
id: BrickTileWhiteInnerSw
decals:
- 1730: 38,16
- 1731: 38,14
+ 1520: 38,16
+ 1521: 38,14
- node:
color: '#8BDA8E88'
id: BrickTileWhiteLineE
decals:
- 1860: 0,47
- 1861: 0,46
- 1862: 0,45
- 1863: 0,44
- 1864: 0,43
+ 1619: 0,47
+ 1620: 0,46
+ 1621: 0,45
+ 1622: 0,44
+ 1623: 0,43
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteLineE
decals:
- 1283: 21,22
- 1284: 21,18
- 1297: 9,18
- 1299: 9,22
- 1314: 34,21
- 1315: 34,20
- 1316: 34,19
- 1327: 33,20
+ 1106: 21,22
+ 1107: 21,18
+ 1120: 9,18
+ 1122: 9,22
+ 1137: 34,21
+ 1138: 34,20
+ 1139: 34,19
+ 1150: 33,20
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteLineE
decals:
- 1022: 14,13
- 1023: 14,14
- 1024: 14,15
- 1544: 46,9
- 1545: 46,8
- 1546: 46,7
- 1619: 30,26
- 1682: 16,2
- 1855: 6,47
- 1856: 6,46
- 1857: 6,45
- 1858: 6,44
- 1859: 6,43
+ 859: 14,13
+ 860: 14,14
+ 861: 14,15
+ 1341: 46,9
+ 1342: 46,8
+ 1343: 46,7
+ 1416: 30,26
+ 1476: 16,2
+ 1614: 6,47
+ 1615: 6,46
+ 1616: 6,45
+ 1617: 6,44
+ 1618: 6,43
- node:
color: '#9FED5896'
id: BrickTileWhiteLineE
decals:
- 1010: 1,13
- 1011: 1,14
- 1012: 1,15
+ 847: 1,13
+ 848: 1,14
+ 849: 1,15
- node:
color: '#D381C996'
id: BrickTileWhiteLineE
decals:
- 555: 21,22
- 556: 21,18
- 865: 18,0
- 866: 18,1
- 867: 18,2
- 868: 18,4
+ 498: 21,22
+ 499: 21,18
+ 730: 18,0
+ 731: 18,1
+ 732: 18,2
+ 733: 18,4
- node:
color: '#D4D4D4FF'
id: BrickTileWhiteLineE
decals:
- 1712: 32,13
- 1714: 32,15
+ 1502: 32,13
+ 1504: 32,15
- node:
color: '#EFB34196'
id: BrickTileWhiteLineE
decals:
- 564: 28,19
- 565: 28,20
- 566: 28,21
- 1005: 6,25
- 1006: 6,26
- 1007: 6,27
+ 507: 28,19
+ 508: 28,20
+ 509: 28,21
+ 842: 6,25
+ 843: 6,26
+ 844: 6,27
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
decals:
- 72: 6,39
- 87: 14,39
- 116: 22,39
- 178: 30,39
- 179: 38,39
- 180: 46,39
- 302: 10,35
- 347: 22,35
- 377: 33,35
- 430: 26,31
- 655: 38,1
- 656: 38,3
- 657: 54,1
- 658: 54,2
- 659: 54,3
- 699: 46,1
- 1771: 7,19
- 1772: 7,21
- 1774: 6,20
+ 24: 6,39
+ 39: 14,39
+ 61: 22,39
+ 123: 30,39
+ 124: 38,39
+ 125: 46,39
+ 247: 10,35
+ 292: 22,35
+ 322: 33,35
+ 375: 26,31
+ 598: 38,1
+ 599: 38,3
+ 600: 54,1
+ 601: 54,2
+ 602: 54,3
+ 642: 46,1
+ 1561: 7,19
+ 1562: 7,21
+ 1564: 6,20
- node:
color: '#8BDA8E88'
id: BrickTileWhiteLineN
decals:
- 1865: 1,42
- 1866: 2,42
- 1867: 3,42
- 1868: 4,42
- 1869: 5,42
+ 1624: 1,42
+ 1625: 2,42
+ 1626: 3,42
+ 1627: 4,42
+ 1628: 5,42
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteLineN
decals:
- 1285: 18,21
- 1286: 22,21
- 1292: 6,21
- 1298: 10,21
- 1304: 31,22
- 1305: 32,22
- 1306: 33,22
- 1325: 32,21
- 1333: 1,16
- 1334: 4,16
- 1335: 5,16
+ 1108: 18,21
+ 1109: 22,21
+ 1115: 6,21
+ 1121: 10,21
+ 1127: 31,22
+ 1128: 32,22
+ 1129: 33,22
+ 1148: 32,21
+ 1156: 1,16
+ 1157: 4,16
+ 1158: 5,16
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteLineN
decals:
- 1026: 13,16
- 1027: 12,16
- 1028: 11,16
- 1029: 10,16
- 1030: 9,16
- 1534: 37,10
- 1535: 38,10
- 1536: 39,10
- 1537: 40,10
- 1538: 41,10
- 1539: 42,10
- 1540: 43,10
- 1541: 44,10
- 1542: 45,10
- 1659: 2,4
- 1660: 3,4
- 1661: 4,4
- 1662: 5,4
- 1663: 6,4
- 1664: 7,4
- 1665: 8,4
- 1666: 9,4
- 1667: 10,4
- 1668: 11,4
- 1669: 12,4
- 1670: 13,4
- 1671: 14,4
- 1850: 1,48
- 1851: 2,48
- 1852: 3,48
- 1853: 4,48
- 1854: 5,48
+ 863: 13,16
+ 864: 12,16
+ 865: 11,16
+ 866: 10,16
+ 867: 9,16
+ 1331: 37,10
+ 1332: 38,10
+ 1333: 39,10
+ 1334: 40,10
+ 1335: 41,10
+ 1336: 42,10
+ 1337: 43,10
+ 1338: 44,10
+ 1339: 45,10
+ 1454: 2,4
+ 1455: 3,4
+ 1456: 4,4
+ 1457: 5,4
+ 1458: 6,4
+ 1459: 7,4
+ 1460: 8,4
+ 1461: 9,4
+ 1462: 10,4
+ 1463: 11,4
+ 1464: 12,4
+ 1465: 13,4
+ 1466: 14,4
+ 1609: 1,48
+ 1610: 2,48
+ 1611: 3,48
+ 1612: 4,48
+ 1613: 5,48
- node:
color: '#8BDABAFF'
id: BrickTileWhiteLineN
decals:
- 1061: 11,38
- 1062: 12,38
- 1069: 10,38
+ 898: 11,38
+ 899: 12,38
+ 906: 10,38
- node:
color: '#9FED5896'
id: BrickTileWhiteLineN
decals:
- 841: 21,6
- 842: 19,6
- 843: 13,6
- 844: 15,6
- 1014: 2,12
+ 706: 21,6
+ 707: 19,6
+ 708: 13,6
+ 709: 15,6
+ 851: 2,12
- node:
color: '#D381C996'
id: BrickTileWhiteLineN
decals:
- 96: 12,38
- 97: 11,38
- 348: 21,34
- 349: 20,34
- 350: 19,34
- 351: 13,34
- 553: 18,21
- 554: 22,21
+ 41: 12,38
+ 42: 11,38
+ 293: 21,34
+ 294: 20,34
+ 295: 19,34
+ 296: 13,34
+ 496: 18,21
+ 497: 22,21
- node:
color: '#D4D4D4FF'
id: BrickTileWhiteLineN
decals:
- 1702: 34,12
- 1703: 35,12
- 1704: 36,12
- 1708: 33,12
- 1709: 37,12
- 1716: 37,14
- 1717: 36,14
- 1718: 36,14
- 1719: 34,14
- 1720: 35,14
- 1721: 33,14
+ 1492: 34,12
+ 1493: 35,12
+ 1494: 36,12
+ 1498: 33,12
+ 1499: 37,12
+ 1506: 37,14
+ 1507: 36,14
+ 1508: 36,14
+ 1509: 34,14
+ 1510: 35,14
+ 1511: 33,14
- node:
color: '#EFB34196'
id: BrickTileWhiteLineN
decals:
- 567: 27,22
- 568: 26,22
- 569: 25,22
- 890: 31,9
- 891: 32,9
- 896: 27,9
- 897: 26,9
+ 510: 27,22
+ 511: 26,22
+ 512: 25,22
+ 755: 31,9
+ 756: 32,9
+ 761: 27,9
+ 762: 26,9
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineN
decals:
- 62: 1,40
- 63: 2,40
- 64: 5,40
- 65: 4,40
- 66: 3,40
- 78: 9,40
- 79: 10,40
- 80: 11,40
- 81: 12,40
- 82: 13,40
- 118: 17,40
- 119: 19,40
- 120: 18,40
- 121: 20,40
- 122: 21,40
- 159: 29,40
- 160: 35,40
- 161: 36,40
- 162: 41,40
- 163: 42,40
- 164: 43,40
- 165: 44,40
- 166: 45,40
- 184: 25,40
- 286: 9,36
- 287: 8,36
- 288: 7,36
- 289: 3,36
- 290: 1,36
- 291: 2,36
- 334: 14,36
- 335: 13,36
- 336: 20,36
- 337: 21,36
- 386: 26,36
- 387: 27,36
- 388: 28,36
- 389: 29,36
- 390: 30,36
- 391: 31,36
- 392: 32,36
- 412: 25,32
- 413: 24,32
- 414: 23,32
- 415: 22,32
- 416: 21,32
- 417: 20,32
- 418: 19,32
- 652: 53,4
- 653: 37,4
- 684: 51,2
- 685: 50,2
- 686: 48,2
- 687: 47,2
- 688: 46,2
- 689: 44,2
- 690: 42,2
- 691: 43,2
- 692: 40,2
- 693: 39,2
- 1102: 29,40
- 1103: 25,40
- 1770: 8,18
- 1775: 7,19
- 1776: 9,19
+ 14: 1,40
+ 15: 2,40
+ 16: 5,40
+ 17: 4,40
+ 18: 3,40
+ 30: 9,40
+ 31: 10,40
+ 32: 11,40
+ 33: 12,40
+ 34: 13,40
+ 63: 17,40
+ 64: 19,40
+ 65: 18,40
+ 66: 20,40
+ 67: 21,40
+ 104: 29,40
+ 105: 35,40
+ 106: 36,40
+ 107: 41,40
+ 108: 42,40
+ 109: 43,40
+ 110: 44,40
+ 111: 45,40
+ 129: 25,40
+ 231: 9,36
+ 232: 8,36
+ 233: 7,36
+ 234: 3,36
+ 235: 1,36
+ 236: 2,36
+ 279: 14,36
+ 280: 13,36
+ 281: 20,36
+ 282: 21,36
+ 331: 26,36
+ 332: 27,36
+ 333: 28,36
+ 334: 29,36
+ 335: 30,36
+ 336: 31,36
+ 337: 32,36
+ 357: 25,32
+ 358: 24,32
+ 359: 23,32
+ 360: 22,32
+ 361: 21,32
+ 362: 20,32
+ 363: 19,32
+ 595: 53,4
+ 596: 37,4
+ 627: 51,2
+ 628: 50,2
+ 629: 48,2
+ 630: 47,2
+ 631: 46,2
+ 632: 44,2
+ 633: 42,2
+ 634: 43,2
+ 635: 40,2
+ 636: 39,2
+ 939: 29,40
+ 940: 25,40
+ 1560: 8,18
+ 1565: 7,19
+ 1566: 9,19
- node:
color: '#8BDA8E88'
id: BrickTileWhiteLineS
decals:
- 1875: 5,48
- 1876: 4,48
- 1877: 3,48
- 1878: 2,48
- 1880: 1,48
+ 1634: 5,48
+ 1635: 4,48
+ 1636: 3,48
+ 1637: 2,48
+ 1638: 1,48
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteLineS
decals:
- 1287: 22,19
- 1288: 18,19
- 1295: 6,19
- 1296: 10,19
- 1317: 33,18
- 1318: 32,18
- 1319: 31,18
- 1321: 32,19
- 1337: 1,12
- 1338: 2,12
+ 1110: 22,19
+ 1111: 18,19
+ 1118: 6,19
+ 1119: 10,19
+ 1140: 33,18
+ 1141: 32,18
+ 1142: 31,18
+ 1144: 32,19
+ 1160: 1,12
+ 1161: 2,12
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteLineS
decals:
- 1016: 10,12
- 1017: 11,12
- 1018: 12,12
- 1019: 13,12
- 1020: 9,12
- 1548: 45,6
- 1549: 44,6
- 1550: 43,6
- 1551: 42,6
- 1552: 41,6
- 1553: 40,6
- 1554: 39,6
- 1555: 38,6
- 1556: 37,6
- 1683: 14,0
- 1684: 13,0
- 1685: 12,0
- 1686: 11,0
- 1687: 10,0
- 1688: 9,0
- 1689: 7,0
- 1690: 7,0
- 1691: 8,0
- 1692: 6,0
- 1693: 5,0
- 1694: 4,0
- 1695: 3,0
- 1696: 2,0
- 1839: 1,42
- 1840: 2,42
- 1841: 4,42
- 1842: 4,42
- 1843: 3,42
- 1844: 5,42
+ 853: 10,12
+ 854: 11,12
+ 855: 12,12
+ 856: 13,12
+ 857: 9,12
+ 1345: 45,6
+ 1346: 44,6
+ 1347: 43,6
+ 1348: 42,6
+ 1349: 41,6
+ 1350: 40,6
+ 1351: 39,6
+ 1352: 38,6
+ 1353: 37,6
+ 1477: 14,0
+ 1478: 13,0
+ 1479: 12,0
+ 1480: 11,0
+ 1481: 10,0
+ 1482: 9,0
+ 1483: 7,0
+ 1484: 7,0
+ 1485: 8,0
+ 1486: 6,0
+ 1487: 5,0
+ 1488: 4,0
+ 1489: 3,0
+ 1490: 2,0
+ 1598: 1,42
+ 1599: 2,42
+ 1600: 4,42
+ 1601: 4,42
+ 1602: 3,42
+ 1603: 5,42
- node:
color: '#8BDABAFF'
id: BrickTileWhiteLineS
decals:
- 1063: 10,40
- 1064: 11,40
- 1065: 12,40
+ 900: 10,40
+ 901: 11,40
+ 902: 12,40
- node:
color: '#9FED5896'
id: BrickTileWhiteLineS
decals:
- 837: 21,10
- 838: 19,10
- 839: 15,10
- 840: 13,10
- 1013: 4,16
+ 702: 21,10
+ 703: 19,10
+ 704: 15,10
+ 705: 13,10
+ 850: 4,16
- node:
color: '#D381C996'
id: BrickTileWhiteLineS
decals:
- 98: 12,40
- 99: 11,40
- 100: 10,40
- 352: 21,36
- 353: 20,36
- 354: 14,36
- 355: 13,36
- 557: 22,19
- 558: 18,19
+ 43: 12,40
+ 44: 11,40
+ 45: 10,40
+ 297: 21,36
+ 298: 20,36
+ 299: 14,36
+ 300: 13,36
+ 500: 22,19
+ 501: 18,19
- node:
color: '#D4D4D4FF'
id: BrickTileWhiteLineS
decals:
- 1705: 34,14
- 1706: 35,14
- 1707: 36,14
- 1710: 37,14
- 1711: 33,14
- 1722: 33,16
- 1723: 34,16
- 1724: 34,16
- 1725: 35,16
- 1726: 36,16
- 1727: 37,16
+ 1495: 34,14
+ 1496: 35,14
+ 1497: 36,14
+ 1500: 37,14
+ 1501: 33,14
+ 1512: 33,16
+ 1513: 34,16
+ 1514: 34,16
+ 1515: 35,16
+ 1516: 36,16
+ 1517: 37,16
- node:
color: '#EFB34196'
id: BrickTileWhiteLineS
decals:
- 575: 25,18
- 576: 26,18
- 577: 27,18
- 892: 32,7
- 893: 31,7
- 894: 27,7
- 895: 26,7
+ 518: 25,18
+ 519: 26,18
+ 520: 27,18
+ 757: 32,7
+ 758: 31,7
+ 759: 27,7
+ 760: 26,7
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineS
decals:
- 67: 5,38
- 68: 4,38
- 69: 3,38
- 70: 2,38
- 71: 1,38
- 83: 13,38
- 84: 12,38
- 85: 11,38
- 86: 9,38
- 111: 21,38
- 112: 20,38
- 113: 19,38
- 114: 18,38
- 115: 17,38
- 167: 45,38
- 168: 44,38
- 169: 43,38
- 170: 42,38
- 171: 41,38
- 172: 37,38
- 173: 34,38
- 174: 35,38
- 175: 33,38
- 176: 29,38
- 177: 25,38
- 292: 9,34
- 293: 7,34
- 294: 8,34
- 295: 3,34
- 296: 2,34
- 297: 1,34
- 340: 21,34
- 341: 20,34
- 342: 19,34
- 343: 13,34
- 379: 26,34
- 380: 27,34
- 381: 28,34
- 382: 29,34
- 383: 30,34
- 384: 31,34
- 385: 32,34
- 423: 19,30
- 424: 20,30
- 425: 21,30
- 426: 22,30
- 427: 23,30
- 428: 24,30
- 429: 25,30
- 654: 37,0
- 660: 53,0
- 698: 45,0
- 1070: 10,38
- 1104: 25,38
- 1105: 29,38
- 1773: 7,21
- 1779: 9,21
- 1780: 8,22
+ 19: 5,38
+ 20: 4,38
+ 21: 3,38
+ 22: 2,38
+ 23: 1,38
+ 35: 13,38
+ 36: 12,38
+ 37: 11,38
+ 38: 9,38
+ 56: 21,38
+ 57: 20,38
+ 58: 19,38
+ 59: 18,38
+ 60: 17,38
+ 112: 45,38
+ 113: 44,38
+ 114: 43,38
+ 115: 42,38
+ 116: 41,38
+ 117: 37,38
+ 118: 34,38
+ 119: 35,38
+ 120: 33,38
+ 121: 29,38
+ 122: 25,38
+ 237: 9,34
+ 238: 7,34
+ 239: 8,34
+ 240: 3,34
+ 241: 2,34
+ 242: 1,34
+ 285: 21,34
+ 286: 20,34
+ 287: 19,34
+ 288: 13,34
+ 324: 26,34
+ 325: 27,34
+ 326: 28,34
+ 327: 29,34
+ 328: 30,34
+ 329: 31,34
+ 330: 32,34
+ 368: 19,30
+ 369: 20,30
+ 370: 21,30
+ 371: 22,30
+ 372: 23,30
+ 373: 24,30
+ 374: 25,30
+ 597: 37,0
+ 603: 53,0
+ 641: 45,0
+ 907: 10,38
+ 941: 25,38
+ 942: 29,38
+ 1563: 7,21
+ 1569: 9,21
+ 1570: 8,22
- node:
color: '#8BDA8E88'
id: BrickTileWhiteLineW
decals:
- 1870: 6,43
- 1871: 6,44
- 1872: 6,45
- 1873: 6,46
- 1874: 6,47
+ 1629: 6,43
+ 1630: 6,44
+ 1631: 6,45
+ 1632: 6,46
+ 1633: 6,47
- node:
color: '#8BDA8EB4'
id: BrickTileWhiteLineW
decals:
- 1281: 19,18
- 1282: 19,22
- 1293: 7,22
- 1294: 7,18
- 1308: 30,21
- 1309: 30,20
- 1310: 30,19
- 1328: 31,20
- 1329: 0,13
- 1330: 0,14
- 1331: 0,15
+ 1104: 19,18
+ 1105: 19,22
+ 1116: 7,22
+ 1117: 7,18
+ 1131: 30,21
+ 1132: 30,20
+ 1133: 30,19
+ 1151: 31,20
+ 1152: 0,13
+ 1153: 0,14
+ 1154: 0,15
- node:
color: '#8BDA8EFF'
id: BrickTileWhiteLineW
decals:
- 1032: 8,14
- 1033: 8,15
- 1034: 8,13
- 1558: 36,7
- 1559: 36,8
- 1560: 36,9
- 1622: 28,26
- 1697: 0,2
- 1736: 32,14
- 1737: 32,13
- 1738: 32,15
- 1845: 0,43
- 1846: 0,44
- 1847: 0,45
- 1848: 0,46
- 1849: 0,47
+ 869: 8,14
+ 870: 8,15
+ 871: 8,13
+ 1355: 36,7
+ 1356: 36,8
+ 1357: 36,9
+ 1419: 28,26
+ 1491: 0,2
+ 1526: 32,14
+ 1527: 32,13
+ 1528: 32,15
+ 1604: 0,43
+ 1605: 0,44
+ 1606: 0,45
+ 1607: 0,46
+ 1608: 0,47
- node:
color: '#D381C996'
id: BrickTileWhiteLineW
decals:
- 559: 19,18
- 560: 19,22
- 869: 34,0
- 870: 34,1
- 871: 34,2
- 872: 34,4
+ 502: 19,18
+ 503: 19,22
+ 734: 34,0
+ 735: 34,1
+ 736: 34,2
+ 737: 34,4
- node:
color: '#D4D4D4FF'
id: BrickTileWhiteLineW
decals:
- 1713: 38,13
- 1715: 38,15
+ 1503: 38,13
+ 1505: 38,15
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
decals:
- 571: 24,21
- 572: 24,20
- 573: 24,19
- 1000: 4,27
- 1001: 4,26
- 1002: 4,25
+ 514: 24,21
+ 515: 24,20
+ 516: 24,19
+ 837: 4,27
+ 838: 4,26
+ 839: 4,25
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
decals:
- 73: 0,39
- 88: 8,39
- 117: 16,39
- 181: 40,39
- 182: 32,39
- 183: 24,39
- 303: 0,35
- 346: 12,35
- 378: 25,35
- 431: 18,31
- 661: 52,1
- 662: 52,3
- 663: 36,1
- 664: 36,2
- 665: 36,3
- 700: 44,1
- 1777: 9,19
- 1778: 10,20
- 1781: 9,21
+ 25: 0,39
+ 40: 8,39
+ 62: 16,39
+ 126: 40,39
+ 127: 32,39
+ 128: 24,39
+ 248: 0,35
+ 291: 12,35
+ 323: 25,35
+ 376: 18,31
+ 604: 52,1
+ 605: 52,3
+ 606: 36,1
+ 607: 36,2
+ 608: 36,3
+ 643: 44,1
+ 1567: 9,19
+ 1568: 10,20
+ 1571: 9,21
- node:
cleanable: True
color: '#FFFFFFFF'
id: Caution
decals:
- 470: 11,42
+ 415: 11,42
- node:
color: '#8BDABAFF'
id: CheckerNESW
decals:
- 1074: 17,39
- 1075: 18,39
- 1076: 19,39
- 1077: 20,39
- 1078: 21,39
- 1250: 20,20
- 1251: 21,20
- 1252: 20,21
- 1253: 20,19
- 1254: 19,20
+ 911: 17,39
+ 912: 18,39
+ 913: 19,39
+ 914: 20,39
+ 915: 21,39
+ 1073: 20,20
+ 1074: 21,20
+ 1075: 20,21
+ 1076: 20,19
+ 1077: 19,20
- node:
color: '#D381C996'
id: CheckerNESW
decals:
- 123: 17,39
- 124: 18,39
- 125: 19,39
- 126: 20,39
- 127: 21,39
- 393: 31,35
- 394: 30,35
- 395: 29,35
- 396: 28,35
- 397: 27,35
- 547: 19,20
- 548: 20,21
- 549: 20,20
- 550: 21,20
- 551: 20,19
+ 68: 17,39
+ 69: 18,39
+ 70: 19,39
+ 71: 20,39
+ 72: 21,39
+ 338: 31,35
+ 339: 30,35
+ 340: 29,35
+ 341: 28,35
+ 342: 27,35
+ 490: 19,20
+ 491: 20,21
+ 492: 20,20
+ 493: 21,20
+ 494: 20,19
- node:
color: '#EFB34196'
id: CheckerNESW
decals:
- 237: 8,48
+ 182: 8,48
- node:
color: '#8BDABAFF'
id: CheckerNWSE
decals:
- 1046: 3,39
- 1047: 2,39
- 1048: 1,39
- 1049: 4,39
- 1050: 5,39
- 1115: 45,39
- 1116: 44,39
- 1117: 43,39
- 1118: 42,39
- 1119: 41,39
+ 883: 3,39
+ 884: 2,39
+ 885: 1,39
+ 886: 4,39
+ 887: 5,39
+ 952: 45,39
+ 953: 44,39
+ 954: 43,39
+ 955: 42,39
+ 956: 41,39
- node:
color: '#D381C996'
id: CheckerNWSE
decals:
- 216: 45,39
- 217: 44,39
- 218: 43,39
- 219: 42,39
- 220: 41,39
- 304: 1,35
- 305: 2,35
- 306: 3,35
- 307: 7,35
- 308: 8,35
- 309: 9,35
- 451: 16,30
- 452: 16,31
- 453: 16,32
- 454: 15,32
- 455: 15,31
- 456: 15,30
- 457: 14,30
- 458: 14,31
- 459: 14,32
- 666: 37,1
- 667: 37,2
- 668: 37,3
- 669: 53,1
- 670: 53,2
- 671: 53,3
+ 161: 45,39
+ 162: 44,39
+ 163: 43,39
+ 164: 42,39
+ 165: 41,39
+ 249: 1,35
+ 250: 2,35
+ 251: 3,35
+ 252: 7,35
+ 253: 8,35
+ 254: 9,35
+ 396: 16,30
+ 397: 16,31
+ 398: 16,32
+ 399: 15,32
+ 400: 15,31
+ 401: 15,30
+ 402: 14,30
+ 403: 14,31
+ 404: 14,32
+ 609: 37,1
+ 610: 37,2
+ 611: 37,3
+ 612: 53,1
+ 613: 53,2
+ 614: 53,3
- node:
color: '#EFB34196'
id: CheckerNWSE
decals:
- 238: 14,48
- 993: 5,27
- 994: 5,26
- 995: 5,25
+ 183: 14,48
+ 830: 5,27
+ 831: 5,26
+ 832: 5,25
- node:
color: '#FFFFFFFF'
id: Delivery
decals:
- 266: 13,47
- 267: 11,47
- 268: 9,47
- 269: 12,43
- 270: 11,43
- 271: 10,43
- 486: 4,22
- 487: 3,22
- 601: 11,13
- 859: 24,2
- 860: 20,2
- 886: 33,7
- 887: 33,9
- 888: 25,7
- 889: 25,9
- 938: 40,16
- 939: 41,15
- 940: 43,16
+ 211: 13,47
+ 212: 11,47
+ 213: 9,47
+ 214: 12,43
+ 215: 11,43
+ 216: 10,43
+ 431: 4,22
+ 432: 3,22
+ 544: 11,13
+ 724: 24,2
+ 725: 20,2
+ 751: 33,7
+ 752: 33,9
+ 753: 25,7
+ 754: 25,9
+ 775: 40,16
+ 776: 41,15
+ 777: 43,16
- node:
color: '#8BDB9BFF'
id: DeliveryGreyscale
decals:
- 1531: 34,35
- 1532: 24,35
+ 1328: 34,35
+ 1329: 24,35
- node:
color: '#79DA8EA1'
id: DiagonalCheckerBOverlay
decals:
- 964: 20,24
- 965: 20,25
- 966: 20,26
- 967: 20,27
- 968: 20,28
- 969: 21,28
- 970: 22,28
- 971: 21,27
- 972: 21,26
- 973: 21,25
- 974: 21,24
- 975: 22,24
+ 801: 20,24
+ 802: 20,25
+ 803: 20,26
+ 804: 20,27
+ 805: 20,28
+ 806: 21,28
+ 807: 22,28
+ 808: 21,27
+ 809: 21,26
+ 810: 21,25
+ 811: 21,24
+ 812: 22,24
- node:
color: '#FFFFFFFF'
id: Dirt
decals:
- 1159: 16,48
- 1160: 16,48
- 1161: 17,48
- 1162: 16,47
- 1163: 16,46
- 1164: 16,45
- 1165: 17,44
- 1166: 17,42
- 1167: 19,42
- 1168: 21,42
- 1169: 21,47
- 1170: 21,47
- 1171: 21,47
+ 982: 16,48
+ 983: 16,48
+ 984: 17,48
+ 985: 16,47
+ 986: 16,46
+ 987: 16,45
+ 988: 17,44
+ 989: 17,42
+ 990: 19,42
+ 991: 21,42
+ 992: 21,47
+ 993: 21,47
+ 994: 21,47
- node:
cleanable: True
color: '#FFFFFFFF'
id: Dirt
decals:
- 211: 38,38
- 212: 38,40
- 213: 37,40
- 214: 34,40
- 215: 36,38
- 368: 15,34
- 369: 19,35
- 370: 17,35
- 371: 16,34
- 372: 18,36
- 934: 44,12
- 935: 44,15
- 936: 42,16
- 937: 46,14
+ 156: 38,38
+ 157: 38,40
+ 158: 37,40
+ 159: 34,40
+ 160: 36,38
+ 313: 15,34
+ 314: 19,35
+ 315: 17,35
+ 316: 16,34
+ 317: 18,36
+ 771: 44,12
+ 772: 44,15
+ 773: 42,16
+ 774: 46,14
- node:
color: '#FFFFFFFF'
id: DirtLight
decals:
- 1172: 20,47
- 1173: 20,47
- 1174: 16,48
- 1175: 16,46
- 1176: 16,45
+ 995: 20,47
+ 996: 20,47
+ 997: 16,48
+ 998: 16,46
+ 999: 16,45
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtLight
decals:
- 138: 17,38
- 139: 17,39
- 140: 18,39
- 141: 21,38
- 143: 16,40
- 144: 20,39
- 145: 13,38
- 146: 8,40
- 147: 6,39
- 148: 22,40
- 203: 29,39
- 204: 29,40
- 205: 24,39
- 206: 30,38
- 207: 33,39
- 208: 37,39
- 209: 37,38
- 210: 38,39
- 273: 10,44
- 274: 9,45
- 275: 8,46
- 276: 8,47
- 277: 13,48
- 278: 14,44
- 279: 13,42
- 281: 10,42
- 283: 8,44
- 284: 13,45
- 356: 22,35
- 357: 22,34
- 358: 21,34
- 359: 12,36
- 360: 13,36
- 361: 12,35
- 362: 13,34
- 364: 12,34
- 365: 19,34
- 366: 15,34
- 367: 19,35
- 448: 8,31
- 449: 10,32
- 450: 11,32
- 460: 15,31
- 461: 16,30
- 462: 14,31
- 463: 15,32
- 464: 19,31
- 465: 20,30
- 466: 21,30
- 467: 24,30
- 468: 26,31
- 469: 8,28
- 584: 21,18
- 585: 22,19
- 586: 21,19
- 587: 19,18
- 588: 18,21
- 589: 25,18
- 590: 24,19
- 591: 28,20
- 592: 26,22
- 593: 14,22
- 594: 15,18
- 595: 16,20
- 596: 4,20
- 597: 2,22
- 598: 2,18
- 599: 0,21
- 600: 0,19
- 903: 30,15
- 905: 28,15
- 906: 27,14
- 928: 33,12
+ 83: 17,38
+ 84: 17,39
+ 85: 18,39
+ 86: 21,38
+ 88: 16,40
+ 89: 20,39
+ 90: 13,38
+ 91: 8,40
+ 92: 6,39
+ 93: 22,40
+ 148: 29,39
+ 149: 29,40
+ 150: 24,39
+ 151: 30,38
+ 152: 33,39
+ 153: 37,39
+ 154: 37,38
+ 155: 38,39
+ 218: 10,44
+ 219: 9,45
+ 220: 8,46
+ 221: 8,47
+ 222: 13,48
+ 223: 14,44
+ 224: 13,42
+ 226: 10,42
+ 228: 8,44
+ 229: 13,45
+ 301: 22,35
+ 302: 22,34
+ 303: 21,34
+ 304: 12,36
+ 305: 13,36
+ 306: 12,35
+ 307: 13,34
+ 309: 12,34
+ 310: 19,34
+ 311: 15,34
+ 312: 19,35
+ 393: 8,31
+ 394: 10,32
+ 395: 11,32
+ 405: 15,31
+ 406: 16,30
+ 407: 14,31
+ 408: 15,32
+ 409: 19,31
+ 410: 20,30
+ 411: 21,30
+ 412: 24,30
+ 413: 26,31
+ 414: 8,28
+ 527: 21,18
+ 528: 22,19
+ 529: 21,19
+ 530: 19,18
+ 531: 18,21
+ 532: 25,18
+ 533: 24,19
+ 534: 28,20
+ 535: 26,22
+ 536: 14,22
+ 537: 15,18
+ 538: 16,20
+ 539: 4,20
+ 540: 2,22
+ 541: 2,18
+ 542: 0,21
+ 543: 0,19
+ 767: 30,15
+ 768: 28,15
+ 769: 27,14
+ 770: 33,12
- node:
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 1177: 16,42
- 1178: 16,42
- 1179: 18,42
- 1180: 20,43
- 1181: 22,44
- 1182: 18,48
- 1183: 22,47
- 1184: 16,45
- 1185: 19,42
- 1186: 20,43
+ 1000: 16,42
+ 1001: 16,42
+ 1002: 18,42
+ 1003: 20,43
+ 1004: 22,44
+ 1005: 18,48
+ 1006: 22,47
+ 1007: 16,45
+ 1008: 19,42
+ 1009: 20,43
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 142: 17,39
- 280: 11,42
- 282: 8,45
- 363: 12,35
+ 87: 17,39
+ 225: 11,42
+ 227: 8,45
+ 308: 12,35
- node:
color: '#8BDABA82'
id: FullTileOverlayGreyscale
decals:
- 1089: 27,38
- 1090: 27,39
- 1091: 27,40
+ 926: 27,38
+ 927: 27,39
+ 928: 27,40
- node:
color: '#8BDABAFF'
id: FullTileOverlayGreyscale
decals:
- 1106: 33,39
- 1107: 36,39
- 1108: 37,39
+ 943: 33,39
+ 944: 36,39
+ 945: 37,39
- node:
color: '#9FED5896'
id: FullTileOverlayGreyscale
decals:
- 825: 21,7
- 826: 21,8
- 827: 21,9
- 828: 19,7
- 829: 19,8
- 830: 19,9
- 831: 15,7
- 832: 15,8
- 833: 15,9
- 834: 13,7
- 835: 13,8
- 836: 13,9
+ 690: 21,7
+ 691: 21,8
+ 692: 21,9
+ 693: 19,7
+ 694: 19,8
+ 695: 19,9
+ 696: 15,7
+ 697: 15,8
+ 698: 15,9
+ 699: 13,7
+ 700: 13,8
+ 701: 13,9
- node:
color: '#D381C996'
id: FullTileOverlayGreyscale
decals:
- 194: 36,39
- 195: 33,39
- 196: 37,39
+ 139: 36,39
+ 140: 33,39
+ 141: 37,39
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale
decals:
- 900: 28,16
- 901: 29,16
- 1219: 27,16
- 1220: 26,16
- 1221: 25,16
+ 764: 28,16
+ 765: 29,16
+ 1042: 27,16
+ 1043: 26,16
+ 1044: 25,16
- node:
color: '#8BDA8E9B'
id: HalfTileOverlayGreyscale
decals:
- 1367: 30,2
- 1368: 29,2
- 1369: 31,2
- 1370: 27,2
- 1371: 26,2
- 1372: 22,2
- 1373: 33,2
+ 1190: 30,2
+ 1191: 29,2
+ 1192: 31,2
+ 1193: 27,2
+ 1194: 26,2
+ 1195: 22,2
+ 1196: 33,2
- node:
color: '#8BDA8EB4'
id: HalfTileOverlayGreyscale
decals:
- 1272: 13,22
- 1273: 15,22
- 1274: 14,22
+ 1095: 13,22
+ 1096: 15,22
+ 1097: 14,22
- node:
color: '#8BDA8EFF'
id: HalfTileOverlayGreyscale
decals:
- 1356: 24,4
- 1357: 23,4
- 1358: 22,4
- 1359: 21,4
- 1360: 20,4
- 1361: 27,4
- 1362: 28,4
- 1363: 29,4
- 1364: 30,4
- 1365: 31,4
- 1366: 32,4
+ 1179: 24,4
+ 1180: 23,4
+ 1181: 22,4
+ 1182: 21,4
+ 1183: 20,4
+ 1184: 27,4
+ 1185: 28,4
+ 1186: 29,4
+ 1187: 30,4
+ 1188: 31,4
+ 1189: 32,4
- node:
color: '#8BDABAFF'
id: HalfTileOverlayGreyscale
decals:
- 1109: 33,38
- 1110: 34,38
- 1111: 35,38
- 1114: 37,38
+ 946: 33,38
+ 947: 34,38
+ 948: 35,38
+ 951: 37,38
- node:
color: '#8BDB8E99'
id: HalfTileOverlayGreyscale
decals:
- 1374: 25,4
- 1375: 25,4
+ 1197: 25,4
+ 1198: 25,4
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale
decals:
- 199: 37,38
- 200: 35,38
- 201: 34,38
- 202: 33,38
- 496: 13,22
- 497: 14,22
- 498: 15,22
- 875: 27,4
- 876: 28,4
- 877: 24,4
- 878: 29,4
- 879: 30,4
- 880: 31,4
- 881: 32,4
- 882: 23,4
- 883: 22,4
- 884: 21,4
- 885: 20,4
+ 144: 37,38
+ 145: 35,38
+ 146: 34,38
+ 147: 33,38
+ 441: 13,22
+ 442: 14,22
+ 443: 15,22
+ 740: 27,4
+ 741: 28,4
+ 742: 24,4
+ 743: 29,4
+ 744: 30,4
+ 745: 31,4
+ 746: 32,4
+ 747: 23,4
+ 748: 22,4
+ 749: 21,4
+ 750: 20,4
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale180
decals:
- 1217: 29,12
- 1218: 28,12
+ 1040: 29,12
+ 1041: 28,12
- node:
color: '#8BDA8EB4'
id: HalfTileOverlayGreyscale180
decals:
- 1275: 15,18
- 1276: 14,18
- 1277: 13,18
+ 1098: 15,18
+ 1099: 14,18
+ 1100: 13,18
- node:
color: '#8BDA8EFF'
id: HalfTileOverlayGreyscale180
decals:
- 1341: 19,3
- 1342: 20,3
- 1343: 21,3
- 1344: 22,3
- 1345: 24,3
- 1346: 23,3
- 1347: 25,3
- 1348: 26,3
- 1349: 27,3
- 1350: 28,3
- 1351: 29,3
- 1352: 30,3
- 1353: 31,3
- 1354: 32,3
- 1355: 33,3
+ 1164: 19,3
+ 1165: 20,3
+ 1166: 21,3
+ 1167: 22,3
+ 1168: 24,3
+ 1169: 23,3
+ 1170: 25,3
+ 1171: 26,3
+ 1172: 27,3
+ 1173: 28,3
+ 1174: 29,3
+ 1175: 30,3
+ 1176: 31,3
+ 1177: 32,3
+ 1178: 33,3
- node:
color: '#8BDABAFF'
id: HalfTileOverlayGreyscale180
decals:
- 1112: 35,40
- 1113: 36,40
+ 949: 35,40
+ 950: 36,40
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale180
decals:
- 197: 36,40
- 198: 35,40
- 493: 13,18
- 494: 14,18
- 495: 15,18
- 845: 19,3
- 846: 20,3
- 847: 21,3
- 848: 22,3
- 849: 23,3
- 850: 24,3
- 851: 26,3
- 852: 25,3
- 853: 28,3
- 854: 29,3
- 855: 30,3
- 856: 31,3
- 857: 32,3
- 858: 33,3
- 1340: 27,3
+ 142: 36,40
+ 143: 35,40
+ 438: 13,18
+ 439: 14,18
+ 440: 15,18
+ 710: 19,3
+ 711: 20,3
+ 712: 21,3
+ 713: 22,3
+ 714: 23,3
+ 715: 24,3
+ 716: 26,3
+ 717: 25,3
+ 718: 28,3
+ 719: 29,3
+ 720: 30,3
+ 721: 31,3
+ 722: 32,3
+ 723: 33,3
+ 1163: 27,3
- node:
color: '#4B709CFF'
id: HalfTileOverlayGreyscale270
decals:
- 1261: 15,20
+ 1084: 15,20
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale270
decals:
- 1222: 24,15
+ 1045: 24,15
- node:
color: '#8BDA8EB4'
id: HalfTileOverlayGreyscale270
decals:
- 1269: 12,19
- 1270: 12,20
- 1271: 12,21
+ 1092: 12,19
+ 1093: 12,20
+ 1094: 12,21
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale270
decals:
- 502: 12,19
- 503: 12,20
- 504: 12,21
+ 447: 12,19
+ 448: 12,20
+ 449: 12,21
- node:
color: '#4B709CFF'
id: HalfTileOverlayGreyscale90
decals:
- 1256: 13,20
+ 1079: 13,20
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale90
decals:
- 902: 30,15
- 1215: 30,14
- 1216: 30,13
+ 766: 30,15
+ 1038: 30,14
+ 1039: 30,13
- node:
color: '#8BDA8EB4'
id: HalfTileOverlayGreyscale90
decals:
- 1266: 16,19
- 1267: 16,20
- 1268: 16,21
+ 1089: 16,19
+ 1090: 16,20
+ 1091: 16,21
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale90
decals:
- 499: 16,19
- 500: 16,20
- 501: 16,21
+ 444: 16,19
+ 445: 16,20
+ 446: 16,21
- node:
color: '#8BDA8EFF'
id: MiniTileWhiteCornerNe
decals:
- 954: 13,28
+ 791: 13,28
- node:
color: '#D381C996'
id: MiniTileWhiteCornerNe
decals:
- 474: 13,28
+ 419: 13,28
- node:
color: '#8BDA8EFF'
id: MiniTileWhiteCornerNw
decals:
- 955: 12,28
+ 792: 12,28
- node:
color: '#D381C996'
id: MiniTileWhiteCornerNw
decals:
- 475: 12,28
+ 420: 12,28
- node:
color: '#8BDA8EFF'
id: MiniTileWhiteCornerSe
decals:
- 950: 13,24
+ 787: 13,24
- node:
color: '#D381C996'
id: MiniTileWhiteCornerSe
decals:
- 479: 13,24
+ 424: 13,24
- node:
color: '#8BDA8EFF'
id: MiniTileWhiteCornerSw
decals:
- 958: 12,24
+ 795: 12,24
- node:
color: '#D381C996'
id: MiniTileWhiteCornerSw
decals:
- 478: 12,24
+ 423: 12,24
- node:
color: '#8BDA8EFF'
id: MiniTileWhiteLineE
decals:
- 949: 13,24
- 951: 13,25
- 952: 13,25
- 953: 13,26
+ 786: 13,24
+ 788: 13,25
+ 789: 13,25
+ 790: 13,26
- node:
color: '#8BDABAFF'
id: MiniTileWhiteLineE
decals:
- 1098: 25,38
- 1100: 25,40
+ 935: 25,38
+ 937: 25,40
- node:
color: '#D381C996'
id: MiniTileWhiteLineE
decals:
- 472: 13,25
- 473: 13,26
+ 417: 13,25
+ 418: 13,26
- node:
color: '#8BDA8EFF'
id: MiniTileWhiteLineW
decals:
- 956: 12,27
- 957: 12,25
+ 793: 12,27
+ 794: 12,25
- node:
color: '#8BDABAFF'
id: MiniTileWhiteLineW
decals:
- 1099: 29,38
- 1101: 29,40
+ 936: 29,38
+ 938: 29,40
- node:
color: '#D381C996'
id: MiniTileWhiteLineW
decals:
- 476: 12,27
- 477: 12,25
+ 421: 12,27
+ 422: 12,25
- node:
color: '#79DA8E6F'
id: MonoOverlay
decals:
- 959: 14,24
- 960: 14,25
- 961: 14,26
- 962: 14,27
- 963: 14,28
+ 796: 14,24
+ 797: 14,25
+ 798: 14,26
+ 799: 14,27
+ 800: 14,28
- node:
color: '#8BDB9BFF'
id: MonoOverlay
decals:
- 1474: 4,34
- 1475: 4,36
- 1476: 6,36
- 1477: 6,34
+ 1271: 4,34
+ 1272: 4,36
+ 1273: 6,36
+ 1274: 6,34
- node:
color: '#D381C996'
id: MonoOverlay
decals:
- 322: 4,34
- 323: 6,34
- 324: 4,36
- 325: 6,36
+ 267: 4,34
+ 268: 6,34
+ 269: 4,36
+ 270: 6,36
- node:
color: '#4B709CFF'
id: QuarterTileOverlayGreyscale
decals:
- 1260: 15,19
- 1262: 14,20
+ 1083: 15,19
+ 1085: 14,20
- node:
color: '#8BDABAFF'
id: QuarterTileOverlayGreyscale
decals:
- 1056: 1,38
- 1057: 2,38
- 1058: 3,38
- 1059: 4,38
- 1060: 5,38
- 1120: 41,38
- 1121: 42,38
- 1122: 42,38
- 1123: 43,38
- 1124: 44,38
- 1125: 45,38
- 1131: 8,44
- 1132: 8,45
- 1133: 8,46
- 1134: 8,47
- 1135: 8,48
- 1136: 9,48
- 1137: 10,48
- 1226: 16,16
- 1227: 17,16
- 1228: 18,16
- 1229: 19,16
- 1230: 20,16
- 1231: 21,16
- 1232: 22,16
- 1233: 16,15
- 1234: 16,14
- 1235: 16,13
- 1236: 16,12
+ 893: 1,38
+ 894: 2,38
+ 895: 3,38
+ 896: 4,38
+ 897: 5,38
+ 957: 41,38
+ 958: 42,38
+ 959: 42,38
+ 960: 43,38
+ 961: 44,38
+ 962: 45,38
+ 968: 8,44
+ 969: 8,45
+ 970: 8,46
+ 971: 8,47
+ 972: 8,48
+ 973: 9,48
+ 974: 10,48
+ 1049: 16,16
+ 1050: 17,16
+ 1051: 18,16
+ 1052: 19,16
+ 1053: 20,16
+ 1054: 21,16
+ 1055: 22,16
+ 1056: 16,15
+ 1057: 16,14
+ 1058: 16,13
+ 1059: 16,12
- node:
color: '#8BDB9BFF'
id: QuarterTileOverlayGreyscale
decals:
- 1422: 53,1
- 1423: 53,2
- 1424: 53,3
- 1425: 54,3
- 1426: 54,2
- 1427: 54,1
- 1428: 38,2
- 1429: 38,1
- 1430: 38,3
- 1431: 37,3
- 1432: 37,2
- 1433: 37,1
- 1465: 16,32
- 1466: 16,31
- 1467: 16,30
- 1468: 15,30
- 1469: 15,31
- 1470: 15,32
- 1471: 14,32
- 1472: 14,31
- 1473: 14,30
- 1478: 1,35
- 1479: 2,35
- 1480: 3,35
- 1481: 3,34
- 1482: 2,34
- 1483: 1,34
- 1484: 7,34
- 1485: 7,35
- 1486: 8,35
- 1487: 8,34
- 1488: 9,34
- 1489: 9,35
+ 1219: 53,1
+ 1220: 53,2
+ 1221: 53,3
+ 1222: 54,3
+ 1223: 54,2
+ 1224: 54,1
+ 1225: 38,2
+ 1226: 38,1
+ 1227: 38,3
+ 1228: 37,3
+ 1229: 37,2
+ 1230: 37,1
+ 1262: 16,32
+ 1263: 16,31
+ 1264: 16,30
+ 1265: 15,30
+ 1266: 15,31
+ 1267: 15,32
+ 1268: 14,32
+ 1269: 14,31
+ 1270: 14,30
+ 1275: 1,35
+ 1276: 2,35
+ 1277: 3,35
+ 1278: 3,34
+ 1279: 2,34
+ 1280: 1,34
+ 1281: 7,34
+ 1282: 7,35
+ 1283: 8,35
+ 1284: 8,34
+ 1285: 9,34
+ 1286: 9,35
- node:
color: '#9EDA8E28'
id: QuarterTileOverlayGreyscale
decals:
- 1813: 4,45
- 1816: 4,44
- 1817: 4,46
- 1820: 3,45
- 1826: 2,46
+ 1572: 4,45
+ 1575: 4,44
+ 1576: 4,46
+ 1579: 3,45
+ 1585: 2,46
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale
decals:
- 53: 5,38
- 54: 4,38
- 55: 3,38
- 56: 2,38
- 57: 1,38
- 221: 45,38
- 222: 44,38
- 223: 43,38
- 224: 42,38
- 225: 41,38
- 247: 8,44
- 248: 8,45
- 249: 8,46
- 250: 8,47
- 251: 8,48
- 252: 9,48
- 253: 10,48
- 316: 9,34
- 317: 8,34
- 318: 7,34
- 319: 3,34
- 320: 2,34
- 321: 1,34
- 627: 22,16
- 628: 21,16
- 629: 20,16
- 630: 19,16
- 631: 18,16
- 632: 17,16
- 633: 16,16
- 634: 16,15
- 635: 16,14
- 636: 16,13
- 637: 16,12
- 672: 38,1
- 673: 38,3
- 679: 54,1
- 680: 54,2
- 681: 54,3
- 682: 38,2
+ 5: 5,38
+ 6: 4,38
+ 7: 3,38
+ 8: 2,38
+ 9: 1,38
+ 166: 45,38
+ 167: 44,38
+ 168: 43,38
+ 169: 42,38
+ 170: 41,38
+ 192: 8,44
+ 193: 8,45
+ 194: 8,46
+ 195: 8,47
+ 196: 8,48
+ 197: 9,48
+ 198: 10,48
+ 261: 9,34
+ 262: 8,34
+ 263: 7,34
+ 264: 3,34
+ 265: 2,34
+ 266: 1,34
+ 570: 22,16
+ 571: 21,16
+ 572: 20,16
+ 573: 19,16
+ 574: 18,16
+ 575: 17,16
+ 576: 16,16
+ 577: 16,15
+ 578: 16,14
+ 579: 16,13
+ 580: 16,12
+ 615: 38,1
+ 616: 38,3
+ 622: 54,1
+ 623: 54,2
+ 624: 54,3
+ 625: 38,2
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale
decals:
- 245: 13,48
- 246: 12,48
+ 190: 13,48
+ 191: 12,48
- node:
color: '#4B709CFF'
id: QuarterTileOverlayGreyscale180
decals:
- 1258: 13,21
- 1263: 14,20
+ 1081: 13,21
+ 1086: 14,20
- node:
color: '#8BDA8E5D'
id: QuarterTileOverlayGreyscale180
decals:
- 1833: 4,44
- 1834: 2,44
+ 1592: 4,44
+ 1593: 2,44
- node:
color: '#8BDABAFF'
id: QuarterTileOverlayGreyscale180
decals:
- 1051: 5,40
- 1052: 4,40
- 1053: 3,40
- 1054: 2,40
- 1055: 1,40
- 1126: 45,40
- 1127: 44,40
- 1128: 43,40
- 1129: 42,40
- 1130: 41,40
- 1237: 16,12
- 1238: 17,12
- 1239: 18,12
- 1240: 19,12
- 1241: 20,12
- 1242: 21,12
- 1243: 22,12
- 1244: 22,13
- 1245: 22,14
- 1246: 22,15
- 1247: 22,16
+ 888: 5,40
+ 889: 4,40
+ 890: 3,40
+ 891: 2,40
+ 892: 1,40
+ 963: 45,40
+ 964: 44,40
+ 965: 43,40
+ 966: 42,40
+ 967: 41,40
+ 1060: 16,12
+ 1061: 17,12
+ 1062: 18,12
+ 1063: 19,12
+ 1064: 20,12
+ 1065: 21,12
+ 1066: 22,12
+ 1067: 22,13
+ 1068: 22,14
+ 1069: 22,15
+ 1070: 22,16
- node:
color: '#8BDB9BFF'
id: QuarterTileOverlayGreyscale180
decals:
- 1416: 52,2
- 1417: 52,1
- 1418: 52,3
- 1419: 53,3
- 1420: 53,2
- 1421: 53,1
- 1434: 37,3
- 1435: 36,3
- 1436: 36,2
- 1437: 37,2
- 1438: 37,1
- 1439: 36,1
- 1440: 18,32
- 1441: 19,32
- 1442: 20,32
- 1443: 21,32
- 1444: 22,32
- 1445: 24,32
- 1446: 23,32
- 1447: 25,32
- 1456: 14,30
- 1457: 14,31
- 1458: 14,32
- 1459: 15,32
- 1460: 15,31
- 1461: 15,30
- 1462: 16,30
- 1463: 16,31
- 1464: 16,32
- 1490: 7,35
- 1491: 8,35
- 1492: 9,35
- 1493: 9,36
- 1494: 8,36
- 1495: 7,36
- 1496: 3,36
- 1497: 2,36
- 1498: 1,36
- 1499: 1,35
- 1500: 2,35
- 1501: 3,35
+ 1213: 52,2
+ 1214: 52,1
+ 1215: 52,3
+ 1216: 53,3
+ 1217: 53,2
+ 1218: 53,1
+ 1231: 37,3
+ 1232: 36,3
+ 1233: 36,2
+ 1234: 37,2
+ 1235: 37,1
+ 1236: 36,1
+ 1237: 18,32
+ 1238: 19,32
+ 1239: 20,32
+ 1240: 21,32
+ 1241: 22,32
+ 1242: 24,32
+ 1243: 23,32
+ 1244: 25,32
+ 1253: 14,30
+ 1254: 14,31
+ 1255: 14,32
+ 1256: 15,32
+ 1257: 15,31
+ 1258: 15,30
+ 1259: 16,30
+ 1260: 16,31
+ 1261: 16,32
+ 1287: 7,35
+ 1288: 8,35
+ 1289: 9,35
+ 1290: 9,36
+ 1291: 8,36
+ 1292: 7,36
+ 1293: 3,36
+ 1294: 2,36
+ 1295: 1,36
+ 1296: 1,35
+ 1297: 2,35
+ 1298: 3,35
- node:
color: '#9EDA8E28'
id: QuarterTileOverlayGreyscale180
decals:
- 1821: 3,45
- 1824: 2,45
- 1825: 2,46
+ 1580: 3,45
+ 1583: 2,45
+ 1584: 2,46
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale180
decals:
- 48: 5,40
- 49: 4,40
- 50: 3,40
- 51: 2,40
- 52: 1,40
- 226: 41,40
- 227: 42,40
- 228: 43,40
- 229: 44,40
- 230: 45,40
- 310: 9,36
- 311: 8,36
- 312: 7,36
- 313: 3,36
- 314: 2,36
- 315: 1,36
- 432: 25,32
- 433: 24,32
- 434: 23,32
- 435: 22,32
- 436: 21,32
- 437: 20,32
- 438: 19,32
- 439: 18,32
- 622: 22,12
- 623: 22,13
- 624: 22,14
- 625: 22,15
- 626: 22,16
- 638: 16,12
- 639: 17,12
- 640: 18,12
- 641: 19,12
- 642: 20,12
- 643: 21,12
- 674: 36,1
- 675: 36,2
- 676: 36,3
- 677: 52,1
- 678: 52,3
- 683: 52,2
+ 0: 5,40
+ 1: 4,40
+ 2: 3,40
+ 3: 2,40
+ 4: 1,40
+ 171: 41,40
+ 172: 42,40
+ 173: 43,40
+ 174: 44,40
+ 175: 45,40
+ 255: 9,36
+ 256: 8,36
+ 257: 7,36
+ 258: 3,36
+ 259: 2,36
+ 260: 1,36
+ 377: 25,32
+ 378: 24,32
+ 379: 23,32
+ 380: 22,32
+ 381: 21,32
+ 382: 20,32
+ 383: 19,32
+ 384: 18,32
+ 565: 22,12
+ 566: 22,13
+ 567: 22,14
+ 568: 22,15
+ 569: 22,16
+ 581: 16,12
+ 582: 17,12
+ 583: 18,12
+ 584: 19,12
+ 585: 20,12
+ 586: 21,12
+ 617: 36,1
+ 618: 36,2
+ 619: 36,3
+ 620: 52,1
+ 621: 52,3
+ 626: 52,2
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale180
decals:
- 239: 14,44
- 240: 14,45
- 241: 14,46
- 242: 14,47
+ 184: 14,44
+ 185: 14,45
+ 186: 14,46
+ 187: 14,47
- node:
color: '#4B709CFF'
id: QuarterTileOverlayGreyscale270
decals:
- 1259: 15,21
- 1264: 16,21
+ 1082: 15,21
+ 1087: 16,21
- node:
color: '#8BDA8E5D'
id: QuarterTileOverlayGreyscale270
decals:
- 1830: 2,46
- 1831: 4,44
- 1832: 3,45
+ 1589: 2,46
+ 1590: 4,44
+ 1591: 3,45
- node:
color: '#8BDABAFF'
id: QuarterTileOverlayGreyscale270
decals:
- 1084: 21,40
- 1085: 20,40
- 1086: 18,40
- 1087: 19,40
- 1088: 17,40
- 1248: 20,19
- 1249: 19,20
- 1255: 21,21
+ 921: 21,40
+ 922: 20,40
+ 923: 18,40
+ 924: 19,40
+ 925: 17,40
+ 1071: 20,19
+ 1072: 19,20
+ 1078: 21,21
- node:
color: '#8BDB9BFF'
id: QuarterTileOverlayGreyscale270
decals:
- 1509: 32,35
- 1510: 31,35
- 1511: 30,35
- 1512: 29,35
- 1513: 28,35
- 1514: 27,35
- 1515: 26,36
- 1516: 26,36
- 1517: 27,36
- 1518: 28,36
- 1519: 29,36
- 1520: 30,36
- 1521: 31,36
- 1528: 32,36
- 1529: 26,35
+ 1306: 32,35
+ 1307: 31,35
+ 1308: 30,35
+ 1309: 29,35
+ 1310: 28,35
+ 1311: 27,35
+ 1312: 26,36
+ 1313: 26,36
+ 1314: 27,36
+ 1315: 28,36
+ 1316: 29,36
+ 1317: 30,36
+ 1318: 31,36
+ 1325: 32,36
+ 1326: 26,35
- node:
color: '#9EDA8E28'
id: QuarterTileOverlayGreyscale270
decals:
- 1814: 4,45
- 1818: 4,46
- 1828: 3,46
+ 1573: 4,45
+ 1577: 4,46
+ 1587: 3,46
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale270
decals:
- 128: 17,40
- 129: 18,40
- 130: 19,40
- 131: 20,40
- 132: 21,40
- 398: 32,35
- 405: 27,36
- 406: 28,36
- 407: 29,36
- 408: 30,36
- 409: 31,36
- 411: 26,36
- 552: 21,21
+ 73: 17,40
+ 74: 18,40
+ 75: 19,40
+ 76: 20,40
+ 77: 21,40
+ 343: 32,35
+ 350: 27,36
+ 351: 28,36
+ 352: 29,36
+ 353: 30,36
+ 354: 31,36
+ 356: 26,36
+ 495: 21,21
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale270
decals:
- 233: 8,44
- 234: 8,45
- 235: 8,46
- 236: 8,47
+ 178: 8,44
+ 179: 8,45
+ 180: 8,46
+ 181: 8,47
- node:
color: '#4B709CFF'
id: QuarterTileOverlayGreyscale90
decals:
- 1257: 13,19
- 1265: 12,19
+ 1080: 13,19
+ 1088: 12,19
- node:
color: '#79DA8EA1'
id: QuarterTileOverlayGreyscale90
decals:
- 976: 18,24
- 977: 18,25
- 978: 18,26
- 979: 18,27
- 980: 18,28
+ 813: 18,24
+ 814: 18,25
+ 815: 18,26
+ 816: 18,27
+ 817: 18,28
- node:
color: '#8BDA8E5D'
id: QuarterTileOverlayGreyscale90
decals:
- 1829: 3,44
+ 1588: 3,44
- node:
color: '#8BDABAFF'
id: QuarterTileOverlayGreyscale90
decals:
- 1079: 17,38
- 1080: 18,38
- 1081: 19,38
- 1082: 20,38
- 1083: 21,38
- 1138: 12,48
- 1139: 13,48
- 1140: 14,48
- 1141: 14,47
- 1142: 14,46
- 1143: 14,45
- 1144: 14,44
+ 916: 17,38
+ 917: 18,38
+ 918: 19,38
+ 919: 20,38
+ 920: 21,38
+ 975: 12,48
+ 976: 13,48
+ 977: 14,48
+ 978: 14,47
+ 979: 14,46
+ 980: 14,45
+ 981: 14,44
- node:
color: '#8BDB9BFF'
id: QuarterTileOverlayGreyscale90
decals:
- 1448: 18,30
- 1449: 19,30
- 1450: 20,30
- 1451: 22,30
- 1452: 21,30
- 1453: 23,30
- 1454: 24,30
- 1455: 25,30
- 1502: 26,35
- 1503: 27,35
- 1504: 28,35
- 1505: 30,35
- 1506: 29,35
- 1507: 31,35
- 1508: 32,35
- 1522: 32,34
- 1523: 31,34
- 1524: 30,34
- 1525: 29,34
- 1526: 28,34
- 1527: 27,34
- 1530: 26,34
+ 1245: 18,30
+ 1246: 19,30
+ 1247: 20,30
+ 1248: 22,30
+ 1249: 21,30
+ 1250: 23,30
+ 1251: 24,30
+ 1252: 25,30
+ 1299: 26,35
+ 1300: 27,35
+ 1301: 28,35
+ 1302: 30,35
+ 1303: 29,35
+ 1304: 31,35
+ 1305: 32,35
+ 1319: 32,34
+ 1320: 31,34
+ 1321: 30,34
+ 1322: 29,34
+ 1323: 28,34
+ 1324: 27,34
+ 1327: 26,34
- node:
color: '#9EDA8E28'
id: QuarterTileOverlayGreyscale90
decals:
- 1815: 4,44
- 1819: 3,45
- 1822: 2,45
- 1823: 2,44
- 1827: 2,46
+ 1574: 4,44
+ 1578: 3,45
+ 1581: 2,45
+ 1582: 2,44
+ 1586: 2,46
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale90
decals:
- 133: 21,38
- 134: 20,38
- 135: 19,38
- 136: 18,38
- 137: 17,38
- 254: 14,44
- 255: 14,45
- 256: 14,46
- 257: 14,47
- 258: 14,48
- 259: 13,48
- 260: 12,48
- 399: 26,35
- 400: 31,34
- 401: 30,34
- 402: 29,34
- 403: 28,34
- 404: 27,34
- 410: 32,34
- 440: 18,30
- 441: 19,30
- 442: 20,30
- 443: 21,30
- 444: 22,30
- 445: 23,30
- 446: 24,30
- 447: 25,30
+ 78: 21,38
+ 79: 20,38
+ 80: 19,38
+ 81: 18,38
+ 82: 17,38
+ 199: 14,44
+ 200: 14,45
+ 201: 14,46
+ 202: 14,47
+ 203: 14,48
+ 204: 13,48
+ 205: 12,48
+ 344: 26,35
+ 345: 31,34
+ 346: 30,34
+ 347: 29,34
+ 348: 28,34
+ 349: 27,34
+ 355: 32,34
+ 385: 18,30
+ 386: 19,30
+ 387: 20,30
+ 388: 21,30
+ 389: 22,30
+ 390: 23,30
+ 391: 24,30
+ 392: 25,30
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale90
decals:
- 243: 9,48
- 244: 10,48
+ 188: 9,48
+ 189: 10,48
- node:
color: '#FFFFFFFF'
id: Rock01
decals:
- 543: 22,18
+ 486: 22,18
- node:
color: '#FFFFFFFF'
id: Rock03
decals:
- 544: 18,18
+ 487: 18,18
- node:
color: '#FFFFFFFF'
id: Rock04
decals:
- 546: 18,22
+ 489: 18,22
- node:
color: '#FFFFFFFF'
id: Rock05
decals:
- 545: 22,22
+ 488: 22,22
- node:
color: '#FFFFFFFF'
id: StandClear
decals:
- 272: 11,44
+ 217: 11,44
- node:
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 1223: 24,16
+ 1046: 24,16
- node:
color: '#8BDA8EB4'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 1279: 12,22
+ 1102: 12,22
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 507: 12,22
+ 452: 12,22
- node:
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 1224: 30,12
+ 1047: 30,12
- node:
color: '#8BDA8EB4'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 1280: 16,18
+ 1103: 16,18
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 505: 16,18
+ 450: 16,18
- node:
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 899: 30,16
+ 763: 30,16
- node:
color: '#8BDA8EB4'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 1278: 16,22
+ 1101: 16,22
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale90
decals:
- 506: 16,22
+ 451: 16,22
- node:
color: '#79DA8EFF'
id: WarnCornerGreyscaleNE
decals:
- 984: 2,28
+ 821: 2,28
- node:
color: '#79DA8EFF'
id: WarnCornerGreyscaleNW
decals:
- 986: 0,28
+ 823: 0,28
- node:
color: '#79DA8EFF'
id: WarnCornerGreyscaleSE
decals:
- 987: 2,24
+ 824: 2,24
- node:
color: '#79DA8EFF'
id: WarnCornerGreyscaleSW
decals:
- 989: 0,24
+ 826: 0,24
- node:
color: '#FFFFFFFF'
id: WarnCornerNE
decals:
- 861: 21,2
- 862: 25,2
+ 726: 21,2
+ 727: 25,2
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
- 863: 23,2
- 864: 19,2
+ 728: 23,2
+ 729: 19,2
- node:
color: '#FFFFFFFF'
id: WarnCornerSW
decals:
- 490: 2,20
+ 435: 2,20
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
decals:
- 1037: 8,12
+ 874: 8,12
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
decals:
- 1036: 14,12
+ 873: 14,12
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
- 621: 8,16
+ 564: 8,16
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
decals:
- 620: 14,16
+ 563: 14,16
- node:
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 331: 6,34
- 332: 6,35
- 333: 6,36
- 607: 8,13
- 608: 8,14
- 609: 8,15
+ 276: 6,34
+ 277: 6,35
+ 278: 6,36
+ 550: 8,13
+ 551: 8,14
+ 552: 8,15
- node:
color: '#79DA8EFF'
id: WarnLineGreyscaleE
decals:
- 981: 2,25
- 982: 2,26
- 983: 2,27
+ 818: 2,25
+ 819: 2,26
+ 820: 2,27
- node:
color: '#8BDB8E99'
id: WarnLineGreyscaleE
decals:
- 1378: 18,3
- 1379: 18,3
+ 1201: 18,3
+ 1202: 18,3
- node:
color: '#8BDB8EFF'
id: WarnLineGreyscaleE
decals:
- 1380: 18,3
+ 1203: 18,3
- node:
color: '#D381C996'
id: WarnLineGreyscaleE
decals:
- 874: 18,3
+ 739: 18,3
- node:
color: '#52B4E996'
id: WarnLineGreyscaleN
decals:
- 1225: 27,15
+ 1048: 27,15
- node:
color: '#79DA8EFF'
id: WarnLineGreyscaleN
decals:
- 985: 1,28
+ 822: 1,28
- node:
color: '#8BDA8EFF'
id: WarnLineGreyscaleN
decals:
- 1624: 29,27
+ 1421: 29,27
- node:
color: '#8BDB8E99'
id: WarnLineGreyscaleN
decals:
- 1376: 26,4
- 1377: 26,4
+ 1199: 26,4
+ 1200: 26,4
- node:
color: '#DABC8BFF'
id: WarnLineGreyscaleN
decals:
- 996: 5,28
+ 833: 5,28
- node:
color: '#79DA8EFF'
id: WarnLineGreyscaleS
decals:
- 988: 1,24
+ 825: 1,24
- node:
color: '#8BDA8EFF'
id: WarnLineGreyscaleS
decals:
- 1623: 29,25
+ 1420: 29,25
- node:
color: '#DABC8BFF'
id: WarnLineGreyscaleS
decals:
- 997: 5,24
- 998: 5,24
+ 834: 5,24
+ 835: 5,24
- node:
color: '#79DA8EFF'
id: WarnLineGreyscaleW
decals:
- 990: 0,25
- 991: 0,26
- 992: 0,27
+ 827: 0,25
+ 828: 0,26
+ 829: 0,27
- node:
color: '#8BDB8EFF'
id: WarnLineGreyscaleW
decals:
- 1381: 34,3
+ 1204: 34,3
- node:
color: '#D381C996'
id: WarnLineGreyscaleW
decals:
- 873: 34,3
+ 738: 34,3
- node:
color: '#FFFFFFFF'
id: WarnLineN
decals:
- 264: 12,47
- 265: 10,47
- 488: 4,20
- 489: 3,20
- 581: 27,22
- 582: 26,22
- 583: 25,22
- 602: 13,16
- 603: 11,16
- 604: 12,16
- 605: 10,16
- 606: 9,16
+ 209: 12,47
+ 210: 10,47
+ 433: 4,20
+ 434: 3,20
+ 524: 27,22
+ 525: 26,22
+ 526: 25,22
+ 545: 13,16
+ 546: 11,16
+ 547: 12,16
+ 548: 10,16
+ 549: 9,16
- node:
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 328: 4,34
- 329: 4,36
- 330: 4,35
- 491: 2,21
- 492: 2,22
- 1043: 14,13
- 1044: 14,14
- 1045: 14,15
+ 273: 4,34
+ 274: 4,36
+ 275: 4,35
+ 436: 2,21
+ 437: 2,22
+ 880: 14,13
+ 881: 14,14
+ 882: 14,15
- node:
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 261: 12,44
- 262: 11,44
- 263: 10,44
- 578: 27,18
- 579: 26,18
- 580: 25,18
- 942: 45,13
- 943: 46,13
- 944: 44,13
- 945: 43,13
- 946: 42,13
- 947: 41,13
- 948: 40,13
- 1038: 9,12
- 1039: 10,12
- 1040: 11,12
- 1041: 12,12
- 1042: 13,12
+ 206: 12,44
+ 207: 11,44
+ 208: 10,44
+ 521: 27,18
+ 522: 26,18
+ 523: 25,18
+ 779: 45,13
+ 780: 46,13
+ 781: 44,13
+ 782: 43,13
+ 783: 42,13
+ 784: 41,13
+ 785: 40,13
+ 875: 9,12
+ 876: 10,12
+ 877: 11,12
+ 878: 12,12
+ 879: 13,12
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
decals:
- 518: 10,9
+ 461: 10,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
decals:
- 517: 1,9
+ 460: 1,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSe
decals:
- 515: 10,8
+ 458: 10,8
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSw
decals:
- 516: 1,8
+ 459: 1,8
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineN
decals:
- 519: 9,9
- 520: 8,9
- 521: 7,9
- 522: 6,9
- 523: 5,9
- 524: 4,9
- 525: 3,9
- 526: 2,9
+ 462: 9,9
+ 463: 8,9
+ 464: 7,9
+ 465: 6,9
+ 466: 5,9
+ 467: 4,9
+ 468: 3,9
+ 469: 2,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
decals:
- 527: 10,8
- 528: 9,8
- 529: 8,8
- 530: 7,8
- 531: 6,8
- 532: 5,8
- 533: 4,8
- 534: 3,8
- 535: 2,8
- 536: 1,8
+ 470: 10,8
+ 471: 9,8
+ 472: 8,8
+ 473: 7,8
+ 474: 6,8
+ 475: 5,8
+ 476: 4,8
+ 477: 3,8
+ 478: 2,8
+ 479: 1,8
- node:
color: '#FFFFFFFF'
id: bushsnowa1
decals:
- 1768: 34.098167,13.033111
+ 1558: 34.098167,13.033111
- node:
color: '#FFFFFFFF'
id: bushsnowb1
decals:
- 1769: 35.707542,12.970611
+ 1559: 35.707542,12.970611
- node:
color: '#FFFFFFFF'
id: chevron
decals:
- 285: 11,48
+ 230: 11,48
- node:
color: '#FFFFFFFF'
id: grasssnow
decals:
- 1885: 10.225454,38.990788
- 1886: 11.037954,39.022038
- 1887: 11.834829,39.022038
+ 1643: 10.225454,38.990788
+ 1644: 11.037954,39.022038
+ 1645: 11.834829,39.022038
- node:
color: '#FFFFFFFF'
id: grasssnow02
decals:
- 1762: 34.973167,13.060861
+ 1552: 34.973167,13.060861
- node:
color: '#FFFFFFFF'
id: grasssnow10
decals:
- 1761: 34.004417,13.045236
- 1763: 35.316917,13.060861
- 1764: 36.035667,13.029611
- 1765: 34.535667,12.998361
- 1766: 36.129417,13.076486
- 1767: 34.238792,13.076486
- 1888: 10.491079,38.975163
- 1889: 11.600454,38.959538
- 1890: 11.006704,39.178288
+ 1551: 34.004417,13.045236
+ 1553: 35.316917,13.060861
+ 1554: 36.035667,13.029611
+ 1555: 34.535667,12.998361
+ 1556: 36.129417,13.076486
+ 1557: 34.238792,13.076486
+ 1646: 10.491079,38.975163
+ 1647: 11.600454,38.959538
+ 1648: 11.006704,39.178288
- type: RadiationGridResistance
- type: LoadedMap
- type: SpreaderGrid
@@ -2907,25 +2908,6 @@ entities:
- type: Transform
pos: 17.5,31.5
parent: 1653
-- proto: AloeSeeds
- entities:
- - uid: 1078
- components:
- - type: Transform
- pos: 1.5044713,15.591048
- parent: 1653
- - uid: 1379
- components:
- - type: Transform
- pos: 16.516748,9.567207
- parent: 1653
-- proto: AmbrosiaVulgarisSeeds
- entities:
- - uid: 1380
- components:
- - type: Transform
- pos: 16.688623,9.410957
- parent: 1653
- proto: AnomalyScanner
entities:
- uid: 2182
@@ -3013,13 +2995,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 53.5,14.5
parent: 1653
-- proto: Beaker
- entities:
- - uid: 1470
- components:
- - type: Transform
- pos: 21.687025,4.54119
- parent: 1653
- proto: Bed
entities:
- uid: 1233
@@ -3064,27 +3039,6 @@ entities:
- type: Transform
pos: 42.5,0.5
parent: 1653
-- proto: BloodTomatoSeeds
- entities:
- - uid: 792
- components:
- - type: Transform
- pos: 1.4725559,25.735012
- parent: 1653
-- proto: BluespaceBeaker
- entities:
- - uid: 1476
- components:
- - type: Transform
- pos: 21.201073,4.650565
- parent: 1653
-- proto: BookLeafLoversSecret
- entities:
- - uid: 1419
- components:
- - type: Transform
- pos: 6.468939,30.545952
- parent: 1653
- proto: Bookshelf
entities:
- uid: 1241
@@ -3144,28 +3098,6 @@ entities:
- type: Transform
pos: 2.5,32.5
parent: 1653
-- proto: BoxBeaker
- entities:
- - uid: 1484
- components:
- - type: Transform
- pos: 22.482006,0.7443154
- parent: 1653
-- proto: BoxFolderBlue
- entities:
- - uid: 776
- components:
- - type: Transform
- pos: 22.48359,30.550323
- parent: 1653
-- proto: BoxFolderGreen
- entities:
- - uid: 1201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.6928706,46.564724
- parent: 1653
- proto: BoxFolderWhite
entities:
- uid: 1003
@@ -3185,42 +3117,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 25.322851,13.512466
parent: 1653
-- proto: BoxFolderYellow
- entities:
- - uid: 1714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.6459956,46.39285
- parent: 1653
-- proto: BoxMouthSwab
- entities:
- - uid: 796
- components:
- - type: Transform
- pos: 14.493081,24.60434
- parent: 1653
-- proto: BriefcaseBrown
- entities:
- - uid: 1699
- components:
- - type: Transform
- pos: 18.487843,32.40922
- parent: 1653
-- proto: BungoSeeds
- entities:
- - uid: 1424
- components:
- - type: Transform
- pos: 8.531214,35.590054
- parent: 1653
-- proto: CabbageSeeds
- entities:
- - uid: 1381
- components:
- - type: Transform
- pos: 16.501123,8.739082
- parent: 1653
- proto: CableApcExtension
entities:
- uid: 1
@@ -3793,6 +3689,11 @@ entities:
- type: Transform
pos: 1.5,28.5
parent: 1653
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1653
- uid: 165
components:
- type: Transform
@@ -4803,6 +4704,21 @@ entities:
- type: Transform
pos: 6.5,2.5
parent: 1653
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1653
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1653
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1653
- uid: 514
components:
- type: Transform
@@ -4813,6 +4729,11 @@ entities:
- type: Transform
pos: 11.5,2.5
parent: 1653
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 8.5,31.5
+ parent: 1653
- uid: 566
components:
- type: Transform
@@ -4858,6 +4779,11 @@ entities:
- type: Transform
pos: 27.5,2.5
parent: 1653
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 5.5,31.5
+ parent: 1653
- uid: 736
components:
- type: Transform
@@ -4923,6 +4849,16 @@ entities:
- type: Transform
pos: 31.5,2.5
parent: 1653
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 1653
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 1653
- uid: 906
components:
- type: Transform
@@ -5253,6 +5189,11 @@ entities:
- type: Transform
pos: 35.5,12.5
parent: 1653
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: 10.5,31.5
+ parent: 1653
- uid: 1393
components:
- type: Transform
@@ -5278,6 +5219,11 @@ entities:
- type: Transform
pos: 21.5,45.5
parent: 1653
+ - uid: 1419
+ components:
+ - type: Transform
+ pos: 11.5,31.5
+ parent: 1653
- uid: 1439
components:
- type: Transform
@@ -5513,11 +5459,6 @@ entities:
- type: Transform
pos: 29.5,13.5
parent: 1653
- - uid: 1875
- components:
- - type: Transform
- pos: 4.5,3.5
- parent: 1653
- uid: 1876
components:
- type: Transform
@@ -5528,31 +5469,16 @@ entities:
- type: Transform
pos: 4.5,2.5
parent: 1653
- - uid: 1878
- components:
- - type: Transform
- pos: 4.5,1.5
- parent: 1653
- uid: 1879
components:
- type: Transform
pos: 0.5,2.5
parent: 1653
- - uid: 1880
- components:
- - type: Transform
- pos: 4.5,0.5
- parent: 1653
- uid: 1881
components:
- type: Transform
pos: 2.5,2.5
parent: 1653
- - uid: 1882
- components:
- - type: Transform
- pos: 4.5,4.5
- parent: 1653
- uid: 1888
components:
- type: Transform
@@ -5573,25 +5499,10 @@ entities:
- type: Transform
pos: 16.5,2.5
parent: 1653
- - uid: 1892
- components:
- - type: Transform
- pos: 3.5,3.5
- parent: 1653
- - uid: 1893
- components:
- - type: Transform
- pos: 3.5,4.5
- parent: 1653
- - uid: 1894
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 1653
- uid: 1895
components:
- type: Transform
- pos: 3.5,0.5
+ pos: 9.5,31.5
parent: 1653
- uid: 1961
components:
@@ -5673,6 +5584,11 @@ entities:
- type: Transform
pos: 51.5,38.5
parent: 1653
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: 6.5,31.5
+ parent: 1653
- uid: 2031
components:
- type: Transform
@@ -5818,6 +5734,11 @@ entities:
- type: Transform
pos: 41.5,6.5
parent: 1653
+ - uid: 2061
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 1653
- uid: 2188
components:
- type: Transform
@@ -5858,39 +5779,37 @@ entities:
- type: Transform
pos: 8.5,0.5
parent: 1653
-- proto: CableApcStack
- entities:
- - uid: 824
+ - uid: 2240
components:
- type: Transform
- pos: 6.439933,35.56771
+ pos: 2.5,31.5
parent: 1653
- - uid: 1541
+ - uid: 2241
components:
- type: Transform
- pos: 27.694578,8.767019
+ pos: 1.5,31.5
parent: 1653
-- proto: CableApcStack10
- entities:
- - uid: 171
+ - uid: 2242
components:
- type: Transform
- pos: 4.338315,25.664474
+ pos: 0.5,31.5
parent: 1653
- - uid: 733
+ - uid: 2243
components:
- type: Transform
- pos: 4.557065,25.539474
+ pos: 6.5,30.5
parent: 1653
- - uid: 814
+ - uid: 2244
components:
- type: Transform
- pos: 6.47894,27.64885
+ pos: 6.5,32.5
parent: 1653
- - uid: 817
+- proto: CableApcStack
+ entities:
+ - uid: 1541
components:
- type: Transform
- pos: 6.619565,27.508224
+ pos: 27.694578,8.767019
parent: 1653
- proto: CableHV
entities:
@@ -6221,20 +6140,6 @@ entities:
rot: 3.141592653589793 rad
pos: 30.5,7.5
parent: 1653
-- proto: CannabisSeeds
- entities:
- - uid: 905
- components:
- - type: Transform
- pos: 4.5,18.5
- parent: 1653
-- proto: CarbonDioxideCanister
- entities:
- - uid: 806
- components:
- - type: Transform
- pos: 16.5,25.5
- parent: 1653
- proto: CarpetGreen
entities:
- uid: 271
@@ -6374,13 +6279,6 @@ entities:
rot: 3.141592653589793 rad
pos: 10.5,7.5
parent: 1653
-- proto: CarrotSeeds
- entities:
- - uid: 1382
- components:
- - type: Transform
- pos: 16.641748,8.598457
- parent: 1653
- proto: Catwalk
entities:
- uid: 560
@@ -6784,6 +6682,12 @@ entities:
- type: Transform
pos: 48.5,40.5
parent: 1653
+ - uid: 1956
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,30.5
+ parent: 1653
- proto: ChairFolding
entities:
- uid: 929
@@ -6907,222 +6811,61 @@ entities:
- type: Transform
pos: 27.5,14.5
parent: 1653
-- proto: ClosetEmergencyFilledRandom
+- proto: ClosetMaintenanceFilledRandom
entities:
- - uid: 899
+ - uid: 745
components:
- type: Transform
- pos: 4.5,22.5
+ pos: 14.5,32.5
parent: 1653
-- proto: ClosetFireFilled
+- proto: ClosetSteelBase
entities:
- - uid: 747
+ - uid: 2010
components:
- type: Transform
- pos: 1.5,40.5
+ pos: 30.5,25.5
parent: 1653
- - uid: 900
+ - uid: 2012
components:
- type: Transform
- pos: 3.5,22.5
+ pos: 28.5,27.5
parent: 1653
-- proto: ClosetL3ScienceFilled
+- proto: ClothingOuterApronBotanist
entities:
- - uid: 1285
+ - uid: 656
components:
- type: Transform
- pos: 53.5,0.5
+ pos: 33.50576,36.565666
parent: 1653
- - uid: 1286
+- proto: ClothingOuterWinterHydro
+ entities:
+ - uid: 1077
components:
- type: Transform
- pos: 54.5,0.5
+ pos: 7.484151,6.5991178
parent: 1653
-- proto: ClosetMaintenanceFilledRandom
+- proto: ClothingShoeSlippersDuck
entities:
- - uid: 745
+ - uid: 2030
components:
- type: Transform
- pos: 14.5,32.5
+ pos: 13.532652,9.379251
parent: 1653
- - uid: 948
+- proto: ComfyChair
+ entities:
+ - uid: 268
components:
- type: Transform
- pos: 5.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,30.5
parent: 1653
- - uid: 954
+ - uid: 313
components:
- type: Transform
- pos: 0.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,30.5
parent: 1653
- - uid: 955
- components:
- - type: Transform
- pos: 0.5,6.5
- parent: 1653
- - uid: 1284
- components:
- - type: Transform
- pos: 52.5,0.5
- parent: 1653
-- proto: ClosetSteelBase
- entities:
- - uid: 2010
- components:
- - type: Transform
- pos: 30.5,25.5
- parent: 1653
- - uid: 2011
- components:
- - type: Transform
- pos: 28.5,26.5
- parent: 1653
- - uid: 2012
- components:
- - type: Transform
- pos: 28.5,27.5
- parent: 1653
-- proto: ClosetToolFilled
- entities:
- - uid: 584
- components:
- - type: Transform
- pos: 14.5,42.5
- parent: 1653
-- proto: ClothingBackpackDuffelHydroponics
- entities:
- - uid: 2023
- components:
- - type: Transform
- pos: 32.47305,27.527536
- parent: 1653
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 591
- components:
- - type: Transform
- pos: 10.480986,45.607067
- parent: 1653
-- proto: ClothingEyesGlassesThermal
- entities:
- - uid: 800
- components:
- - type: Transform
- pos: 6.5116234,25.568321
- parent: 1653
-- proto: ClothingHandsGlovesLeather
- entities:
- - uid: 719
- components:
- - type: Transform
- pos: 12.432887,24.48849
- parent: 1653
-- proto: ClothingHeadHatHoodBioVirology
- entities:
- - uid: 2062
- components:
- - type: Transform
- pos: 34.71194,26.670929
- parent: 1653
- - uid: 2063
- components:
- - type: Transform
- pos: 34.321316,26.655304
- parent: 1653
-- proto: ClothingHeadHatWeldingMaskFlame
- entities:
- - uid: 661
- components:
- - type: Transform
- pos: 21.418028,36.658634
- parent: 1653
-- proto: ClothingHeadHatWeldingMaskFlameBlue
- entities:
- - uid: 662
- components:
- - type: Transform
- pos: 21.605528,36.471134
- parent: 1653
-- proto: ClothingMaskBandBotany
- entities:
- - uid: 732
- components:
- - type: Transform
- pos: 12.423744,24.51739
- parent: 1653
-- proto: ClothingOuterApronBotanist
- entities:
- - uid: 656
- components:
- - type: Transform
- pos: 33.50576,36.565666
- parent: 1653
-- proto: ClothingOuterBioVirology
- entities:
- - uid: 2064
- components:
- - type: Transform
- pos: 34.321316,26.514679
- parent: 1653
- - uid: 2065
- components:
- - type: Transform
- pos: 34.696316,26.499054
- parent: 1653
-- proto: ClothingOuterWinterHydro
- entities:
- - uid: 1077
- components:
- - type: Transform
- pos: 7.484151,6.5991178
- parent: 1653
- - uid: 2060
- components:
- - type: Transform
- pos: 32.374146,26.80749
- parent: 1653
-- proto: ClothingShoeSlippersDuck
- entities:
- - uid: 2030
- components:
- - type: Transform
- pos: 13.532652,9.379251
- parent: 1653
-- proto: ClothingUniformJumpsuitHydroponics
- entities:
- - uid: 2061
- components:
- - type: Transform
- pos: 32.54602,26.604364
- parent: 1653
-- proto: CocoaSeeds
- entities:
- - uid: 829
- components:
- - type: Transform
- pos: 1.5350559,26.594387
- parent: 1653
-- proto: ComfyChair
- entities:
- - uid: 268
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,30.5
- parent: 1653
- - uid: 269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,30.5
- parent: 1653
- - uid: 313
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,30.5
- parent: 1653
- - uid: 619
+ - uid: 619
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -7157,12 +6900,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 16.5,19.5
parent: 1653
- - uid: 982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,30.5
- parent: 1653
- uid: 987
components:
- type: Transform
@@ -7440,96 +7177,6 @@ entities:
- type: Transform
pos: 25.5,2.5
parent: 1653
-- proto: DonkpocketBoxSpawner
- entities:
- - uid: 962
- components:
- - type: Transform
- pos: 0.5,9.5
- parent: 1653
-- proto: DrinkGoldenCup
- entities:
- - uid: 1192
- components:
- - type: Transform
- pos: 10.500535,32.48345
- parent: 1653
-- proto: DrinkMug
- entities:
- - uid: 963
- components:
- - type: Transform
- pos: 1.4545751,10.669063
- parent: 1653
-- proto: DrinkMugDog
- entities:
- - uid: 452
- components:
- - type: Transform
- pos: 10.44451,4.54002
- parent: 1653
- - uid: 965
- components:
- - type: Transform
- pos: 1.4858251,10.465938
- parent: 1653
-- proto: DrinkMugMetal
- entities:
- - uid: 964
- components:
- - type: Transform
- pos: 1.6889501,10.590938
- parent: 1653
-- proto: DrinkMugMoebius
- entities:
- - uid: 466
- components:
- - type: Transform
- pos: 10.60076,4.711895
- parent: 1653
- - uid: 966
- components:
- - type: Transform
- pos: 2.173325,10.684688
- parent: 1653
-- proto: DrinkWaterCup
- entities:
- - uid: 508
- components:
- - type: Transform
- pos: 20.373915,40.64657
- parent: 1653
- - uid: 509
- components:
- - type: Transform
- pos: 20.54579,40.724693
- parent: 1653
- - uid: 510
- components:
- - type: Transform
- pos: 20.592665,40.537193
- parent: 1653
-- proto: Dropper
- entities:
- - uid: 1471
- components:
- - type: Transform
- pos: 22.57765,4.50994
- parent: 1653
-- proto: EggplantSeeds
- entities:
- - uid: 1384
- components:
- - type: Transform
- pos: 16.626123,7.6609573
- parent: 1653
-- proto: EggySeeds
- entities:
- - uid: 1383
- components:
- - type: Transform
- pos: 16.422998,7.8484573
- parent: 1653
- proto: EmergencyLight
entities:
- uid: 1605
@@ -7555,13 +7202,6 @@ entities:
parent: 1653
- type: PointLight
enabled: True
-- proto: EncryptionKeyService
- entities:
- - uid: 1205
- components:
- - type: Transform
- pos: 5.3739185,43.607506
- parent: 1653
- proto: ExtinguisherCabinetFilled
entities:
- uid: 1287
@@ -7685,27 +7325,6 @@ entities:
- type: Transform
pos: 21.463976,15.404201
parent: 1653
-- proto: FoodShakerPepper
- entities:
- - uid: 1327
- components:
- - type: Transform
- pos: 12.527602,2.6585855
- parent: 1653
-- proto: FoodShakerSalt
- entities:
- - uid: 1220
- components:
- - type: Transform
- pos: 12.340102,2.7523355
- parent: 1653
-- proto: FoodSoupChiliCold
- entities:
- - uid: 1842
- components:
- - type: Transform
- pos: 41.565323,12.755919
- parent: 1653
- proto: GasCanisterBrokenBase
entities:
- uid: 287
@@ -7926,27 +7545,6 @@ entities:
- type: Transform
pos: 20.5,45.5
parent: 1653
-- proto: GunpetInstrument
- entities:
- - uid: 491
- components:
- - type: Transform
- pos: 32.456673,4.6502504
- parent: 1653
-- proto: HandLabeler
- entities:
- - uid: 797
- components:
- - type: Transform
- pos: 14.461831,28.633146
- parent: 1653
-- proto: HelicopterInstrument
- entities:
- - uid: 415
- components:
- - type: Transform
- pos: 31.582432,20.675161
- parent: 1653
- proto: HospitalCurtainsOpen
entities:
- uid: 270
@@ -8016,47 +7614,14 @@ entities:
- type: Transform
pos: 21.5,14.5
parent: 1653
-- proto: HydroponicsToolHatchet
+- proto: hydroponicsTray
entities:
- - uid: 1959
+ - uid: 159
components:
- type: Transform
- pos: 26.521053,26.358747
+ pos: 22.5,25.5
parent: 1653
-- proto: HydroponicsToolMiniHoe
- entities:
- - uid: 1378
- components:
- - type: Transform
- pos: 18.469873,9.442207
- parent: 1653
-- proto: HydroponicsToolScythe
- entities:
- - uid: 1948
- components:
- - type: Transform
- pos: 53.545364,38.54707
- parent: 1653
-- proto: HydroponicsToolSpade
- entities:
- - uid: 1998
- components:
- - type: Transform
- pos: 37.663628,7.3749332
- parent: 1653
-- proto: hydroponicsTray
- entities:
- - uid: 159
- components:
- - type: Transform
- pos: 22.5,25.5
- parent: 1653
- - uid: 160
- components:
- - type: Transform
- pos: 22.5,26.5
- parent: 1653
- - uid: 417
+ - uid: 417
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -8173,11 +7738,6 @@ entities:
- type: Transform
pos: 26.5,27.5
parent: 1653
- - uid: 1951
- components:
- - type: Transform
- pos: 26.5,26.5
- parent: 1653
- uid: 1952
components:
- type: Transform
@@ -8198,11 +7758,6 @@ entities:
- type: Transform
pos: 24.5,25.5
parent: 1653
- - uid: 1956
- components:
- - type: Transform
- pos: 24.5,26.5
- parent: 1653
- uid: 1957
components:
- type: Transform
@@ -8303,18 +7858,6 @@ entities:
- type: Transform
pos: 50.5,15.5
parent: 1653
-- proto: HydroponicsTrayMachineCircuitboard
- entities:
- - uid: 168
- components:
- - type: Transform
- pos: 4.5441585,28.543722
- parent: 1653
- - uid: 170
- components:
- - type: Transform
- pos: 6.5285335,24.574972
- parent: 1653
- proto: IceCrust
entities:
- uid: 147
@@ -10558,13 +10101,6 @@ entities:
- type: Transform
pos: 34.5,15.5
parent: 1653
-- proto: KitchenMicrowave
- entities:
- - uid: 961
- components:
- - type: Transform
- pos: 0.5,10.5
- parent: 1653
- proto: KudzuFlowerFriendly
entities:
- uid: 974
@@ -10599,18 +10135,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 24.5,32.5
parent: 1653
-- proto: LargeBeaker
- entities:
- - uid: 1468
- components:
- - type: Transform
- pos: 21.7339,4.82244
- parent: 1653
- - uid: 1469
- components:
- - type: Transform
- pos: 21.9839,4.619315
- parent: 1653
- proto: LightTree05
entities:
- uid: 125
@@ -10618,36 +10142,27 @@ entities:
- type: Transform
pos: 19.507784,45.542137
parent: 1653
-- proto: LockerBotanistFilled
+- proto: LockerBotanistLoot
entities:
- - uid: 794
- components:
- - type: Transform
- pos: 10.5,26.5
- parent: 1653
- - uid: 2009
+ - uid: 2027
components:
- type: Transform
- pos: 30.5,26.5
+ pos: 8.5,25.5
parent: 1653
-- proto: LockerBotanistLoot
- entities:
- - uid: 650
+ - uid: 2060
components:
- type: Transform
- pos: 43.5,40.5
+ pos: 10.5,25.5
parent: 1653
- - uid: 1088
+ - uid: 2065
components:
- type: Transform
- pos: 8.5,26.5
+ pos: 8.5,27.5
parent: 1653
-- proto: LockerElectricalSuppliesFilled
- entities:
- - uid: 1533
+ - uid: 2248
components:
- type: Transform
- pos: 27.5,9.5
+ pos: 45.5,40.5
parent: 1653
- proto: LockerScienceFilled
entities:
@@ -10656,21 +10171,6 @@ entities:
- type: Transform
pos: 14.5,25.5
parent: 1653
-- proto: LockerWeldingSuppliesFilled
- entities:
- - uid: 1531
- components:
- - type: Transform
- pos: 31.5,9.5
- parent: 1653
-- proto: LuxuryPen
- entities:
- - uid: 1328
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.487568,15.43374
- parent: 1653
- proto: MachineAPE
entities:
- uid: 2139
@@ -10732,25 +10232,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 29.590216,15.590591
parent: 1653
-- proto: MaterialBones1
- entities:
- - uid: 2137
- components:
- - type: Transform
- pos: 49.42443,15.527899
- parent: 1653
- - uid: 2138
- components:
- - type: Transform
- pos: 49.54943,15.481024
- parent: 1653
-- proto: MaterialWoodPlank
- entities:
- - uid: 669
- components:
- - type: Transform
- pos: 20.62062,34.599228
- parent: 1653
- proto: Mirror
entities:
- uid: 892
@@ -10764,90 +10245,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,19.5
parent: 1653
-- proto: ModularGrenade
- entities:
- - uid: 1634
- components:
- - type: Transform
- pos: 40.388412,13.373815
- parent: 1653
- - uid: 1635
- components:
- - type: Transform
- pos: 40.482162,13.57694
- parent: 1653
- - uid: 1636
- components:
- - type: Transform
- pos: 40.607162,13.405065
- parent: 1653
-- proto: Multitool
- entities:
- - uid: 1049
- components:
- - type: Transform
- pos: 27.480967,22.500828
- parent: 1653
-- proto: NettleSeeds
- entities:
- - uid: 1999
- components:
- - type: Transform
- pos: 42.384377,9.279519
- parent: 1653
-- proto: OrangeSeeds
- entities:
- - uid: 819
- components:
- - type: Transform
- pos: 1.4881809,27.512886
- parent: 1653
-- proto: Paper
- entities:
- - uid: 490
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.4302826,44.545006
- parent: 1653
- - uid: 1127
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.4302826,44.545006
- parent: 1653
- - uid: 1131
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.4302826,44.545006
- parent: 1653
-- proto: PaperBin5
- entities:
- - uid: 785
- components:
- - type: Transform
- pos: 24.5,31.5
- parent: 1653
- - uid: 1006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,47.5
- parent: 1653
- - uid: 1707
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,14.5
- parent: 1653
-- proto: PartRodMetal1
- entities:
- - uid: 531
- components:
- - type: Transform
- pos: 33.42354,40.437122
- parent: 1653
- proto: PercentileDie
entities:
- uid: 744
@@ -10855,20 +10252,6 @@ entities:
- type: Transform
pos: 17.44835,14.326076
parent: 1653
-- proto: PineappleSeeds
- entities:
- - uid: 455
- components:
- - type: Transform
- pos: 33.566967,20.5998
- parent: 1653
-- proto: PlasmaTankFilled
- entities:
- - uid: 1473
- components:
- - type: Transform
- pos: 30.568752,4.54119
- parent: 1653
- proto: PlushieDiona
entities:
- uid: 653
@@ -10943,20 +10326,6 @@ entities:
- type: Transform
pos: 12.5,28.5
parent: 1653
-- proto: PowerCellHigh
- entities:
- - uid: 799
- components:
- - type: Transform
- pos: 16.534313,24.606636
- parent: 1653
-- proto: PowerCellPotato
- entities:
- - uid: 862
- components:
- - type: Transform
- pos: 12.315257,39.398518
- parent: 1653
- proto: PowerCellRecharger
entities:
- uid: 808
@@ -10969,13 +10338,6 @@ entities:
- type: Transform
pos: 49.5,13.5
parent: 1653
-- proto: PowerDrill
- entities:
- - uid: 1050
- components:
- - type: Transform
- pos: 28.512217,21.547703
- parent: 1653
- proto: Poweredlight
entities:
- uid: 77
@@ -10990,11 +10352,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 38.5,13.5
parent: 1653
- - uid: 81
- components:
- - type: Transform
- pos: 6.5,31.5
- parent: 1653
- uid: 123
components:
- type: Transform
@@ -11131,6 +10488,12 @@ entities:
parent: 1653
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,31.5
+ parent: 1653
- uid: 932
components:
- type: Transform
@@ -11286,6 +10649,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 28.5,14.5
parent: 1653
+ - uid: 1875
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,27.5
+ parent: 1653
- uid: 1977
components:
- type: Transform
@@ -11309,17 +10678,11 @@ entities:
- type: Transform
pos: 33.5,22.5
parent: 1653
- - uid: 2115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,26.5
- parent: 1653
- - uid: 2116
+ - uid: 2063
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 32.5,26.5
+ pos: 32.5,27.5
parent: 1653
- uid: 2117
components:
@@ -11332,11 +10695,10 @@ entities:
- type: Transform
pos: 42.5,10.5
parent: 1653
- - uid: 2214
+ - uid: 2245
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,30.5
+ pos: 9.5,32.5
parent: 1653
- proto: PoweredlightCyan
entities:
@@ -11548,27 +10910,23 @@ entities:
parent: 1653
- proto: PoweredSmallLightEmpty
entities:
- - uid: 737
+ - uid: 269
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,25.5
+ pos: 22.5,27.5
parent: 1653
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 848
+ - uid: 526
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 18.5,26.5
+ pos: 18.5,27.5
parent: 1653
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 849
+ - uid: 737
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,25.5
parent: 1653
- type: ApcPowerReceiver
powerLoad: 0
@@ -11678,20 +11036,9 @@ entities:
- type: Transform
pos: 53.5,38.5
parent: 1653
- - uid: 2027
- components:
- - type: Transform
- pos: 34.5,26.5
- parent: 1653
- proto: Railing
entities:
- - uid: 527
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,38.5
- parent: 1653
- - uid: 936
+ - uid: 936
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -11702,6 +11049,12 @@ entities:
- type: Transform
pos: 12.5,19.5
parent: 1653
+ - uid: 2062
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,38.5
+ parent: 1653
- proto: RailingCornerSmall
entities:
- uid: 528
@@ -11716,43 +11069,25 @@ entities:
rot: 1.5707963267948966 rad
pos: 35.5,39.5
parent: 1653
- - uid: 530
- components:
- - type: Transform
- pos: 35.5,38.5
- parent: 1653
- uid: 943
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 13.5,19.5
parent: 1653
-- proto: RandomFoodMeal
- entities:
- - uid: 456
- components:
- - type: Transform
- pos: 10.5,0.5
- parent: 1653
- - uid: 993
- components:
- - type: Transform
- pos: 12.5,22.5
- parent: 1653
- - uid: 1314
+ - uid: 2247
components:
- type: Transform
- pos: 4.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,38.5
parent: 1653
-- proto: RandomFoodSingle
+- proto: RandomInstruments
entities:
- - uid: 403
+ - uid: 1131
components:
- type: Transform
- pos: 5.5,4.5
+ pos: 31.5,20.5
parent: 1653
-- proto: RandomInstruments
- entities:
- uid: 1248
components:
- type: Transform
@@ -11775,13 +11110,6 @@ entities:
- type: Transform
pos: 39.5,0.5
parent: 1653
-- proto: RandomSnacks
- entities:
- - uid: 994
- components:
- - type: Transform
- pos: 16.5,18.5
- parent: 1653
- proto: RandomSoap
entities:
- uid: 898
@@ -11821,29 +11149,32 @@ entities:
- type: Transform
pos: 41.5,40.5
parent: 1653
-- proto: RandomSpawner100
- entities:
- - uid: 1413
+ - uid: 1894
components:
- type: Transform
- pos: 21.5,43.5
+ pos: 8.5,31.5
parent: 1653
- - uid: 1456
+ - uid: 2115
components:
- type: Transform
- pos: 17.5,47.5
+ pos: 4.5,30.5
+ parent: 1653
+ - uid: 2246
+ components:
+ - type: Transform
+ pos: 1.5,31.5
parent: 1653
-- proto: RandomVending
+- proto: RandomSpawner100
entities:
- - uid: 861
+ - uid: 1413
components:
- type: Transform
- pos: 10.5,22.5
+ pos: 21.5,43.5
parent: 1653
- - uid: 934
+ - uid: 1456
components:
- type: Transform
- pos: 16.5,22.5
+ pos: 17.5,47.5
parent: 1653
- proto: ReinforcedUraniumWindow
entities:
@@ -11939,30 +11270,6 @@ entities:
- type: Transform
pos: 17.5,32.5
parent: 1653
-- proto: RemoteSignaller
- entities:
- - uid: 1628
- components:
- - type: Transform
- pos: 42.357162,12.70194
- parent: 1653
- - uid: 1629
- components:
- - type: Transform
- pos: 42.482162,12.85819
- parent: 1653
- - uid: 1630
- components:
- - type: Transform
- pos: 42.607162,12.70194
- parent: 1653
-- proto: SalvageCanisterSpawner
- entities:
- - uid: 802
- components:
- - type: Transform
- pos: 16.5,26.5
- parent: 1653
- proto: SalvageMaterialCrateSpawner
entities:
- uid: 2024
@@ -11970,13 +11277,6 @@ entities:
- type: Transform
pos: 34.5,27.5
parent: 1653
-- proto: Screwdriver
- entities:
- - uid: 727
- components:
- - type: Transform
- pos: 4.60394,27.528143
- parent: 1653
- proto: SeedExtractor
entities:
- uid: 810
@@ -11994,13 +11294,6 @@ entities:
- type: Transform
pos: 41.5,9.5
parent: 1653
-- proto: SeedExtractorMachineCircuitboard
- entities:
- - uid: 162
- components:
- - type: Transform
- pos: 22.515446,28.541763
- parent: 1653
- proto: ShardCrystalCyan
entities:
- uid: 119
@@ -12019,85 +11312,11 @@ entities:
- type: Transform
pos: 25.848734,36.330853
parent: 1653
- - uid: 1960
- components:
- - type: Transform
- pos: 24.499039,26.422136
- parent: 1653
- uid: 2082
components:
- type: Transform
pos: 32.498764,25.506607
parent: 1653
-- proto: ShardGlass
- entities:
- - uid: 535
- components:
- - type: Transform
- pos: 37.501663,39.608997
- parent: 1653
- - uid: 613
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.581089,35.48234
- parent: 1653
- - uid: 1195
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.508757,46.601135
- parent: 1653
-- proto: SheetGlass
- entities:
- - uid: 717
- components:
- - type: Transform
- pos: 6.41644,28.543768
- parent: 1653
- - uid: 832
- components:
- - type: Transform
- pos: 4.557065,24.528143
- parent: 1653
- - uid: 844
- components:
- - type: Transform
- pos: 53.377705,4.600436
- parent: 1653
-- proto: SheetPlasteel1
- entities:
- - uid: 288
- components:
- - type: Transform
- pos: 1.4974408,26.422686
- parent: 1653
-- proto: SheetPlastic
- entities:
- - uid: 838
- components:
- - type: Transform
- pos: 10.278141,7.4876976
- parent: 1653
- - uid: 846
- components:
- - type: Transform
- pos: 6.3194933,22.541233
- parent: 1653
-- proto: SheetRGlass
- entities:
- - uid: 1112
- components:
- - type: Transform
- pos: 20.352413,24.551647
- parent: 1653
-- proto: SheetSteel1
- entities:
- - uid: 839
- components:
- - type: Transform
- pos: 14.465876,24.425442
- parent: 1653
- proto: ShuttersWindow
entities:
- uid: 580
@@ -12177,94 +11396,1106 @@ entities:
- uid: 1249
components:
- type: Transform
- pos: 40.5,3.5
+ pos: 40.5,3.5
+ parent: 1653
+- proto: SignRedThree
+ entities:
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 48.5,3.5
+ parent: 1653
+- proto: SignRedTwo
+ entities:
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 40.5,1.5
+ parent: 1653
+- proto: SignSecureMed
+ entities:
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 1653
+- proto: SignShock
+ entities:
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 1653
+- proto: SilverDoor
+ entities:
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 1653
+- proto: SinkWide
+ entities:
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1653
+ - uid: 891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,19.5
+ parent: 1653
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1653
+- proto: SmartFridge
+ entities:
+ - uid: 1458
+ components:
+ - type: Transform
+ pos: 23.5,4.5
+ parent: 1653
+- proto: SMESBasic
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+- proto: SpawnDungeonClutterBeakerEmpty
+ entities:
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 22.578753,4.7105246
+ parent: 1653
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 20.735003,4.6323996
+ parent: 1653
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 22.487473,0.61677456
+ parent: 1653
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 21.313128,4.5855246
+ parent: 1653
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 22.235003,4.6167746
+ parent: 1653
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 22.000628,4.7261496
+ parent: 1653
+- proto: SpawnDungeonLootBureaucracy
+ entities:
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 10.518263,32.310562
+ parent: 1653
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 24.568518,31.632536
+ parent: 1653
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 5.4328747,44.407043
+ parent: 1653
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 5.4484997,44.125793
+ parent: 1653
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 18.631018,32.398163
+ parent: 1653
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 5.3859997,43.57892
+ parent: 1653
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 30.753098,4.5073996
+ parent: 1653
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 14.480504,28.48407
+ parent: 1653
+ - uid: 868
+ components:
+ - type: Transform
+ pos: 10.440138,32.544937
+ parent: 1653
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 36.49569,15.514067
+ parent: 1653
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 4.3547497,43.57892
+ parent: 1653
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 3.6516247,43.57892
+ parent: 1653
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 1.4641247,45.688293
+ parent: 1653
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 22.490393,30.64816
+ parent: 1653
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 5.4797497,44.563293
+ parent: 1653
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 35.480064,14.607817
+ parent: 1653
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 1.4328747,46.594543
+ parent: 1653
+ - uid: 2064
+ components:
+ - type: Transform
+ pos: 7.502638,30.513687
+ parent: 1653
+ - uid: 2217
+ components:
+ - type: Transform
+ pos: 34.448814,15.514067
+ parent: 1653
+ - uid: 2218
+ components:
+ - type: Transform
+ pos: 34.948814,15.498442
+ parent: 1653
+ - uid: 2224
+ components:
+ - type: Transform
+ pos: 24.990393,31.67941
+ parent: 1653
+ - uid: 2229
+ components:
+ - type: Transform
+ pos: 3.5109997,47.563293
+ parent: 1653
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 16.5,25.5
+ parent: 1653
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 1653
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1653
+- proto: SpawnDungeonLootChems
+ entities:
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 32.206223,4.5230246
+ parent: 1653
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 4.503058,28.60907
+ parent: 1653
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: 2.6047497,47.563293
+ parent: 1653
+ - uid: 2025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.448061,28.526066
+ parent: 1653
+ - uid: 2223
+ components:
+ - type: Transform
+ pos: 6.581183,24.562195
+ parent: 1653
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 4.737433,25.60907
+ parent: 1653
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 6.503058,25.67157
+ parent: 1653
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 4.503058,27.54657
+ parent: 1653
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 4.721808,27.780945
+ parent: 1653
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 6.471808,27.499695
+ parent: 1653
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 6.440558,25.499695
+ parent: 1653
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 42.636295,12.625773
+ parent: 1653
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 42.355045,12.735148
+ parent: 1653
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 42.480045,12.875773
+ parent: 1653
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: 4.487433,25.57782
+ parent: 1653
+- proto: SpawnDungeonLootClutterHydroponics
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.40123,24.586424
+ parent: 1653
+ - uid: 650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.573105,24.664549
+ parent: 1653
+ - uid: 794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.36998,24.602049
+ parent: 1653
+ - uid: 834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.653194,28.13544
+ parent: 1653
+ - uid: 839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.38757,28.557316
+ parent: 1653
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 15.14456,32.052025
+ parent: 1653
+ - uid: 1703
+ components:
+ - type: Transform
+ pos: 19.472685,30.69265
+ parent: 1653
+ - uid: 1878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4273477,45.6148
+ parent: 1653
+ - uid: 1951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.403194,27.66669
+ parent: 1653
+ - uid: 2011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.38934,38.48503
+ parent: 1653
+ - uid: 2116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.65123,24.664549
+ parent: 1653
+ - uid: 2137
+ components:
+ - type: Transform
+ pos: 39.424786,9.088586
+ parent: 1653
+ - uid: 2138
+ components:
+ - type: Transform
+ pos: 19.969307,8.854211
+ parent: 1653
+ - uid: 2214
+ components:
+ - type: Transform
+ pos: 35.28683,15.295544
+ parent: 1653
+ - uid: 2232
+ components:
+ - type: Transform
+ pos: 42.617554,13.561169
+ parent: 1653
+ - uid: 2236
+ components:
+ - type: Transform
+ pos: 20.1924,13.848073
+ parent: 1653
+ - uid: 2237
+ components:
+ - type: Transform
+ pos: 33.63986,20.553396
+ parent: 1653
+ - uid: 2238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.63757,28.744816
+ parent: 1653
+ - uid: 2249
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.8492227,47.380424
+ parent: 1653
+ - uid: 2250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.6617227,46.08355
+ parent: 1653
+ - uid: 2255
+ components:
+ - type: Transform
+ pos: 20.6022,48.52105
+ parent: 1653
+ - uid: 2256
+ components:
+ - type: Transform
+ pos: 0.43621778,10.024246
+ parent: 1653
+ - uid: 2257
+ components:
+ - type: Transform
+ pos: 1.2330928,10.617996
+ parent: 1653
+ - uid: 2258
+ components:
+ - type: Transform
+ pos: 2.440703,7.2658243
+ parent: 1653
+ - uid: 2259
+ components:
+ - type: Transform
+ pos: 7.830083,7.3908243
+ parent: 1653
+ - uid: 2261
+ components:
+ - type: Transform
+ pos: 53.629864,15.631865
+ parent: 1653
+ - uid: 2262
+ components:
+ - type: Transform
+ pos: 23.43045,2.4296584
+ parent: 1653
+ - uid: 2263
+ components:
+ - type: Transform
+ pos: 30.352325,4.7421584
+ parent: 1653
+ - uid: 2264
+ components:
+ - type: Transform
+ pos: 31.74295,0.9296584
+ parent: 1653
+- proto: SpawnDungeonLootClutterKitchen
+ entities:
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 12.651115,2.5121582
+ parent: 1653
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 12.41674,2.6215332
+ parent: 1653
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 846
+ components:
+ - type: Transform
+ pos: 41.456974,12.607817
+ parent: 1653
+ - uid: 953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,9.5
+ parent: 1653
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 20.377567,40.61003
+ parent: 1653
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: 10.576561,0.64632124
+ parent: 1653
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: 16.495552,18.596146
+ parent: 1653
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 5.556635,4.5625
+ parent: 1653
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 4.431635,2.609375
+ parent: 1653
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 12.433053,22.58052
+ parent: 1653
+- proto: SpawnDungeonLootKitchenTabletop
+ entities:
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersEngi
+ entities:
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 14.5,42.5
+ parent: 1653
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 1653
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 27.5,9.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersGeneral
+ entities:
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 1653
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1653
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1653
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1653
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1653
+ - uid: 1647
+ components:
+ - type: Transform
+ pos: 44.5,4.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersProtectiveGear
+ entities:
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 1653
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 1.5,40.5
+ parent: 1653
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1653
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 53.5,0.5
+ parent: 1653
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 54.5,0.5
+ parent: 1653
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 34.5,28.5
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: 6.471808,28.42157
+ parent: 1653
+ - uid: 1383
+ components:
+ - type: Transform
+ pos: 4.518683,24.687195
+ parent: 1653
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 53.51587,4.5073996
+ parent: 1653
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: 6.4340506,22.54927
+ parent: 1653
+ - uid: 1948
+ components:
+ - type: Transform
+ pos: 31.578455,8.515948
+ parent: 1653
+ - uid: 2219
+ components:
+ - type: Transform
+ pos: 6.6371756,22.48677
+ parent: 1653
+ - uid: 2260
+ components:
+ - type: Transform
+ pos: 27.429548,8.547074
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsBasicSingle
+ entities:
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 5.548265,35.51595
+ parent: 1653
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 32.723152,40.43838
+ parent: 1653
+ - uid: 1380
+ components:
+ - type: Transform
+ pos: 6.22014,35.594074
+ parent: 1653
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: 22.45877,46.61017
+ parent: 1653
+ - uid: 2228
+ components:
+ - type: Transform
+ pos: 37.582527,40.15713
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableFull
+ entities:
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 20.544882,34.653225
+ parent: 1653
+ - uid: 1424
+ components:
+ - type: Transform
+ pos: 10.458364,7.5208054
+ parent: 1653
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 20.59581,24.60907
+ parent: 1653
+ - uid: 2221
+ components:
+ - type: Transform
+ pos: 1.3789663,26.343445
+ parent: 1653
+ - uid: 2222
+ components:
+ - type: Transform
+ pos: 1.5977163,26.749695
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableSingle
+ entities:
+ - uid: 1882
+ components:
+ - type: Transform
+ pos: 49.337364,15.676198
+ parent: 1653
+ - uid: 1892
+ components:
+ - type: Transform
+ pos: 49.54049,15.457448
+ parent: 1653
+- proto: SpawnDungeonLootMugs
+ entities:
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 2.2211149,10.534292
+ parent: 1653
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 10.69799,4.7152834
+ parent: 1653
+ - uid: 803
+ components:
+ - type: Transform
+ pos: 2.6586149,10.643667
+ parent: 1653
+ - uid: 806
+ components:
+ - type: Transform
+ pos: 2.0023649,10.737417
+ parent: 1653
+ - uid: 814
+ components:
+ - type: Transform
+ pos: 10.401115,4.5277834
+ parent: 1653
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 1.6586149,10.471792
+ parent: 1653
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 20.768192,40.688156
+ parent: 1653
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 20.611942,40.469406
+ parent: 1653
+- proto: SpawnDungeonLootPartsEngi
+ entities:
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 40.448795,13.313273
+ parent: 1653
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 40.417545,13.547648
+ parent: 1653
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 40.58942,13.438273
+ parent: 1653
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 40.62067,12.625773
+ parent: 1653
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 40.43317,12.547648
+ parent: 1653
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 40.480045,12.813273
+ parent: 1653
+- proto: SpawnDungeonLootPowerCell
+ entities:
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 12.357123,39.50088
+ parent: 1653
+ - uid: 1893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.464323,24.536814
+ parent: 1653
+- proto: SpawnDungeonLootSeed
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 1.511581,15.545317
+ parent: 1653
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 16.358246,8.875323
+ parent: 1653
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 16.65512,8.578448
+ parent: 1653
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 1.6289663,27.60907
+ parent: 1653
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 16.420746,9.578448
+ parent: 1653
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 4.3876133,18.64302
+ parent: 1653
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 16.71762,9.390948
+ parent: 1653
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 1.3789663,25.530945
+ parent: 1653
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 33.479237,20.569313
+ parent: 1653
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 16.40512,7.9846983
+ parent: 1653
+ - uid: 934
+ components:
+ - type: Transform
+ pos: 42.505703,9.218622
+ parent: 1653
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 1.4258413,27.39032
+ parent: 1653
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: 1.6602163,25.718445
+ parent: 1653
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: 8.324282,35.59797
+ parent: 1653
+ - uid: 1842
+ components:
+ - type: Transform
+ pos: 45.786953,7.218622
+ parent: 1653
+ - uid: 1959
+ components:
+ - type: Transform
+ pos: 16.65512,7.7190733
+ parent: 1653
+ - uid: 1960
+ components:
+ - type: Transform
+ pos: 19.37387,7.0940733
+ parent: 1653
+ - uid: 2220
+ components:
+ - type: Transform
+ pos: 4.5907383,18.48677
+ parent: 1653
+- proto: SpawnDungeonLootSpesos
+ entities:
+ - uid: 2141
+ components:
+ - type: Transform
+ pos: 11.152621,14.732817
+ parent: 1653
+ - uid: 2216
+ components:
+ - type: Transform
+ pos: 11.402621,14.560942
+ parent: 1653
+ - uid: 2225
+ components:
+ - type: Transform
+ pos: 8.714907,35.53547
+ parent: 1653
+ - uid: 2226
+ components:
+ - type: Transform
+ pos: 3.3711562,30.738594
+ parent: 1653
+ - uid: 2227
+ components:
+ - type: Transform
+ pos: 3.5586562,30.59797
+ parent: 1653
+ - uid: 2230
+ components:
+ - type: Transform
+ pos: 9.18618,25.491379
+ parent: 1653
+ - uid: 2231
+ components:
+ - type: Transform
+ pos: 30.274536,25.974041
+ parent: 1653
+ - uid: 2233
+ components:
+ - type: Transform
+ pos: 48.559433,4.345504
+ parent: 1653
+ - uid: 2234
+ components:
+ - type: Transform
+ pos: 48.606308,4.579879
+ parent: 1653
+ - uid: 2235
+ components:
+ - type: Transform
+ pos: 48.481308,4.626754
+ parent: 1653
+ - uid: 2239
+ components:
+ - type: Transform
+ pos: 32.403194,28.10419
+ parent: 1653
+- proto: SpawnDungeonLootToolsAdvancedEngineering
+ entities:
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 20.498007,36.5126
+ parent: 1653
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 28.449821,21.564896
+ parent: 1653
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: 27.465446,22.564896
+ parent: 1653
+- proto: SpawnDungeonLootToolsBasicEngineering
+ entities:
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 10.509762,45.57892
+ parent: 1653
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 21.404257,36.559475
+ parent: 1653
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: 21.669882,36.4501
+ parent: 1653
+- proto: SpawnDungeonLootToolsHydroponics
+ entities:
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 18.31137,9.562823
+ parent: 1653
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 18.608246,9.672198
+ parent: 1653
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 26.50313,26.29657
+ parent: 1653
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 53.541756,38.679924
parent: 1653
-- proto: SignRedThree
- entities:
- - uid: 1251
+ - uid: 993
components:
- type: Transform
- pos: 48.5,3.5
+ pos: 37.505703,7.421747
parent: 1653
-- proto: SignRedTwo
- entities:
- - uid: 1250
+ - uid: 1378
components:
- type: Transform
- pos: 40.5,1.5
+ pos: 24.59688,27.35907
parent: 1653
-- proto: SignSecureMed
+- proto: SpawnDungeonVendomatsRecreational
entities:
- - uid: 1154
+ - uid: 463
components:
- type: Transform
- pos: 10.5,13.5
+ pos: 7.5,35.5
parent: 1653
-- proto: SignShock
- entities:
- - uid: 1155
+ - uid: 1278
components:
- type: Transform
- pos: 12.5,13.5
+ pos: 16.5,22.5
parent: 1653
-- proto: SilverDoor
- entities:
- - uid: 985
+ - uid: 1284
components:
- type: Transform
- pos: 11.5,13.5
+ pos: 10.5,22.5
parent: 1653
-- proto: SinkWide
- entities:
- - uid: 890
+ - uid: 1629
components:
- type: Transform
- pos: 1.5,20.5
+ pos: 10.5,18.5
parent: 1653
- - uid: 891
+ - uid: 1630
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,19.5
+ pos: 38.5,4.5
parent: 1653
- - uid: 960
+ - uid: 1631
components:
- type: Transform
- pos: 3.5,10.5
+ pos: 29.5,38.5
parent: 1653
-- proto: SmartFridge
- entities:
- - uid: 1458
+ - uid: 1633
components:
- type: Transform
- pos: 23.5,4.5
+ pos: 8.5,10.5
parent: 1653
-- proto: SMESBasic
- entities:
- - uid: 262
+ - uid: 1634
components:
- type: Transform
- pos: 26.5,20.5
+ pos: 37.5,4.5
parent: 1653
- - uid: 539
+ - uid: 1635
components:
- type: Transform
- pos: 11.5,45.5
+ pos: 7.5,10.5
parent: 1653
- - uid: 1485
+ - uid: 1699
components:
- type: Transform
- pos: 28.5,8.5
+ pos: 11.5,4.5
parent: 1653
- - uid: 1486
+ - uid: 1707
components:
- type: Transform
- pos: 29.5,8.5
+ pos: 21.5,40.5
parent: 1653
- - uid: 1487
+ - uid: 1714
components:
- type: Transform
- pos: 30.5,8.5
+ pos: 9.5,10.5
parent: 1653
- proto: SteelBench
entities:
@@ -12312,6 +12543,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 9.5,35.5
parent: 1653
+ - uid: 669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4790325,7.6301804
+ parent: 1653
+ - uid: 686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4634075,6.6145554
+ parent: 1653
- uid: 787
components:
- type: Transform
@@ -12359,18 +12602,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,6.5
parent: 1653
- - uid: 952
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,6.5
- parent: 1653
- - uid: 953
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,7.5
- parent: 1653
- uid: 1269
components:
- type: Transform
@@ -12401,18 +12632,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 30.5,28.5
parent: 1653
-- proto: StorageCanister
- entities:
- - uid: 803
- components:
- - type: Transform
- pos: 16.5,27.5
- parent: 1653
- - uid: 1647
- components:
- - type: Transform
- pos: 40.5,16.5
- parent: 1653
- proto: SubstationBasic
entities:
- uid: 559
@@ -12432,13 +12651,6 @@ entities:
- type: Transform
pos: 29.5,9.5
parent: 1653
-- proto: SurveillanceWirelessCameraAnchoredCircuitboard
- entities:
- - uid: 1197
- components:
- - type: Transform
- pos: 2.4925566,47.576256
- parent: 1653
- proto: Table
entities:
- uid: 145
@@ -12501,10 +12713,10 @@ entities:
- type: Transform
pos: 37.5,40.5
parent: 1653
- - uid: 526
+ - uid: 530
components:
- type: Transform
- pos: 35.5,38.5
+ pos: 32.5,28.5
parent: 1653
- uid: 589
components:
@@ -12676,10 +12888,11 @@ entities:
- type: Transform
pos: 25.5,13.5
parent: 1653
- - uid: 2025
+ - uid: 2023
components:
- type: Transform
- pos: 32.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,38.5
parent: 1653
- uid: 2026
components:
@@ -12712,11 +12925,6 @@ entities:
rot: 3.141592653589793 rad
pos: 4.5,43.5
parent: 1653
- - uid: 868
- components:
- - type: Transform
- pos: 6.5,30.5
- parent: 1653
- uid: 969
components:
- type: Transform
@@ -13021,23 +13229,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 45.5,1.5
parent: 1653
-- proto: TimerTrigger
- entities:
- - uid: 1631
- components:
- - type: Transform
- pos: 40.404037,12.592565
- parent: 1653
- - uid: 1632
- components:
- - type: Transform
- pos: 40.575912,12.73319
- parent: 1653
- - uid: 1633
- components:
- - type: Transform
- pos: 40.654037,12.48319
- parent: 1653
- proto: ToiletEmpty
entities:
- uid: 889
@@ -13053,10 +13244,10 @@ entities:
- type: Transform
pos: 0.5,18.5
parent: 1653
- - uid: 1084
+ - uid: 1880
components:
- type: Transform
- pos: 8.512666,27.639019
+ pos: 10.31355,27.742674
parent: 1653
- uid: 2028
components:
@@ -13161,49 +13352,6 @@ entities:
rot: 3.141592653589793 rad
pos: 44.5,13.5
parent: 1653
-- proto: VendingMachineCigs
- entities:
- - uid: 928
- components:
- - type: Transform
- pos: 10.5,18.5
- parent: 1653
- - uid: 1278
- components:
- - type: Transform
- pos: 37.5,4.5
- parent: 1653
-- proto: VendingMachineCoffee
- entities:
- - uid: 522
- components:
- - type: Transform
- pos: 29.5,38.5
- parent: 1653
- - uid: 642
- components:
- - type: Transform
- pos: 7.5,35.5
- parent: 1653
- - uid: 968
- components:
- - type: Transform
- pos: 8.5,10.5
- parent: 1653
-- proto: VendingMachineCola
- entities:
- - uid: 1277
- components:
- - type: Transform
- pos: 38.5,4.5
- parent: 1653
-- proto: VendingMachineHydrobe
- entities:
- - uid: 1409
- components:
- - type: Transform
- pos: 9.5,10.5
- parent: 1653
- proto: VendingMachineWinter
entities:
- uid: 1329
@@ -13642,6 +13790,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,13.5
parent: 1653
+ - uid: 849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,30.5
+ parent: 1653
- uid: 1330
components:
- type: Transform
@@ -13911,11 +14065,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 47.5,4.5
parent: 1653
- - uid: 1703
- components:
- - type: Transform
- pos: 6.5,32.5
- parent: 1653
- uid: 1704
components:
- type: Transform
@@ -13958,21 +14107,11 @@ entities:
- type: Transform
pos: 16.5,32.5
parent: 1653
- - uid: 834
- components:
- - type: Transform
- pos: 14.5,26.5
- parent: 1653
- uid: 835
components:
- type: Transform
pos: 14.5,27.5
parent: 1653
- - uid: 1168
- components:
- - type: Transform
- pos: 5.5,6.5
- parent: 1653
- uid: 2007
components:
- type: Transform
@@ -13983,30 +14122,6 @@ entities:
- type: Transform
pos: 30.5,27.5
parent: 1653
-- proto: WardrobeMixedFilled
- entities:
- - uid: 1257
- components:
- - type: Transform
- pos: 44.5,4.5
- parent: 1653
-- proto: WaterCooler
- entities:
- - uid: 463
- components:
- - type: Transform
- pos: 11.5,4.5
- parent: 1653
- - uid: 512
- components:
- - type: Transform
- pos: 21.5,40.5
- parent: 1653
- - uid: 967
- components:
- - type: Transform
- pos: 7.5,10.5
- parent: 1653
- proto: WaterTankFull
entities:
- uid: 1372
@@ -14031,13 +14146,6 @@ entities:
- type: Transform
pos: 19.5,15.5
parent: 1653
-- proto: Welder
- entities:
- - uid: 663
- components:
- - type: Transform
- pos: 20.605528,36.564884
- parent: 1653
- proto: WeldingFuelTankFull
entities:
- uid: 881
@@ -14130,6 +14238,29 @@ entities:
rot: 3.141592653589793 rad
pos: 29.5,27.5
parent: 1653
+ - uid: 2251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,44.5
+ parent: 1653
+ - uid: 2252
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,47.5
+ parent: 1653
+ - uid: 2253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,46.5
+ parent: 1653
+ - uid: 2254
+ components:
+ - type: Transform
+ pos: 4.5,43.5
+ parent: 1653
- proto: WindoorSecure
entities:
- uid: 691
@@ -14302,6 +14433,18 @@ entities:
- type: Transform
pos: 2.5,8.5
parent: 1653
+ - uid: 1998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 1653
+ - uid: 1999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 1653
- proto: WindowReinforcedDirectional
entities:
- uid: 76
diff --git a/Resources/Maps/_NF/Dungeon/cave_factory.yml b/Resources/Maps/_NF/Dungeon/cave_factory.yml
index d030513cb9a..ceebab0f3ab 100644
--- a/Resources/Maps/_NF/Dungeon/cave_factory.yml
+++ b/Resources/Maps/_NF/Dungeon/cave_factory.yml
@@ -11,15 +11,15 @@ tilemap:
63: FloorLino
65: FloorMetalDiamond
78: FloorReinforced
- 83: FloorShuttleOrange
- 90: FloorSteel
- 100: FloorSteelMini
- 101: FloorSteelMono
- 105: FloorTechMaint
- 109: FloorWhite
- 113: FloorWhiteMini
- 119: FloorWood
- 122: Plating
+ 85: FloorShuttleOrange
+ 92: FloorSteel
+ 102: FloorSteelMini
+ 103: FloorSteelMono
+ 107: FloorTechMaint
+ 111: FloorWhite
+ 115: FloorWhiteMini
+ 121: FloorWood
+ 125: Plating
entities:
- proto: ""
entities:
@@ -35,83 +35,83 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: WgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAFwAAAAABFwAAAAAEFwAAAAAEegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAWgAAAAAAWgAAAAABFwAAAAAGFwAAAAAGFwAAAAAEWgAAAAABWgAAAAADegAAAAAAWgAAAAADegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAACIwAAAAAAHgAAAAABFwAAAAACHgAAAAAAIwAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAWgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAABFwAAAAACFwAAAAAEFwAAAAAEWgAAAAABaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAFwAAAAAAFwAAAAADFwAAAAAGegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAAAHgAAAAADFwAAAAAEFwAAAAABFwAAAAACFwAAAAAEFwAAAAAFHgAAAAACHgAAAAACHgAAAAABUwAAAAAAZQAAAAACWgAAAAAAZQAAAAAAegAAAAAAHgAAAAACIwAAAAADegAAAAAAFwAAAAADFwAAAAAEFwAAAAAGFwAAAAABFwAAAAADegAAAAAAIwAAAAACHgAAAAABUwAAAAAAZAAAAAADZAAAAAABZAAAAAACegAAAAAAHgAAAAAAIwAAAAADegAAAAAAFwAAAAABFwAAAAADFwAAAAAGFwAAAAACFwAAAAAFegAAAAAAIwAAAAAAHgAAAAAAUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAADWgAAAAABHgAAAAAAIwAAAAABegAAAAAAFwAAAAAFFwAAAAACFwAAAAADFwAAAAACFwAAAAAFegAAAAAAIwAAAAACHgAAAAADUwAAAAAAZAAAAAAAZAAAAAAAZAAAAAABegAAAAAAHgAAAAACHgAAAAAAHgAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAACHgAAAAABHgAAAAACHgAAAAADUwAAAAAAZQAAAAACWgAAAAACZQAAAAACegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAADegAAAAAAHgAAAAABegAAAAAAHgAAAAADHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAADdwAAAAABUwAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAABdwAAAAACUwAAAAAAHgAAAAABHgAAAAACFwAAAAAFFwAAAAACFwAAAAADHgAAAAABHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAABdwAAAAADUwAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAADUwAAAAAA
+ tiles: XAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAACfQAAAAAAFwAAAAABFwAAAAAEFwAAAAAEfQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAABFwAAAAAGFwAAAAAGFwAAAAAEXAAAAAABXAAAAAADfQAAAAAAXAAAAAADfQAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAACIwAAAAAAHgAAAAABFwAAAAACHgAAAAAAIwAAAAAAXAAAAAACXAAAAAADXAAAAAAAfQAAAAAAXAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAXAAAAAABFwAAAAACFwAAAAAEFwAAAAAEXAAAAAABawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAFwAAAAAAFwAAAAADFwAAAAAGfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAAAHgAAAAADFwAAAAAEFwAAAAABFwAAAAACFwAAAAAEFwAAAAAFHgAAAAACHgAAAAACHgAAAAABVQAAAAAAZwAAAAACXAAAAAAAZwAAAAAAfQAAAAAAHgAAAAACIwAAAAADfQAAAAAAFwAAAAADFwAAAAAEFwAAAAAGFwAAAAABFwAAAAADfQAAAAAAIwAAAAACHgAAAAABVQAAAAAAZgAAAAADZgAAAAABZgAAAAACfQAAAAAAHgAAAAAAIwAAAAADfQAAAAAAFwAAAAABFwAAAAADFwAAAAAGFwAAAAACFwAAAAAFfQAAAAAAIwAAAAAAHgAAAAAAVQAAAAAAZgAAAAAAZgAAAAAAZgAAAAADXAAAAAABHgAAAAAAIwAAAAABfQAAAAAAFwAAAAAFFwAAAAACFwAAAAADFwAAAAACFwAAAAAFfQAAAAAAIwAAAAACHgAAAAADVQAAAAAAZgAAAAAAZgAAAAAAZgAAAAABfQAAAAAAHgAAAAACHgAAAAAAHgAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAACHgAAAAABHgAAAAACHgAAAAADVQAAAAAAZwAAAAACXAAAAAACZwAAAAACfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAADfQAAAAAAHgAAAAABfQAAAAAAHgAAAAADHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAACeQAAAAACeQAAAAADeQAAAAABVQAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAABeQAAAAABeQAAAAABeQAAAAACVQAAAAAAHgAAAAABHgAAAAACFwAAAAAFFwAAAAACFwAAAAADHgAAAAABHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAAAeQAAAAACeQAAAAABeQAAAAADVQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAeQAAAAADVQAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: HgAAAAADHgAAAAADegAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACUwAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABUwAAAAAAaQAAAAAAegAAAAAAWgAAAAAAaQAAAAAAHgAAAAABegAAAAAAFwAAAAADegAAAAAAHgAAAAACUwAAAAAAWgAAAAAAZAAAAAACZAAAAAADZAAAAAABWgAAAAACUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAADegAAAAAAHgAAAAACFwAAAAACFwAAAAAFFwAAAAADHgAAAAADUwAAAAAAWgAAAAABZAAAAAADZAAAAAACZAAAAAABWgAAAAAAUwAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABHgAAAAAAegAAAAAAFwAAAAAAegAAAAAAHgAAAAADUwAAAAAAWgAAAAAAZAAAAAABZAAAAAADZAAAAAADWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADUwAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAADWgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAACHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAAAcQAAAAAAcQAAAAADUwAAAAAAWgAAAAACWgAAAAABZQAAAAABUwAAAAAAHgAAAAADFwAAAAADHgAAAAABUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAAAcQAAAAABcQAAAAADUwAAAAAAWgAAAAADWgAAAAAAZQAAAAADUwAAAAAAHgAAAAAAFwAAAAACHgAAAAACUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAAAcQAAAAADcQAAAAADUwAAAAAAWgAAAAADWgAAAAACWgAAAAACUwAAAAAAHgAAAAABFwAAAAADHgAAAAACUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAAAcQAAAAABUwAAAAAAZQAAAAABWgAAAAAAWgAAAAABUwAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAegAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAAAcQAAAAACcQAAAAACUwAAAAAAZQAAAAACWgAAAAABWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAACHgAAAAABFwAAAAABFwAAAAAGFwAAAAAEFwAAAAABFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAAGHgAAAAAAHgAAAAAAUwAAAAAAWgAAAAAAWgAAAAACHgAAAAADHgAAAAADHgAAAAAAFwAAAAAGFwAAAAADFwAAAAABFwAAAAABFwAAAAAAFwAAAAADFwAAAAABHgAAAAABHgAAAAAAHgAAAAADUwAAAAAAaQAAAAAAegAAAAAA
+ tiles: HgAAAAADHgAAAAADfQAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAeQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACVQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABVQAAAAAAawAAAAAAfQAAAAAAXAAAAAAAawAAAAAAHgAAAAABfQAAAAAAFwAAAAADfQAAAAAAHgAAAAACVQAAAAAAXAAAAAAAZgAAAAACZgAAAAADZgAAAAABXAAAAAACVQAAAAAAawAAAAAAawAAAAAAXAAAAAADfQAAAAAAHgAAAAACFwAAAAACFwAAAAAFFwAAAAADHgAAAAADVQAAAAAAXAAAAAABZgAAAAADZgAAAAACZgAAAAABXAAAAAAAVQAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABHgAAAAAAfQAAAAAAFwAAAAAAfQAAAAAAHgAAAAADVQAAAAAAXAAAAAAAZgAAAAABZgAAAAADZgAAAAADXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADVQAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAADXAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAACHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAAAcwAAAAAAcwAAAAADVQAAAAAAXAAAAAACXAAAAAABZwAAAAABVQAAAAAAHgAAAAADFwAAAAADHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAAAcwAAAAABcwAAAAADVQAAAAAAXAAAAAADXAAAAAAAZwAAAAADVQAAAAAAHgAAAAAAFwAAAAACHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAAAcwAAAAADcwAAAAADVQAAAAAAXAAAAAADXAAAAAACXAAAAAACVQAAAAAAHgAAAAABFwAAAAADHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAAAcwAAAAABVQAAAAAAZwAAAAABXAAAAAAAXAAAAAABVQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAAAcwAAAAACcwAAAAACVQAAAAAAZwAAAAACXAAAAAABXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAACHgAAAAABFwAAAAABFwAAAAAGFwAAAAAEFwAAAAABFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAAGHgAAAAAAHgAAAAAAVQAAAAAAXAAAAAAAXAAAAAACHgAAAAADHgAAAAADHgAAAAAAFwAAAAAGFwAAAAADFwAAAAABFwAAAAABFwAAAAAAFwAAAAADFwAAAAABHgAAAAABHgAAAAAAHgAAAAADVQAAAAAAawAAAAAAfQAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: WgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAACegAAAAAAWgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAADegAAAAAAWgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABegAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABegAAAAAAaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAABegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAABWgAAAAAAegAAAAAAZQAAAAAAWgAAAAACZQAAAAABUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAACegAAAAAAZAAAAAAAZAAAAAABZAAAAAAAUwAAAAAATgAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAACZAAAAAABZAAAAAAAZAAAAAAAUwAAAAAATgAAAAAAegAAAAAAKwAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAZAAAAAACZAAAAAADZAAAAAACUwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAegAAAAAAZQAAAAAAWgAAAAACZQAAAAADUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAADZAAAAAABZAAAAAADZAAAAAADZAAAAAAAZAAAAAADWgAAAAABUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACegAAAAAAUwAAAAAAWgAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABZAAAAAACWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAWgAAAAACZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABegAAAAAAUwAAAAAA
+ tiles: XAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAACfQAAAAAAXAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAADfQAAAAAAXAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABfQAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABfQAAAAAAawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAABfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAAAfQAAAAAAZwAAAAAAXAAAAAACZwAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAACXAAAAAACfQAAAAAAZgAAAAAAZgAAAAABZgAAAAAAVQAAAAAATgAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAACZgAAAAABZgAAAAAAZgAAAAAAVQAAAAAATgAAAAAAfQAAAAAAKwAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAABfQAAAAAAZgAAAAACZgAAAAADZgAAAAACVQAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAfQAAAAAAZwAAAAAAXAAAAAACZwAAAAADVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAADZgAAAAABZgAAAAADZgAAAAADZgAAAAAAZgAAAAADXAAAAAABVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACfQAAAAAAVQAAAAAAXAAAAAACZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAABZgAAAAACXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAACZgAAAAADZgAAAAACZgAAAAADZgAAAAAAZgAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABfQAAAAAAVQAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: WgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAHgAAAAABIwAAAAABaQAAAAAAUwAAAAAAWgAAAAADZAAAAAADZAAAAAACZAAAAAAAWgAAAAACUwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAIwAAAAACegAAAAAAWgAAAAACUwAAAAAAWgAAAAABZAAAAAACZAAAAAADZAAAAAACWgAAAAAAUwAAAAAAegAAAAAAWgAAAAADegAAAAAAWgAAAAADegAAAAAAUwAAAAAAHgAAAAABegAAAAAAWgAAAAABUwAAAAAAWgAAAAAAZAAAAAACZAAAAAADZAAAAAAAWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAIwAAAAADegAAAAAAWgAAAAACUwAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAHgAAAAACIwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAWgAAAAADWgAAAAACZQAAAAADUwAAAAAAWgAAAAACWgAAAAADWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAAAZQAAAAABUwAAAAAAWgAAAAADWgAAAAADWgAAAAAAUwAAAAAAWgAAAAADWgAAAAAAWgAAAAABUwAAAAAAWgAAAAACWgAAAAACWgAAAAACUwAAAAAAWgAAAAAAWgAAAAABWgAAAAAAUwAAAAAAZQAAAAABWgAAAAAAZQAAAAACUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAZQAAAAACWgAAAAAAWgAAAAAAUwAAAAAAZQAAAAAAWgAAAAAAZQAAAAABUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAZQAAAAABWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: XAAAAAABXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAHgAAAAABIwAAAAABawAAAAAAVQAAAAAAXAAAAAADZgAAAAADZgAAAAACZgAAAAAAXAAAAAACVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAIwAAAAACfQAAAAAAXAAAAAACVQAAAAAAXAAAAAABZgAAAAACZgAAAAADZgAAAAACXAAAAAAAVQAAAAAAfQAAAAAAXAAAAAADfQAAAAAAXAAAAAADfQAAAAAAVQAAAAAAHgAAAAABfQAAAAAAXAAAAAABVQAAAAAAXAAAAAAAZgAAAAACZgAAAAADZgAAAAAAXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAIwAAAAADfQAAAAAAXAAAAAACVQAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAHgAAAAACIwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAADXAAAAAACZwAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAAAZwAAAAABVQAAAAAAXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAXAAAAAADXAAAAAAAXAAAAAABVQAAAAAAXAAAAAACXAAAAAACXAAAAAACVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAVQAAAAAAZwAAAAABXAAAAAAAZwAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAZwAAAAACXAAAAAAAXAAAAAAAVQAAAAAAZwAAAAAAXAAAAAAAZwAAAAABVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAZwAAAAABXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: HgAAAAABHgAAAAABFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAABFwAAAAACFwAAAAAGFwAAAAADHgAAAAAAHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAdwAAAAADdwAAAAABdwAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAdwAAAAABdwAAAAABdwAAAAACWgAAAAABaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAdwAAAAABdwAAAAAAdwAAAAADegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAACFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAADHgAAAAAAUwAAAAAAHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACUwAAAAAAHgAAAAABFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAACFwAAAAACHgAAAAACUwAAAAAAHgAAAAADTgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAABUwAAAAAAHgAAAAACFwAAAAACFwAAAAAEFwAAAAAFFwAAAAABFwAAAAADHgAAAAABUwAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAFwAAAAAAFwAAAAAAegAAAAAAIwAAAAABegAAAAAAFwAAAAAEFwAAAAAGUwAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAUwAAAAAAFwAAAAAAFwAAAAACFwAAAAAFHgAAAAABFwAAAAAEFwAAAAADFwAAAAAFUwAAAAAAbQAAAAABbQAAAAAAegAAAAAAbQAAAAABegAAAAAAbQAAAAABbQAAAAADUwAAAAAAegAAAAAAFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAAAegAAAAAAUwAAAAAAIwAAAAABIwAAAAADIwAAAAAAaQAAAAAAIwAAAAACIwAAAAABIwAAAAACUwAAAAAAIwAAAAACHgAAAAAAFwAAAAAEFwAAAAADFwAAAAAGHgAAAAABIwAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAAFwAAAAADFwAAAAADFwAAAAAGFwAAAAAGFwAAAAADegAAAAAAUwAAAAAAIwAAAAABIwAAAAACIwAAAAACaQAAAAAAIwAAAAAAIwAAAAADIwAAAAADUwAAAAAAFwAAAAAEFwAAAAAFFwAAAAABHgAAAAADFwAAAAAGFwAAAAAAFwAAAAABUwAAAAAAQQAAAAAAQQAAAAAAIwAAAAABaQAAAAAAIwAAAAADQQAAAAAAQQAAAAAAUwAAAAAA
+ tiles: HgAAAAABHgAAAAABFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAAFFwAAAAABFwAAAAACFwAAAAAGFwAAAAADHgAAAAAAHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAeQAAAAADeQAAAAABeQAAAAADfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAeQAAAAABeQAAAAABeQAAAAACXAAAAAABawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAeQAAAAABeQAAAAAAeQAAAAADfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAACFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAADHgAAAAAAVQAAAAAAHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACVQAAAAAAHgAAAAABFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAACFwAAAAACHgAAAAACVQAAAAAAHgAAAAADTgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAABVQAAAAAAHgAAAAACFwAAAAACFwAAAAAEFwAAAAAFFwAAAAABFwAAAAADHgAAAAABVQAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAFwAAAAAAFwAAAAAAfQAAAAAAIwAAAAABfQAAAAAAFwAAAAAEFwAAAAAGVQAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAAAVQAAAAAAFwAAAAAAFwAAAAACFwAAAAAFHgAAAAABFwAAAAAEFwAAAAADFwAAAAAFVQAAAAAAbwAAAAABbwAAAAAAfQAAAAAAbwAAAAABfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAfQAAAAAAFwAAAAAEFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAAAfQAAAAAAVQAAAAAAIwAAAAABIwAAAAADIwAAAAAAawAAAAAAIwAAAAACIwAAAAABIwAAAAACVQAAAAAAIwAAAAACHgAAAAAAFwAAAAAEFwAAAAADFwAAAAAGHgAAAAABIwAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAAFwAAAAADFwAAAAADFwAAAAAGFwAAAAAGFwAAAAADfQAAAAAAVQAAAAAAIwAAAAABIwAAAAACIwAAAAACawAAAAAAIwAAAAAAIwAAAAADIwAAAAADVQAAAAAAFwAAAAAEFwAAAAAFFwAAAAABHgAAAAADFwAAAAAGFwAAAAAAFwAAAAABVQAAAAAAQQAAAAAAQQAAAAAAIwAAAAABawAAAAAAIwAAAAADQQAAAAAAQQAAAAAAVQAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: FwAAAAADFwAAAAABegAAAAAAIwAAAAACegAAAAAAFwAAAAAEFwAAAAADUwAAAAAAQQAAAAAAQQAAAAAAIwAAAAAAaQAAAAAAIwAAAAAAQQAAAAAAQQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: FwAAAAADFwAAAAABfQAAAAAAIwAAAAACfQAAAAAAFwAAAAAEFwAAAAADVQAAAAAAQQAAAAAAQQAAAAAAIwAAAAAAawAAAAAAIwAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: aQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAABZAAAAAADZAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAUwAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZAAAAAAAZAAAAAADZAAAAAACWgAAAAACdwAAAAACdwAAAAABdwAAAAABUwAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAZAAAAAADZAAAAAADZAAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAADUwAAAAAAHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAABUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAABZAAAAAADZAAAAAAAZAAAAAABZAAAAAADZAAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAABUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAADWgAAAAABegAAAAAAWgAAAAAAegAAAAAAWgAAAAADWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAaQAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADaQAAAAAAUwAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAAUwAAAAAAaQAAAAAAWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABaQAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAaQAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAWgAAAAABWgAAAAABegAAAAAAWgAAAAADegAAAAAAWgAAAAABWgAAAAABUwAAAAAA
+ tiles: awAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAZgAAAAABZgAAAAADZgAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVQAAAAAAHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAZgAAAAADZgAAAAACXAAAAAACeQAAAAACeQAAAAABeQAAAAABVQAAAAAAHgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAZgAAAAADZgAAAAADZgAAAAAAfQAAAAAAeQAAAAACeQAAAAABeQAAAAADVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAABZgAAAAADZgAAAAAAZgAAAAABZgAAAAADZgAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAADXAAAAAABfQAAAAAAXAAAAAAAfQAAAAAAXAAAAAADXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAawAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADawAAAAAAVQAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAAVQAAAAAAawAAAAAAXAAAAAADawAAAAAAawAAAAAAawAAAAAAXAAAAAABawAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAawAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAABXAAAAAABfQAAAAAAXAAAAAADfQAAAAAAXAAAAAABXAAAAAABVQAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: aQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: awAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: ZQAAAAACZQAAAAABWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAAAWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAABWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: ZwAAAAACZwAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAABZwAAAAAAXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAABZwAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADIwAAAAADHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAIwAAAAADHgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACIwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADIwAAAAADHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAIwAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAIwAAAAADHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACIwAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: GridPathfinding
- type: Gravity
@@ -3127,15 +3127,11 @@ entities:
entities:
- uid: 1109
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,35.5
parent: 1
- uid: 1110
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,35.5
parent: 1
@@ -3143,8 +3139,6 @@ entities:
entities:
- uid: 1510
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,43.5
parent: 1
@@ -3179,15 +3173,11 @@ entities:
entities:
- uid: 1816
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,44.5
parent: 1
- uid: 1817
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,46.5
parent: 1
@@ -3302,83 +3292,21 @@ entities:
entities:
- uid: 1595
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,7.5
parent: 1
- uid: 1596
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,9.5
parent: 1
- uid: 1597
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,7.5
parent: 1
-- proto: BoxFolderBlack
- entities:
- - uid: 727
- components:
- - type: Transform
- pos: 10.690479,19.262342
- parent: 1
- - uid: 1943
- components:
- - type: Transform
- pos: 19.375683,1.6482089
- parent: 1
-- proto: BoxFolderGrey
- entities:
- - uid: 726
- components:
- - type: Transform
- pos: 7.2148314,22.575037
- parent: 1
- - uid: 1942
- components:
- - type: Transform
- pos: 20.03422,1.5311357
- parent: 1
-- proto: BoxFolderYellow
- entities:
- - uid: 322
- components:
- - type: Transform
- pos: 10.732327,19.013432
- parent: 1
- - uid: 1941
- components:
- - type: Transform
- pos: 20.268366,1.7067454
- parent: 1
-- proto: BoxMouthSwab
- entities:
- - uid: 1471
- components:
- - type: Transform
- pos: 12.356534,44.605965
- parent: 1
-- proto: BoxSterileMask
- entities:
- - uid: 1472
- components:
- - type: Transform
- pos: 12.683106,44.705303
- parent: 1
- proto: BrokenBottle
entities:
- - uid: 1686
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.063513,27.520548
- parent: 1
- uid: 1876
components:
- type: Transform
@@ -6554,98 +6482,21 @@ entities:
parent: 1
- proto: CableApcStack1
entities:
- - uid: 250
- components:
- - type: Transform
- pos: 27.600769,0.794665
- parent: 1
- - uid: 562
- components:
- - type: Transform
- pos: 22.55855,28.419258
- parent: 1
- - uid: 596
- components:
- - type: Transform
- pos: 22.324404,24.702185
- parent: 1
- - uid: 600
- components:
- - type: Transform
- pos: 22.500013,24.672916
- parent: 1
- uid: 614
components:
- type: Transform
pos: 24.727789,25.131104
parent: 1
- - uid: 615
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.942423,28.6433
- parent: 1
- uid: 619
components:
- type: Transform
pos: 24.610716,24.706713
parent: 1
- - uid: 635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.566813,28.233543
- parent: 1
- uid: 655
components:
- type: Transform
pos: 16.273203,19.650417
parent: 1
- - uid: 802
- components:
- - type: Transform
- pos: 25.391014,0.8824698
- parent: 1
- - uid: 803
- components:
- - type: Transform
- pos: 25.537354,0.8824698
- parent: 1
- - uid: 810
- components:
- - type: Transform
- pos: 25.303207,3.9702747
- parent: 1
- - uid: 811
- components:
- - type: Transform
- pos: 27.5715,3.9410064
- parent: 1
- - uid: 812
- components:
- - type: Transform
- pos: 27.351988,3.8971043
- parent: 1
- - uid: 813
- components:
- - type: Transform
- pos: 27.395891,0.98490906
- parent: 1
- - uid: 1638
- components:
- - type: Transform
- pos: 24.421375,43.458683
- parent: 1
- - uid: 1639
- components:
- - type: Transform
- pos: 24.596985,43.195267
- parent: 1
- - uid: 1640
- components:
- - type: Transform
- pos: 30.421375,47.702587
- parent: 1
- uid: 1641
components:
- type: Transform
@@ -6657,27 +6508,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 26.13357,48.49283
parent: 1
- - uid: 1648
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.333569,42.726974
- parent: 1
- - uid: 1892
- components:
- - type: Transform
- pos: 14.64135,48.323936
- parent: 1
- - uid: 1893
- components:
- - type: Transform
- pos: 14.480375,48.601986
- parent: 1
- - uid: 1903
- components:
- - type: Transform
- pos: 14.2754965,48.338573
- parent: 1
- proto: CableHV
entities:
- uid: 462
@@ -6988,18 +6818,6 @@ entities:
rot: 3.141592653589793 rad
pos: 20.5,45.5
parent: 1
-- proto: CapacitorStockPart
- entities:
- - uid: 1655
- components:
- - type: Transform
- pos: 24.714058,43.61966
- parent: 1
- - uid: 1661
- components:
- - type: Transform
- pos: 24.596985,43.458683
- parent: 1
- proto: CarpetOrange
entities:
- uid: 1111
@@ -7813,13 +7631,6 @@ entities:
- type: Transform
pos: 28.5,47.5
parent: 1
-- proto: Cautery
- entities:
- - uid: 1469
- components:
- - type: Transform
- pos: 8.533231,42.775993
- parent: 1
- proto: Chair
entities:
- uid: 23
@@ -8029,69 +7840,6 @@ entities:
- type: Transform
pos: 7.4719925,36.539555
parent: 1
-- proto: ClosetEmergencyFilledRandom
- entities:
- - uid: 1198
- components:
- - type: Transform
- pos: 12.5,30.5
- parent: 1
- - uid: 1199
- components:
- - type: Transform
- pos: 0.5,32.5
- parent: 1
- - uid: 1200
- components:
- - type: Transform
- pos: 9.5,9.5
- parent: 1
- - uid: 1202
- components:
- - type: Transform
- pos: 1.5,7.5
- parent: 1
-- proto: ClosetFireFilled
- entities:
- - uid: 1189
- components:
- - type: Transform
- pos: 1.5,9.5
- parent: 1
- - uid: 1190
- components:
- - type: Transform
- pos: 9.5,7.5
- parent: 1
- - uid: 1191
- components:
- - type: Transform
- pos: 6.5,40.5
- parent: 1
- - uid: 1192
- components:
- - type: Transform
- pos: 0.5,38.5
- parent: 1
-- proto: ClosetRadiationSuitFilled
- entities:
- - uid: 546
- components:
- - type: Transform
- pos: 12.5,27.5
- parent: 1
-- proto: ClosetToolFilled
- entities:
- - uid: 318
- components:
- - type: Transform
- pos: 16.5,22.5
- parent: 1
- - uid: 1002
- components:
- - type: Transform
- pos: 14.5,30.5
- parent: 1
- proto: ClosetWallMaintenanceFilledRandom
entities:
- uid: 499
@@ -8123,25 +7871,6 @@ entities:
- type: Transform
pos: 12.473012,6.5343294
parent: 1
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 549
- components:
- - type: Transform
- pos: 18.585484,25.637018
- parent: 1
- - uid: 1103
- components:
- - type: Transform
- pos: 25.666832,30.643515
- parent: 1
-- proto: ClothingHandsGlovesColorYellow
- entities:
- - uid: 1908
- components:
- - type: Transform
- pos: 19.384867,18.550463
- parent: 1
- proto: ClothingHandsGlovesNitrile
entities:
- uid: 1709
@@ -8149,13 +7878,6 @@ entities:
- type: Transform
pos: 10.432637,44.476112
parent: 1
-- proto: ClothingHeadHatFedoraBrown
- entities:
- - uid: 578
- components:
- - type: Transform
- pos: 12.686508,13.58602
- parent: 1
- proto: ClothingHeadHatSurgcapPurple
entities:
- uid: 1705
@@ -8170,46 +7892,6 @@ entities:
- type: Transform
pos: 34.666565,24.66942
parent: 1
-- proto: ClothingMaskGasAtmos
- entities:
- - uid: 553
- components:
- - type: Transform
- pos: 12.649642,25.680922
- parent: 1
-- proto: ClothingNeckTieDet
- entities:
- - uid: 574
- components:
- - type: Transform
- pos: 12.714905,13.486683
- parent: 1
-- proto: ClothingOuterCoatDetective
- entities:
- - uid: 575
- components:
- - type: Transform
- pos: 13.396446,12.479115
- parent: 1
-- proto: ClothingOuterWinterAtmos
- entities:
- - uid: 563
- components:
- - type: Transform
- pos: 12.664276,24.51019
- parent: 1
- - uid: 756
- components:
- - type: Transform
- pos: 22.44645,6.8017826
- parent: 1
-- proto: ClothingShoesBootsMag
- entities:
- - uid: 844
- components:
- - type: Transform
- pos: 18.2928,25.549213
- parent: 1
- proto: ClothingUniformJumpskirtColorMaroon
entities:
- uid: 1708
@@ -8217,18 +7899,6 @@ entities:
- type: Transform
pos: 10.673761,44.53288
parent: 1
-- proto: ClothingUniformJumpsuitAtmosCasual
- entities:
- - uid: 260
- components:
- - type: Transform
- pos: 22.680597,6.6554413
- parent: 1
- - uid: 460
- components:
- - type: Transform
- pos: 12.386227,24.58336
- parent: 1
- proto: ClothingUniformJumpsuitColorMaroon
entities:
- uid: 1707
@@ -8584,13 +8254,6 @@ entities:
- type: Transform
pos: 14.5,44.5
parent: 1
-- proto: DisposalMachineFrame
- entities:
- - uid: 823
- components:
- - type: Transform
- pos: 24.5,3.5
- parent: 1
- proto: DisposalUnit
entities:
- uid: 550
@@ -8632,11 +8295,6 @@ entities:
- type: Transform
pos: 16.5,13.5
parent: 1
- - uid: 722
- components:
- - type: Transform
- pos: 18.5,21.5
- parent: 1
- proto: DoorElectronics
entities:
- uid: 1069
@@ -8657,32 +8315,6 @@ entities:
- type: Transform
pos: 13.5,34.5
parent: 1
-- proto: DrinkDetFlask
- entities:
- - uid: 1572
- components:
- - type: Transform
- pos: 12.606661,13.037249
- parent: 1
-- proto: DrinkMugMetal
- entities:
- - uid: 1289
- components:
- - type: Transform
- pos: 22.442232,12.514399
- parent: 1
-- proto: DrinkMugRed
- entities:
- - uid: 720
- components:
- - type: Transform
- pos: 22.448559,18.561966
- parent: 1
- - uid: 1288
- components:
- - type: Transform
- pos: 22.328642,12.741456
- parent: 1
- proto: DrinkShinyFlask
entities:
- uid: 1868
@@ -8690,18 +8322,6 @@ entities:
- type: Transform
pos: 6.890398,22.663696
parent: 1
-- proto: DrinkShotGlass
- entities:
- - uid: 579
- components:
- - type: Transform
- pos: 12.412022,12.535878
- parent: 1
- - uid: 580
- components:
- - type: Transform
- pos: 12.539811,12.748745
- parent: 1
- proto: DrinkVacuumFlask
entities:
- uid: 1946
@@ -8716,16 +8336,6 @@ entities:
- type: Transform
pos: 18.373508,18.661304
parent: 1
- - uid: 761
- components:
- - type: Transform
- pos: 6.313587,19.590261
- parent: 1
- - uid: 762
- components:
- - type: Transform
- pos: 6.441377,19.419968
- parent: 1
- proto: EmergencyLight
entities:
- uid: 279
@@ -9036,32 +8646,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
-- proto: EmergencyRollerBed
- entities:
- - uid: 1136
- components:
- - type: Transform
- pos: 30.5,25.5
- parent: 1
- - uid: 1137
- components:
- - type: Transform
- pos: 30.5,24.5
- parent: 1
-- proto: EngineeringTechFabCircuitboard
- entities:
- - uid: 257
- components:
- - type: Transform
- pos: 32.53965,8.556057
- parent: 1
-- proto: ExosuitFabricator
- entities:
- - uid: 1900
- components:
- - type: Transform
- pos: 13.5,48.5
- parent: 1
- proto: ExtinguisherCabinetFilled
entities:
- uid: 864
@@ -9189,32 +8773,6 @@ entities:
- type: Transform
pos: 1.0221081,43.43039
parent: 1
-- proto: FoodPlateSmallPlastic
- entities:
- - uid: 529
- components:
- - type: Transform
- pos: 17.462528,12.615073
- parent: 1
-- proto: ForkPlastic
- entities:
- - uid: 531
- components:
- - type: Transform
- pos: 17.405733,12.600882
- parent: 1
-- proto: GasAnalyzer
- entities:
- - uid: 764
- components:
- - type: Transform
- pos: 22.29328,10.577737
- parent: 1
- - uid: 1938
- components:
- - type: Transform
- pos: 19.624464,3.6238194
- parent: 1
- proto: GasCanisterBrokenBase
entities:
- uid: 3
@@ -9395,13 +8953,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 31.5,36.5
parent: 1
-- proto: GatfruitSeeds
- entities:
- - uid: 949
- components:
- - type: Transform
- pos: 8.523222,24.511005
- parent: 1
- proto: Gauze
entities:
- uid: 1477
@@ -9416,36 +8967,11 @@ entities:
- type: Transform
pos: 12.604239,6.685885
parent: 1
- - uid: 1571
- components:
- - type: Transform
- pos: 10.332224,19.223463
- parent: 1
- - uid: 1573
- components:
- - type: Transform
- pos: 18.562387,25.674908
- parent: 1
- - uid: 1574
- components:
- - type: Transform
- pos: 30.378033,27.59198
- parent: 1
- uid: 1604
components:
- type: Transform
pos: 12.751646,36.69652
parent: 1
- - uid: 1605
- components:
- - type: Transform
- pos: 17.771301,47.670746
- parent: 1
- - uid: 1606
- components:
- - type: Transform
- pos: 1.3594894,8.628089
- parent: 1
- proto: GeneratorRTG
entities:
- uid: 741
@@ -9591,53 +9117,23 @@ entities:
rot: -1.5707963267948966 rad
pos: 27.5,39.5
parent: 1
-- proto: Hemostat
- entities:
- - uid: 1466
- components:
- - type: Transform
- pos: 8.51377,43.004257
- parent: 1
- proto: HighSecArmoryLocked
entities:
- uid: 1592
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,7.5
parent: 1
- uid: 1593
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,7.5
parent: 1
- uid: 1594
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,9.5
parent: 1
-- proto: HolofanProjector
- entities:
- - uid: 759
- components:
- - type: Transform
- pos: 22.600597,10.724078
- parent: 1
- - uid: 843
- components:
- - type: Transform
- pos: 12.444763,25.695555
- parent: 1
- - uid: 1940
- components:
- - type: Transform
- pos: 20.019585,3.4921117
- parent: 1
- proto: HospitalCurtains
entities:
- uid: 944
@@ -9654,16 +9150,12 @@ entities:
canCollide: False
- uid: 945
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,27.5
parent: 1
- uid: 946
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 10.5,27.5
@@ -9734,33 +9226,6 @@ entities:
- type: Transform
pos: 22.443127,34.55794
parent: 1
- - uid: 1649
- components:
- - type: Transform
- pos: 30.670542,42.80983
- parent: 1
- - uid: 1774
- components:
- - type: Transform
- pos: 30.465664,42.604954
- parent: 1
- - uid: 1775
- components:
- - type: Transform
- pos: 30.407127,42.853733
- parent: 1
-- proto: JawsOfLife
- entities:
- - uid: 651
- components:
- - type: Transform
- pos: 28.58357,8.561734
- parent: 1
- - uid: 880
- components:
- - type: Transform
- pos: 5.415938,12.548848
- parent: 1
- proto: JetpackBlueFilled
entities:
- uid: 889
@@ -9768,25 +9233,6 @@ entities:
- type: Transform
pos: 5.616663,12.768361
parent: 1
-- proto: KitchenMicrowave
- entities:
- - uid: 524
- components:
- - type: Transform
- pos: 16.5,12.5
- parent: 1
- - uid: 708
- components:
- - type: Transform
- pos: 18.5,22.5
- parent: 1
-- proto: KnifePlastic
- entities:
- - uid: 530
- components:
- - type: Transform
- pos: 17.249546,12.643455
- parent: 1
- proto: Lamp
entities:
- uid: 582
@@ -9794,19 +9240,6 @@ entities:
- type: Transform
pos: 12.369425,13.798887
parent: 1
-- proto: LampGold
- entities:
- - uid: 728
- components:
- - type: Transform
- pos: 6.4779434,22.892899
- parent: 1
- - uid: 729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.765976,19.912766
- parent: 1
- proto: Lighter
entities:
- uid: 1215
@@ -9814,18 +9247,6 @@ entities:
- type: Transform
pos: 7.5287867,36.397644
parent: 1
-- proto: LockerAtmosphericsFilled
- entities:
- - uid: 758
- components:
- - type: Transform
- pos: 20.5,6.5
- parent: 1
- - uid: 842
- components:
- - type: Transform
- pos: 12.5,28.5
- parent: 1
- proto: LockerChiefEngineerFilled
entities:
- uid: 366
@@ -9833,30 +9254,6 @@ entities:
- type: Transform
pos: 18.5,4.5
parent: 1
-- proto: LockerEngineerFilled
- entities:
- - uid: 282
- components:
- - type: Transform
- pos: 6.5,12.5
- parent: 1
- - uid: 544
- components:
- - type: Transform
- pos: 16.5,27.5
- parent: 1
- - uid: 847
- components:
- - type: Transform
- pos: 14.5,6.5
- parent: 1
-- proto: LockerMedicineFilled
- entities:
- - uid: 1147
- components:
- - type: Transform
- pos: 28.5,27.5
- parent: 1
- proto: MachineFrame
entities:
- uid: 21
@@ -9864,16 +9261,6 @@ entities:
- type: Transform
pos: 15.5,4.5
parent: 1
- - uid: 32
- components:
- - type: Transform
- pos: 28.5,1.5
- parent: 1
- - uid: 400
- components:
- - type: Transform
- pos: 26.5,8.5
- parent: 1
- uid: 602
components:
- type: Transform
@@ -9931,141 +9318,38 @@ entities:
- type: Transform
pos: 25.5,47.5
parent: 1
-- proto: MagazineLightRifleRubber
- entities:
- - uid: 1114
- components:
- - type: Transform
- pos: 11.293891,39.53801
- parent: 1
-- proto: MaintenanceWeaponSpawner
- entities:
- - uid: 1575
- components:
- - type: Transform
- pos: 1.5,8.5
- parent: 1
- - uid: 1576
- components:
- - type: Transform
- pos: 9.5,8.5
- parent: 1
- proto: MaterialDiamond1
entities:
- uid: 551
components:
- - type: MetaData
- flags: InContainer
- type: Transform
parent: 550
- type: Physics
canCollide: False
- - uid: 1890
+- proto: MedicalBed
+ entities:
+ - uid: 1141
components:
- type: Transform
- pos: 11.585693,39.676956
+ pos: 28.5,24.5
parent: 1
- - uid: 1891
+ - uid: 1142
components:
- type: Transform
- pos: 10.7076435,39.647686
+ pos: 28.5,25.5
parent: 1
-- proto: MaterialWoodPlank1
+- proto: OperatingTable
entities:
- - uid: 1071
+ - uid: 898
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.823982,27.574818
- parent: 1
-- proto: MatterBinStockPart
- entities:
- - uid: 1662
- components:
- - type: Transform
- pos: 30.626253,47.848927
- parent: 1
- - uid: 1665
- components:
- - type: Transform
- pos: 30.494545,47.761124
- parent: 1
-- proto: MechEquipmentGrabber
- entities:
- - uid: 1895
- components:
- - type: Transform
- pos: 14.537964,47.55514
- parent: 1
-- proto: MedicalBed
- entities:
- - uid: 1141
- components:
- - type: Transform
- pos: 28.5,24.5
- parent: 1
- - uid: 1142
- components:
- - type: Transform
- pos: 28.5,25.5
- parent: 1
-- proto: MedkitAdvancedFilled
- entities:
- - uid: 1148
- components:
- - type: Transform
- pos: 30.614443,28.392822
- parent: 1
-- proto: MedkitCombatFilled
- entities:
- - uid: 1149
- components:
- - type: Transform
- pos: 30.40146,28.066427
- parent: 1
-- proto: MicroManipulatorStockPart
- entities:
- - uid: 1666
- components:
- - type: Transform
- pos: 30.596985,43.707462
- parent: 1
-- proto: OperatingTable
- entities:
- - uid: 898
- components:
- - type: Transform
- pos: 13.5,43.5
+ pos: 13.5,43.5
parent: 1
- uid: 1384
components:
- type: Transform
pos: 9.5,43.5
parent: 1
-- proto: OreProcessorMachineCircuitboard
- entities:
- - uid: 1753
- components:
- - type: Transform
- pos: 30.40674,43.224537
- parent: 1
- - uid: 1754
- components:
- - type: Transform
- pos: 28.526728,8.607853
- parent: 1
-- proto: PaperOffice
- entities:
- - uid: 1944
- components:
- - type: Transform
- pos: 19.770805,1.5750384
- parent: 1
- - uid: 1945
- components:
- - type: Transform
- pos: 19.917147,1.7945502
- parent: 1
- proto: PartRodMetal1
entities:
- uid: 916
@@ -10079,65 +9363,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 1.2729261,2.3145535
parent: 1
- - uid: 1067
- components:
- - type: Transform
- pos: 25.36965,28.11408
- parent: 1
- - uid: 1748
- components:
- - type: Transform
- pos: 24.33357,43.06356
- parent: 1
- - uid: 1749
- components:
- - type: Transform
- pos: 30.465277,47.966
- parent: 1
- - uid: 1750
- components:
- - type: Transform
- pos: 30.553082,47.878197
- parent: 1
- uid: 1758
components:
- type: Transform
pos: 25.49259,25.48387
parent: 1
-- proto: Pen
- entities:
- - uid: 730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.36841,19.019064
- parent: 1
-- proto: PillCanister
- entities:
- - uid: 1476
- components:
- - type: Transform
- pos: 14.438607,42.637726
- parent: 1
-- proto: PillSpaceDrugs
- entities:
- - uid: 1474
- components:
- - type: Transform
- pos: 14.438607,42.96412
- parent: 1
- - uid: 1475
- components:
- - type: Transform
- pos: 14.537998,42.878975
- parent: 1
-- proto: PlasmaCanister
- entities:
- - uid: 1363
- components:
- - type: Transform
- pos: 30.5,35.5
- parent: 1
- proto: PlasmaReinforcedWindowDirectional
entities:
- uid: 1164
@@ -10200,74 +9430,49 @@ entities:
entities:
- uid: 16
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,3.5
parent: 1
- uid: 18
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,1.5
parent: 1
- uid: 820
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,3.5
parent: 1
- uid: 831
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,1.5
parent: 1
- uid: 908
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,2.5
parent: 1
- uid: 1417
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,44.5
parent: 1
- uid: 1420
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,46.5
parent: 1
- uid: 1465
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,46.5
parent: 1
- uid: 1479
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,44.5
parent: 1
-- proto: PlushieAtmosian
- entities:
- - uid: 258
- components:
- - type: Transform
- pos: 22.402548,6.5969048
- parent: 1
- proto: PlushieMoffRandom
entities:
- uid: 645
@@ -10356,20 +9561,6 @@ entities:
- type: Transform
pos: 22.5,40.5
parent: 1
-- proto: PowerCellHigh
- entities:
- - uid: 590
- components:
- - type: Transform
- pos: 5.381793,16.642464
- parent: 1
-- proto: PowerCellHyper
- entities:
- - uid: 1030
- components:
- - type: Transform
- pos: 12.383391,25.508808
- parent: 1
- proto: PowerCellRecharger
entities:
- uid: 325
@@ -10397,29 +9588,10 @@ entities:
- type: Transform
pos: 21.5,47.5
parent: 1
-- proto: PowerDrill
- entities:
- - uid: 255
- components:
- - type: Transform
- pos: 27.577066,1.159349
- parent: 1
- - uid: 610
- components:
- - type: Transform
- pos: 18.524496,24.641897
- parent: 1
- - uid: 1637
- components:
- - type: Transform
- pos: 30.421375,42.624535
- parent: 1
- proto: Poweredlight
entities:
- uid: 1643
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 21.5,6.5
@@ -10428,8 +9600,6 @@ entities:
powerLoad: 0
- uid: 1644
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,10.5
parent: 1
@@ -10437,8 +9607,6 @@ entities:
powerLoad: 0
- uid: 1645
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 16.5,6.5
@@ -10447,8 +9615,6 @@ entities:
powerLoad: 0
- uid: 1646
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,10.5
parent: 1
@@ -10456,8 +9622,6 @@ entities:
powerLoad: 0
- uid: 1687
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 32.5,25.5
@@ -10466,8 +9630,6 @@ entities:
powerLoad: 0
- uid: 1695
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 18.5,12.5
@@ -10476,8 +9638,6 @@ entities:
powerLoad: 0
- uid: 1696
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,16.5
parent: 1
@@ -10485,8 +9645,6 @@ entities:
powerLoad: 0
- uid: 1698
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 16.5,25.5
@@ -10495,8 +9653,6 @@ entities:
powerLoad: 0
- uid: 1699
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,27.5
@@ -10505,8 +9661,6 @@ entities:
powerLoad: 0
- uid: 1700
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,40.5
parent: 1
@@ -10514,8 +9668,6 @@ entities:
powerLoad: 0
- uid: 1735
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,21.5
@@ -10524,8 +9676,6 @@ entities:
powerLoad: 0
- uid: 1737
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,22.5
parent: 1
@@ -10533,8 +9683,6 @@ entities:
powerLoad: 0
- uid: 1824
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,43.5
@@ -10543,8 +9691,6 @@ entities:
powerLoad: 0
- uid: 1825
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,47.5
@@ -10553,8 +9699,6 @@ entities:
powerLoad: 0
- uid: 1964
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,4.5
parent: 1
@@ -10562,8 +9706,6 @@ entities:
powerLoad: 0
- uid: 1965
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,4.5
parent: 1
@@ -10573,8 +9715,6 @@ entities:
entities:
- uid: 1701
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,42.5
@@ -10583,8 +9723,6 @@ entities:
powerLoad: 0
- uid: 1702
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,42.5
@@ -10593,8 +9731,6 @@ entities:
powerLoad: 0
- uid: 1703
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,46.5
@@ -10603,8 +9739,6 @@ entities:
powerLoad: 0
- uid: 1704
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,46.5
@@ -10613,8 +9747,6 @@ entities:
powerLoad: 0
- uid: 1719
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 28.5,27.5
@@ -10625,8 +9757,6 @@ entities:
entities:
- uid: 897
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,22.5
@@ -10635,8 +9765,6 @@ entities:
powerLoad: 0
- uid: 899
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 34.5,18.5
@@ -11284,21 +10412,11 @@ entities:
- type: Transform
pos: 22.5,15.5
parent: 1
- - uid: 586
- components:
- - type: Transform
- pos: 1.5,12.5
- parent: 1
- uid: 597
components:
- type: Transform
pos: 5.5,16.5
parent: 1
- - uid: 598
- components:
- - type: Transform
- pos: 5.5,12.5
- parent: 1
- uid: 605
components:
- type: Transform
@@ -11337,6 +10455,11 @@ entities:
- type: Transform
pos: 15.5,32.5
parent: 1
+ - uid: 992
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 1
- uid: 1010
components:
- type: Transform
@@ -11371,6 +10494,11 @@ entities:
- type: Transform
pos: 26.5,32.5
parent: 1
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1
- uid: 1201
components:
- type: Transform
@@ -11411,16 +10539,6 @@ entities:
- type: Transform
pos: 12.370093,10.710864
parent: 1
- - uid: 895
- components:
- - type: Transform
- pos: 5.3555245,12.656832
- parent: 1
- - uid: 1937
- components:
- - type: Transform
- pos: 19.404951,3.6823559
- parent: 1
- proto: Railing
entities:
- uid: 39
@@ -11728,164 +10846,83 @@ entities:
- type: Transform
pos: 1.5,47.5
parent: 1
-- proto: RandomBoards
+- proto: RandomBook
entities:
- - uid: 274
+ - uid: 1009
components:
- type: Transform
- pos: 20.5,15.5
+ pos: 21.5,34.5
parent: 1
- - uid: 336
+- proto: RandomCargoSpawner
+ entities:
+ - uid: 275
components:
- type: Transform
- pos: 13.5,0.5
+ pos: 23.5,0.5
parent: 1
- - uid: 365
+ - uid: 278
components:
- type: Transform
- pos: 3.5,0.5
+ pos: 23.5,4.5
parent: 1
- - uid: 601
+- proto: RandomInstruments
+ entities:
+ - uid: 1154
components:
- type: Transform
- pos: 18.5,24.5
+ pos: 21.5,18.5
parent: 1
- - uid: 606
+ - uid: 1239
components:
- type: Transform
- pos: 22.5,28.5
+ pos: 1.5,48.5
parent: 1
- - uid: 607
+- proto: RandomItem
+ entities:
+ - uid: 347
components:
- type: Transform
- pos: 22.5,24.5
+ pos: 4.5,4.5
parent: 1
- - uid: 800
+ - uid: 367
components:
- type: Transform
- pos: 25.5,0.5
+ pos: 11.5,4.5
parent: 1
- - uid: 801
+ - uid: 576
components:
- type: Transform
- pos: 27.5,0.5
+ pos: 21.5,40.5
parent: 1
- - uid: 804
+ - uid: 646
components:
- type: Transform
- pos: 25.5,4.5
+ pos: 16.5,13.5
parent: 1
- - uid: 805
+ - uid: 648
components:
- type: Transform
- pos: 27.5,4.5
+ pos: 20.5,14.5
parent: 1
- - uid: 886
+ - uid: 701
components:
- type: Transform
- pos: 1.5,12.5
+ pos: 17.5,38.5
parent: 1
- - uid: 1751
+ - uid: 702
components:
- type: Transform
- pos: 30.5,48.5
+ pos: 18.5,38.5
parent: 1
- - uid: 1752
+ - uid: 703
components:
- type: Transform
- pos: 24.5,42.5
+ pos: 20.5,40.5
parent: 1
- - uid: 1909
+ - uid: 918
components:
- type: Transform
- pos: 7.5,22.5
- parent: 1
-- proto: RandomBook
- entities:
- - uid: 1009
- components:
- - type: Transform
- pos: 21.5,34.5
- parent: 1
-- proto: RandomCargoSpawner
- entities:
- - uid: 275
- components:
- - type: Transform
- pos: 23.5,0.5
- parent: 1
- - uid: 278
- components:
- - type: Transform
- pos: 23.5,4.5
- parent: 1
-- proto: RandomDrinkBottle
- entities:
- - uid: 581
- components:
- - type: Transform
- pos: 12.5,12.5
- parent: 1
-- proto: RandomFoodSingle
- entities:
- - uid: 763
- components:
- - type: Transform
- pos: 6.5,19.5
- parent: 1
-- proto: RandomInstruments
- entities:
- - uid: 1154
- components:
- - type: Transform
- pos: 21.5,18.5
- parent: 1
-- proto: RandomItem
- entities:
- - uid: 347
- components:
- - type: Transform
- pos: 4.5,4.5
- parent: 1
- - uid: 367
- components:
- - type: Transform
- pos: 11.5,4.5
- parent: 1
- - uid: 576
- components:
- - type: Transform
- pos: 21.5,40.5
- parent: 1
- - uid: 646
- components:
- - type: Transform
- pos: 16.5,13.5
- parent: 1
- - uid: 648
- components:
- - type: Transform
- pos: 20.5,14.5
- parent: 1
- - uid: 701
- components:
- - type: Transform
- pos: 17.5,38.5
- parent: 1
- - uid: 702
- components:
- - type: Transform
- pos: 18.5,38.5
- parent: 1
- - uid: 703
- components:
- - type: Transform
- pos: 20.5,40.5
- parent: 1
- - uid: 918
- components:
- - type: Transform
- pos: 2.5,2.5
+ pos: 2.5,2.5
parent: 1
- uid: 1005
components:
@@ -11912,11 +10949,6 @@ entities:
- type: Transform
pos: 12.5,6.5
parent: 1
- - uid: 1912
- components:
- - type: Transform
- pos: 22.5,10.5
- parent: 1
- uid: 1913
components:
- type: Transform
@@ -12014,52 +11046,6 @@ entities:
- type: Transform
pos: 20.5,47.5
parent: 1
-- proto: RandomVending
- entities:
- - uid: 321
- components:
- - type: Transform
- pos: 22.5,22.5
- parent: 1
- - uid: 327
- components:
- - type: Transform
- pos: 10.5,22.5
- parent: 1
- - uid: 539
- components:
- - type: Transform
- pos: 17.5,16.5
- parent: 1
- - uid: 700
- components:
- - type: Transform
- pos: 18.5,40.5
- parent: 1
-- proto: RCD
- entities:
- - uid: 654
- components:
- - type: Transform
- pos: 30.300627,8.687764
- parent: 1
-- proto: RCDAmmo
- entities:
- - uid: 246
- components:
- - type: Transform
- pos: 30.549406,8.42435
- parent: 1
- - uid: 248
- components:
- - type: Transform
- pos: 30.564041,8.599959
- parent: 1
- - uid: 652
- components:
- - type: Transform
- pos: 30.373796,8.42435
- parent: 1
- proto: ReinforcedPlasmaWindow
entities:
- uid: 1378
@@ -12128,23 +11114,6 @@ entities:
- type: Transform
pos: 2.5,16.5
parent: 1
-- proto: RemoteSignaller
- entities:
- - uid: 1099
- components:
- - type: Transform
- pos: 25.24476,30.698978
- parent: 1
- - uid: 1100
- components:
- - type: Transform
- pos: 25.443544,30.613832
- parent: 1
- - uid: 1101
- components:
- - type: Transform
- pos: 5.677143,16.762346
- parent: 1
- proto: RipleyChassis
entities:
- uid: 1889
@@ -12153,71 +11122,13 @@ entities:
rot: -1.5707963267948966 rad
pos: 8.991622,47.87709
parent: 1
-- proto: RipleyLLeg
- entities:
- - uid: 1901
- components:
- - type: Transform
- pos: 14.638029,48.64589
- parent: 1
-- proto: RipleyPeripheralsElectronics
- entities:
- - uid: 1894
- components:
- - type: Transform
- pos: 14.508695,47.80392
- parent: 1
-- proto: RipleyRArm
- entities:
- - uid: 1902
- components:
- - type: Transform
- pos: 14.491687,48.236134
- parent: 1
-- proto: RockGuitarInstrument
- entities:
- - uid: 1959
- components:
- - type: Transform
- pos: 1.5196692,48.464535
- parent: 1
- proto: SalvageCanisterSpawner
entities:
- - uid: 993
- components:
- - type: Transform
- pos: 22.5,30.5
- parent: 1
- - uid: 1004
- components:
- - type: Transform
- pos: 19.5,30.5
- parent: 1
- - uid: 1020
- components:
- - type: Transform
- pos: 21.5,30.5
- parent: 1
- uid: 1185
components:
- type: Transform
pos: 9.5,36.5
parent: 1
- - uid: 1362
- components:
- - type: Transform
- pos: 28.5,35.5
- parent: 1
- - uid: 1364
- components:
- - type: Transform
- pos: 29.5,35.5
- parent: 1
- - uid: 1923
- components:
- - type: Transform
- pos: 32.5,4.5
- parent: 1
- proto: SalvageMaterialCrateSpawner
entities:
- uid: 343
@@ -12437,693 +11348,1722 @@ entities:
parent: 1
- proto: SalvagePartsT2Spawner
entities:
- - uid: 30
+ - uid: 947
components:
- type: Transform
- pos: 25.5,3.5
+ pos: 25.5,32.5
parent: 1
- - uid: 33
+ - uid: 1213
components:
- type: Transform
- pos: 27.5,3.5
+ pos: 26.5,32.5
parent: 1
- - uid: 337
+- proto: SchoolgirlUniformSpawner
+ entities:
+ - uid: 548
components:
- type: Transform
- pos: 12.5,0.5
+ pos: 14.5,34.5
parent: 1
- - uid: 338
+- proto: ShardGlass
+ entities:
+ - uid: 878
components:
- type: Transform
- pos: 4.5,0.5
+ pos: 24.344482,48.496853
parent: 1
- - uid: 603
+ - uid: 879
components:
- type: Transform
- pos: 20.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 25.120092,48.10173
parent: 1
- - uid: 838
+ - uid: 905
components:
- type: Transform
- pos: 20.5,27.5
+ pos: 1.2487528,3.185711
parent: 1
- - uid: 915
+ - uid: 906
components:
- type: Transform
- pos: 15.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 14.210305,3.0101013
parent: 1
- - uid: 947
+- proto: ShardGlassReinforced
+ entities:
+ - uid: 649
components:
- type: Transform
- pos: 25.5,32.5
+ pos: 13.825684,19.324022
parent: 1
- - uid: 1213
+ - uid: 656
components:
- type: Transform
- pos: 26.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 15.103575,22.360918
parent: 1
- - uid: 1713
+ - uid: 698
components:
- type: Transform
- pos: 30.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 14.285374,19.551079
parent: 1
-- proto: SalvagePartsT3Spawner
- entities:
- - uid: 29
+ - uid: 1063
components:
- type: Transform
- pos: 25.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 26.505554,26.907837
parent: 1
- - uid: 34
+ - uid: 1064
components:
- type: Transform
- pos: 27.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 25.767216,27.021364
parent: 1
- - uid: 301
+- proto: SheetSteel1
+ entities:
+ - uid: 616
components:
- type: Transform
- pos: 13.5,18.5
+ pos: 26.352179,24.633543
parent: 1
- - uid: 339
+ - uid: 913
+ components:
+ - type: Transform
+ pos: 2.8440654,2.2706516
+ parent: 1
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 14.704579,2.5633342
+ parent: 1
+- proto: ShowcaseRobotWhite
+ entities:
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 16.5,10.5
+ parent: 1
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 18.5,6.5
+ parent: 1
+- proto: ShuttersNormal
+ entities:
+ - uid: 1232
+ components:
+ - type: Transform
+ pos: 34.5,27.5
+ parent: 1
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: 32.5,27.5
+ parent: 1
+- proto: ShuttersRadiation
+ entities:
+ - uid: 1398
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 1
+ - uid: 1399
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 1
+ - uid: 1403
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 1
+ - uid: 1404
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 1
+- proto: ShuttersWindow
+ entities:
+ - uid: 1234
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 1
+- proto: SignalButton
+ entities:
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 31.5,21.5
+ parent: 1
+ - uid: 1766
+ components:
+ - type: Transform
+ pos: 29.5,46.5
+ parent: 1
+ - uid: 1792
+ components:
+ - type: Transform
+ pos: 25.5,46.5
+ parent: 1
+- proto: SignalControlledValve
+ entities:
+ - uid: 1261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,34.5
+ parent: 1
+ - uid: 1280
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,34.5
+ parent: 1
+- proto: SignDirectionalDorms
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,34.5
+ parent: 1
+ - uid: 877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,36.5
+ parent: 1
+- proto: SignRadiationMed
+ entities:
+ - uid: 1405
+ components:
+ - type: Transform
+ pos: 31.5,19.5
+ parent: 1
+ - uid: 1406
+ components:
+ - type: Transform
+ pos: 33.5,21.5
+ parent: 1
+- proto: SignRobo
+ entities:
+ - uid: 900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,43.5
+ parent: 1
+- proto: SignSurgery
+ entities:
+ - uid: 1478
+ components:
+ - type: Transform
+ pos: 10.5,43.5
+ parent: 1
+- proto: Sink
+ entities:
+ - uid: 930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 1
+- proto: SinkStemlessWater
+ entities:
+ - uid: 1456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,42.5
+ parent: 1
+ - uid: 1457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,42.5
+ parent: 1
+- proto: SMESBasic
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 1
+ - uid: 746
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1
+ - uid: 1501
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 1
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 1
+- proto: SoapSyndie
+ entities:
+ - uid: 1850
+ components:
+ - type: Transform
+ pos: 10.4890785,27.46785
+ parent: 1
+- proto: SpaceCash100
+ entities:
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 12.620174,36.703674
+ parent: 1
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 12.4592,36.76221
+ parent: 1
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 22.37648,34.75847
+ parent: 1
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 22.47892,34.65603
+ parent: 1
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 12.517736,36.630505
+ parent: 1
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 22.581358,34.743835
+ parent: 1
+- proto: SpawnDungeonClutterMedical
+ entities:
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 12.631498,44.709793
+ parent: 1
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 12.334623,44.428543
+ parent: 1
+ - uid: 759
+ components:
+ - type: Transform
+ pos: 14.463165,43.3326
+ parent: 1
+ - uid: 880
+ components:
+ - type: Transform
+ pos: 14.414502,42.921997
+ parent: 1
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 14.570752,42.765747
+ parent: 1
+ - uid: 1874
+ components:
+ - type: Transform
+ pos: 14.477002,42.609497
+ parent: 1
+- proto: SpawnDungeonClutterPatientTransport
+ entities:
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 30.521948,24.596199
+ parent: 1
+ - uid: 804
+ components:
+ - type: Transform
+ pos: 30.490698,25.596199
+ parent: 1
+- proto: SpawnDungeonLootArmoryClutter
+ entities:
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 12.358617,12.563418
+ parent: 1
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 12.749242,12.594668
+ parent: 1
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 13.530492,12.579043
+ parent: 1
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 12.467992,13.625918
+ parent: 1
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 13.561742,13.547793
+ parent: 1
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 12.999242,13.625918
+ parent: 1
+- proto: SpawnDungeonLootArmoryGuns
+ entities:
+ - uid: 281
+ components:
+ - type: Transform
+ pos: 12.592992,13.141543
+ parent: 1
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 30.571545,8.628513
+ parent: 1
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 9.495426,8.495778
+ parent: 1
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 12.724772,18.64597
+ parent: 1
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: 12.757976,10.332993
+ parent: 1
+- proto: SpawnDungeonLootBureaucracy
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 10.657695,19.03992
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 20.129946,1.5413527
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 7.063945,22.524296
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 19.754946,1.4944777
+ parent: 1
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 10.36082,19.211796
+ parent: 1
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 19.42682,1.6038527
+ parent: 1
+ - uid: 839
+ components:
+ - type: Transform
+ pos: 19.848696,1.6819777
+ parent: 1
+ - uid: 842
+ components:
+ - type: Transform
+ pos: 19.27057,1.7132277
+ parent: 1
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 10.76707,19.25867
+ parent: 1
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 30.5,35.5
+ parent: 1
+ - uid: 841
+ components:
+ - type: Transform
+ pos: 19.5,30.5
+ parent: 1
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 22.5,30.5
+ parent: 1
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: 21.5,30.5
+ parent: 1
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 1
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 28.5,35.5
+ parent: 1
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 32.5,4.5
+ parent: 1
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 27.342953,1.2913527
+ parent: 1
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 22.55341,28.580574
+ parent: 1
+ - uid: 758
+ components:
+ - type: Transform
+ pos: 32.670197,8.49654
+ parent: 1
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 14.382998,48.287632
+ parent: 1
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 28.404572,8.449665
+ parent: 1
+ - uid: 924
+ components:
+ - type: Transform
+ pos: 18.386486,24.549324
+ parent: 1
+ - uid: 949
+ components:
+ - type: Transform
+ pos: 1.4727685,12.619433
+ parent: 1
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 30.533243,48.62294
+ parent: 1
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 24.486368,42.49794
+ parent: 1
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: 13.549553,0.52572775
+ parent: 1
+ - uid: 1463
+ components:
+ - type: Transform
+ pos: 3.4998412,0.54135275
+ parent: 1
+ - uid: 1467
+ components:
+ - type: Transform
+ pos: 20.530544,15.463183
+ parent: 1
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 22.475285,24.564949
+ parent: 1
+ - uid: 1587
+ components:
+ - type: Transform
+ pos: 25.405453,0.65072775
+ parent: 1
+ - uid: 1890
+ components:
+ - type: Transform
+ pos: 7.61082,22.680546
+ parent: 1
+ - uid: 1923
+ components:
+ - type: Transform
+ pos: 32.429276,8.58645
+ parent: 1
+ - uid: 1933
+ components:
+ - type: Transform
+ pos: 25.421078,4.5569777
+ parent: 1
+ - uid: 1939
+ components:
+ - type: Transform
+ pos: 27.389828,3.7601027
+ parent: 1
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 18.698986,25.674324
+ parent: 1
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 25.286325,30.735926
+ parent: 1
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 19.384024,18.618046
+ parent: 1
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 12.415045,24.705574
+ parent: 1
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 12.71192,25.752449
+ parent: 1
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 22.264496,10.62789
+ parent: 1
+ - uid: 586
+ components:
+ - type: Transform
+ pos: 18.495861,25.471199
+ parent: 1
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 22.451996,10.59664
+ parent: 1
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 12.49317,25.564949
+ parent: 1
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 22.639496,6.5653896
+ parent: 1
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 18.339611,25.658699
+ parent: 1
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 22.34262,6.6903896
+ parent: 1
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 12.540045,24.518074
+ parent: 1
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 12.352545,25.689949
+ parent: 1
+ - uid: 752
+ components:
+ - type: Transform
+ pos: 22.639496,10.69039
+ parent: 1
+ - uid: 805
+ components:
+ - type: Transform
+ pos: 18.511486,25.736824
+ parent: 1
+ - uid: 915
+ components:
+ - type: Transform
+ pos: 22.608246,10.581015
+ parent: 1
+ - uid: 919
+ components:
+ - type: Transform
+ pos: 5.379019,16.60381
+ parent: 1
+ - uid: 920
+ components:
+ - type: Transform
+ pos: 12.727545,24.674324
+ parent: 1
+ - uid: 1190
+ components:
+ - type: Transform
+ pos: 22.65512,6.7528896
+ parent: 1
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: 25.4582,30.579676
+ parent: 1
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 25.723825,30.735926
+ parent: 1
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 5.738394,16.35381
+ parent: 1
+ - uid: 1908
+ components:
+ - type: Transform
+ pos: 22.451996,6.5341396
+ parent: 1
+- proto: SpawnDungeonLootClutterKitchen
+ entities:
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 17.274874,12.635058
+ parent: 1
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 17.493624,12.635058
+ parent: 1
+ - uid: 763
+ components:
+ - type: Transform
+ pos: 17.165499,12.619433
+ parent: 1
+- proto: SpawnDungeonLootCrateVehicle
+ entities:
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 34.5,25.5
+ parent: 1
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 18.368399,21.774296
+ parent: 1
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 18.696524,21.493046
+ parent: 1
+ - uid: 1902
+ components:
+ - type: Transform
+ pos: 6.563945,19.53992
+ parent: 1
+- proto: SpawnDungeonLootKitchenTabletop
+ entities:
+ - uid: 762
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 1
+ - uid: 1894
+ components:
+ - type: Transform
+ pos: 16.5,12.5
+ parent: 1
+- proto: SpawnDungeonLootKitsFirstAid
+ entities:
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 30.646948,28.533699
+ parent: 1
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 30.381323,28.377449
+ parent: 1
+ - uid: 1865
+ components:
+ - type: Transform
+ pos: 30.600073,27.799324
+ parent: 1
+ - uid: 1866
+ components:
+ - type: Transform
+ pos: 14.539502,43.593872
+ parent: 1
+- proto: SpawnDungeonLootLatheEngi
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 28.5,1.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 1
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 13.5,48.5
+ parent: 1
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 23.5,3.5
+ parent: 1
+- proto: SpawnDungeonLootLockersEngi
+ entities:
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 12.5,27.5
+ parent: 1
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 14.5,30.5
+ parent: 1
+ - uid: 764
+ components:
+ - type: Transform
+ pos: 14.5,6.5
+ parent: 1
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 12.5,28.5
+ parent: 1
+ - uid: 801
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 1
+ - uid: 803
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 1
+ - uid: 1377
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 1
+ - uid: 1901
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 1
+- proto: SpawnDungeonLootLockersMed
+ entities:
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 28.5,27.5
+ parent: 1
+- proto: SpawnDungeonLootLockersProtectiveGear
+ entities:
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 12.5,30.5
+ parent: 1
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 0.5,32.5
+ parent: 1
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 1
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 1
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 1
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 1
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 0.5,38.5
+ parent: 1
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 6.5,40.5
+ parent: 1
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 17.460308,47.515747
+ parent: 1
+ - uid: 1713
+ components:
+ - type: Transform
+ pos: 27.519697,15.389918
+ parent: 1
+- proto: SpawnDungeonLootMaterialsBasicSingle
+ entities:
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 25.499203,3.8851027
+ parent: 1
+ - uid: 274
+ components:
+ - type: Transform
+ pos: 22.33466,28.549324
+ parent: 1
+ - uid: 277
+ components:
+ - type: Transform
+ pos: 24.793676,27.549324
+ parent: 1
+ - uid: 282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.653051,28.580574
+ parent: 1
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 25.467953,0.96322775
+ parent: 1
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 25.561703,1.5882277
+ parent: 1
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 27.639828,3.6038527
+ parent: 1
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 27.452328,3.9007277
+ parent: 1
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 27.592953,0.61947775
+ parent: 1
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 24.251993,43.214325
+ parent: 1
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 24.455118,43.120575
+ parent: 1
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 14.476748,47.850132
+ parent: 1
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 14.351748,47.522007
+ parent: 1
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 14.476748,48.100132
+ parent: 1
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 30.432241,43.5112
+ parent: 1
+ - uid: 806
+ components:
+ - type: Transform
+ pos: 25.671078,4.2601027
+ parent: 1
+ - uid: 813
+ components:
+ - type: Transform
+ pos: 30.697866,42.6362
+ parent: 1
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 30.432241,43.089325
+ parent: 1
+ - uid: 843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.934301,28.361824
+ parent: 1
+ - uid: 846
+ components:
+ - type: Transform
+ pos: 30.783243,47.96669
+ parent: 1
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 30.392618,47.99794
+ parent: 1
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 22.475285,24.471199
+ parent: 1
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 25.624203,0.52572775
+ parent: 1
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 25.639828,3.4788527
+ parent: 1
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 27.514828,4.5257277
+ parent: 1
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 14.695498,47.647007
+ parent: 1
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: 27.374203,1.3694777
+ parent: 1
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 30.338491,42.401825
+ parent: 1
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: 27.421078,4.3382277
+ parent: 1
+ - uid: 1606
+ components:
+ - type: Transform
+ pos: 24.705118,43.10495
+ parent: 1
+ - uid: 1636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.246801,27.861824
+ parent: 1
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 25.421078,1.3226027
+ parent: 1
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 30.510366,42.808075
+ parent: 1
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: 30.510366,43.22995
+ parent: 1
+ - uid: 1662
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 27.530453,1.5413527
parent: 1
- - uid: 340
+ - uid: 1665
components:
- type: Transform
- pos: 16.5,0.5
+ pos: 27.467953,0.99447775
parent: 1
- - uid: 647
+ - uid: 1686
components:
- type: Transform
- pos: 22.5,15.5
+ pos: 24.455118,42.7612
parent: 1
- - uid: 662
+ - uid: 1697
components:
- type: Transform
- pos: 29.5,40.5
+ pos: 24.423868,43.1362
parent: 1
- - uid: 1211
+ - uid: 1712
components:
- type: Transform
- pos: 14.5,32.5
+ pos: 25.436703,4.6507277
parent: 1
- - uid: 1212
+ - uid: 1747
components:
- type: Transform
- pos: 2.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 26.246801,28.361824
parent: 1
- - uid: 1558
+ - uid: 1748
components:
- type: Transform
- pos: 17.5,47.5
+ pos: 24.790592,48.453247
parent: 1
- - uid: 1697
+ - uid: 1888
components:
- type: Transform
- pos: 30.5,43.5
+ pos: 30.557241,43.41745
parent: 1
- - uid: 1712
+ - uid: 1909
components:
- type: Transform
- pos: 24.5,43.5
+ pos: 22.381535,24.611824
parent: 1
- - uid: 1854
+ - uid: 1934
components:
- type: Transform
- pos: 26.5,21.5
+ pos: 14.757998,48.365757
parent: 1
- - uid: 1866
+- proto: SpawnDungeonLootMaterialsValuableFull
+ entities:
+ - uid: 1475
components:
- type: Transform
- pos: 27.5,15.5
+ pos: 26.763832,21.53523
parent: 1
-- proto: SawAdvanced
- entities:
- - uid: 1463
+ - uid: 1476
components:
- type: Transform
- pos: 8.527969,43.529327
+ pos: 27.707197,15.514918
parent: 1
-- proto: ScalpelLaser
- entities:
- - uid: 1467
+ - uid: 1655
components:
- type: Transform
- pos: 8.485372,43.131977
+ pos: 15.388643,32.704674
parent: 1
-- proto: ScalpelShiv
- entities:
- - uid: 1587
+ - uid: 1714
components:
- type: Transform
- pos: 10.50393,24.491432
+ pos: 15.654268,32.485924
parent: 1
-- proto: SchoolgirlUniformSpawner
- entities:
- - uid: 548
+ - uid: 1752
components:
- type: Transform
- pos: 14.5,34.5
+ pos: 10.850621,39.523308
+ parent: 1
+ - uid: 1853
+ components:
+ - type: Transform
+ pos: 10.444371,39.695183
parent: 1
-- proto: Screwdriver
+- proto: SpawnDungeonLootMugs
entities:
- - uid: 608
+ - uid: 598
components:
- type: Transform
- pos: 22.38294,28.624136
+ pos: 22.57742,12.494433
parent: 1
- - uid: 806
+ - uid: 601
components:
- type: Transform
- pos: 25.556103,1.1458848
+ pos: 22.29617,12.744433
parent: 1
- - uid: 809
+ - uid: 603
components:
- type: Transform
- pos: 27.592867,4.072714
+ pos: 6.438945,19.680546
parent: 1
- - uid: 1634
+ - uid: 1891
components:
- type: Transform
- pos: 24.58235,43.326977
+ pos: 22.259024,18.60242
parent: 1
- - uid: 1636
+- proto: SpawnDungeonLootPartsEngi
+ entities:
+ - uid: 312
components:
- type: Transform
- pos: 30.626253,47.64405
+ pos: 25.296078,3.5882277
parent: 1
- - uid: 1899
+ - uid: 322
components:
- type: Transform
- pos: 14.537964,48.242947
+ pos: 30.689493,47.544815
parent: 1
-- proto: ShardGlass
- entities:
- - uid: 878
+ - uid: 338
components:
- type: Transform
- pos: 24.344482,48.496853
+ pos: 24.736368,43.72995
parent: 1
- - uid: 879
+ - uid: 339
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.120092,48.10173
+ pos: 24.705118,43.47995
parent: 1
- - uid: 905
+ - uid: 544
components:
- type: Transform
- pos: 1.2487528,3.185711
+ pos: 13.563229,18.53992
parent: 1
- - uid: 906
+ - uid: 753
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.210305,3.0101013
+ pos: 30.338491,43.6362
parent: 1
-- proto: ShardGlassReinforced
- entities:
- - uid: 649
+ - uid: 808
components:
- type: Transform
- pos: 13.825684,19.324022
+ pos: 30.658243,47.826065
parent: 1
- - uid: 656
+ - uid: 809
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.103575,22.360918
+ pos: 30.470743,47.732315
parent: 1
- - uid: 698
+ - uid: 886
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.285374,19.551079
+ pos: 15.826637,0.703125
parent: 1
- - uid: 1063
+ - uid: 925
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.505554,26.907837
+ pos: 30.635366,43.47995
parent: 1
- - uid: 1064
+ - uid: 1030
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.767216,27.021364
+ pos: 22.48367,15.541308
parent: 1
- uid: 1065
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.525837,28.185036
+ pos: 16.471428,0.61947775
parent: 1
-- proto: SheetGlass1
- entities:
- - uid: 924
+ - uid: 1067
components:
- type: Transform
- pos: 25.384653,1.2416606
+ pos: 4.562341,0.52572775
parent: 1
- - uid: 925
+ - uid: 1071
components:
- type: Transform
- pos: 25.516361,1.1099538
+ pos: 15.404762,0.65625
parent: 1
- - uid: 1771
+ - uid: 1262
components:
- type: Transform
- pos: 30.363224,42.98544
+ pos: 25.592953,4.0726027
parent: 1
- - uid: 1772
+ - uid: 1279
components:
- type: Transform
- pos: 30.582737,42.883
+ pos: 27.546078,3.6194777
parent: 1
- - uid: 1773
+ - uid: 1288
components:
- type: Transform
- pos: 30.333958,42.853733
+ pos: 2.367739,34.67654
parent: 1
-- proto: SheetPlasma
- entities:
- - uid: 1837
+ - uid: 1289
components:
- type: Transform
- pos: 17.326448,47.431633
+ pos: 20.44803,24.424324
parent: 1
-- proto: SheetPlasteel
- entities:
- - uid: 992
+ - uid: 1291
components:
- type: Transform
- pos: 15.345556,32.614613
+ pos: 20.463655,27.611824
parent: 1
- - uid: 1853
+ - uid: 1363
components:
- type: Transform
- pos: 26.80349,21.508806
+ pos: 1.5749812,0.578125
parent: 1
-- proto: SheetPlastic1
- entities:
- - uid: 919
+ - uid: 1466
components:
- type: Transform
- pos: 27.345629,1.2903605
+ pos: 12.393303,0.60385275
parent: 1
- - uid: 920
+ - uid: 1468
components:
- type: Transform
- pos: 27.448067,1.1732874
+ pos: 29.509651,40.486034
parent: 1
- - uid: 921
+ - uid: 1469
components:
- type: Transform
- pos: 25.399288,4.143551
+ pos: 14.419893,32.673424
parent: 1
- - uid: 1714
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 17.616558,47.593872
+ parent: 1
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 24.361368,43.72995
+ parent: 1
+ - uid: 1661
components:
- type: Transform
- pos: 24.318935,43.13673
+ pos: 26.263832,21.488356
parent: 1
- uid: 1717
components:
- type: Transform
- pos: 24.450644,43.092827
+ pos: 27.300947,15.577418
parent: 1
- - uid: 1747
+ - uid: 1750
components:
- type: Transform
- pos: 24.670155,42.975754
+ pos: 2.6599607,34.647636
parent: 1
-- proto: SheetRGlass
- entities:
- - uid: 1865
+ - uid: 1772
components:
- type: Transform
- pos: 27.606375,15.5036335
+ pos: 14.638643,32.579674
parent: 1
-- proto: SheetRPGlass
- entities:
- - uid: 963
+ - uid: 1937
+ components:
+ - type: Transform
+ pos: 27.592953,4.3226027
+ parent: 1
+ - uid: 1940
components:
- type: Transform
- pos: 15.5943365,32.482906
+ pos: 25.546078,1.4788527
parent: 1
-- proto: SheetSteel
+- proto: SpawnDungeonLootSeed
entities:
- - uid: 469
+ - uid: 651
components:
- type: Transform
- pos: 27.474274,15.53461
+ pos: 8.492843,24.424324
parent: 1
-- proto: SheetSteel1
+- proto: SpawnDungeonLootSpesos
entities:
- - uid: 616
+ - uid: 1749
components:
- type: Transform
- pos: 26.352179,24.633543
+ pos: 12.522496,39.648308
parent: 1
- - uid: 618
+ - uid: 1751
components:
- type: Transform
- pos: 24.625349,27.575006
+ pos: 11.881871,39.554558
parent: 1
- - uid: 913
+ - uid: 1753
components:
- type: Transform
- pos: 2.8440654,2.2706516
+ pos: 11.694371,39.757683
parent: 1
- - uid: 914
+ - uid: 1754
components:
- type: Transform
- pos: 14.704579,2.5633342
+ pos: 12.350621,39.788933
parent: 1
- - uid: 1874
+ - uid: 1771
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.768873,48.48222
+ pos: 11.772496,39.632683
parent: 1
-- proto: ShowcaseRobotWhite
- entities:
- - uid: 797
+ - uid: 1773
components:
- type: Transform
- pos: 16.5,10.5
+ pos: 11.975621,39.445183
parent: 1
- - uid: 799
+ - uid: 1774
components:
- type: Transform
- pos: 18.5,6.5
+ pos: 12.616246,39.742058
parent: 1
-- proto: ShuttersNormal
+ - uid: 1775
+ components:
+ - type: Transform
+ pos: 12.272496,39.726433
+ parent: 1
+ - uid: 1837
+ components:
+ - type: Transform
+ pos: 12.584996,39.492058
+ parent: 1
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: 12.116246,39.663933
+ parent: 1
+- proto: SpawnDungeonLootToolbox
entities:
- - uid: 1232
+ - uid: 600
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 34.5,27.5
+ pos: 22.634024,18.63367
parent: 1
- - uid: 1233
+ - uid: 1149
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 32.5,27.5
+ pos: 7.532695,22.50867
parent: 1
-- proto: ShuttersRadiation
+- proto: SpawnDungeonLootToolsAdvancedEngineering
entities:
- - uid: 1398
+ - uid: 610
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 31.5,20.5
+ pos: 28.295197,8.699665
parent: 1
- - uid: 1399
+ - uid: 728
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 32.5,21.5
+ pos: 18.324518,24.700558
parent: 1
- - uid: 1403
+ - uid: 756
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 33.5,20.5
+ pos: 30.447866,42.589325
parent: 1
- - uid: 1404
+ - uid: 807
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 32.5,19.5
+ pos: 19.55182,3.6819777
parent: 1
-- proto: ShuttersWindow
- entities:
- - uid: 1234
+ - uid: 1189
components:
- type: Transform
- pos: 33.5,27.5
+ pos: 28.748322,8.512165
parent: 1
-- proto: SignalButton
+ - uid: 1191
+ components:
+ - type: Transform
+ pos: 30.156475,8.623916
+ parent: 1
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 30.8596,8.733291
+ parent: 1
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: 30.468975,8.436416
+ parent: 1
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 5.3157387,12.928201
+ parent: 1
+ - uid: 1912
+ components:
+ - type: Transform
+ pos: 27.483578,1.4632277
+ parent: 1
+- proto: SpawnDungeonLootToolsBasicEngineering
entities:
- - uid: 896
+ - uid: 260
components:
- type: Transform
- pos: 31.5,21.5
+ pos: 22.39716,28.721199
parent: 1
- - uid: 1766
+ - uid: 323
components:
- type: Transform
- pos: 29.5,46.5
+ pos: 30.432241,43.29245
parent: 1
- - uid: 1792
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 19.77057,3.5257277
+ parent: 1
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 10.598463,19.211796
+ parent: 1
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 1.4251366,8.56539
+ parent: 1
+ - uid: 727
components:
- type: Transform
- pos: 25.5,46.5
+ pos: 20.004946,3.7757277
parent: 1
-- proto: SignalControlledValve
- entities:
- - uid: 1261
+ - uid: 844
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,34.5
+ pos: 24.455118,43.120575
parent: 1
- - uid: 1280
+ - uid: 921
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,34.5
+ pos: 27.374203,0.68197775
parent: 1
-- proto: SignDirectionalDorms
- entities:
- - uid: 210
+ - uid: 963
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,34.5
+ pos: 5.441519,12.635058
parent: 1
- - uid: 877
+ - uid: 1002
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,36.5
+ pos: 19.348696,3.6976027
parent: 1
-- proto: SignRadiationMed
- entities:
- - uid: 1405
+ - uid: 1097
components:
- type: Transform
- pos: 31.5,19.5
+ pos: 22.319035,24.580574
parent: 1
- - uid: 1406
+ - uid: 1212
components:
- type: Transform
- pos: 33.5,21.5
+ pos: 14.523623,47.990757
parent: 1
-- proto: SignRobo
- entities:
- - uid: 900
+ - uid: 1238
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,43.5
+ pos: 14.492373,48.334507
parent: 1
-- proto: SignSurgery
- entities:
- - uid: 1478
+ - uid: 1293
components:
- type: Transform
- pos: 10.5,43.5
+ pos: 30.455118,47.544815
parent: 1
-- proto: Sink
- entities:
- - uid: 930
+ - uid: 1294
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,25.5
+ pos: 25.592953,0.69760275
parent: 1
-- proto: SinkStemlessWater
- entities:
- - uid: 1456
+ - uid: 1625
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,42.5
+ pos: 30.455118,47.90419
parent: 1
- - uid: 1457
+ - uid: 1634
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,42.5
+ pos: 14.398623,48.553257
parent: 1
-- proto: SMESBasic
- entities:
- - uid: 47
+ - uid: 1637
components:
- type: Transform
- pos: 26.5,13.5
+ pos: 25.389828,1.2757277
parent: 1
- - uid: 57
+ - uid: 1649
components:
- type: Transform
- pos: 28.5,13.5
+ pos: 17.647808,47.359497
parent: 1
- - uid: 746
+ - uid: 1666
components:
- type: Transform
- pos: 26.5,19.5
+ pos: 25.264828,4.0569777
parent: 1
- - uid: 1501
+ - uid: 1892
components:
- type: Transform
- pos: 18.5,46.5
+ pos: 19.48932,3.4944777
parent: 1
- - uid: 1502
+ - uid: 1907
components:
- type: Transform
- pos: 20.5,46.5
+ pos: 10.379713,19.66492
parent: 1
-- proto: SoapSyndie
- entities:
- - uid: 1850
+ - uid: 1938
components:
- type: Transform
- pos: 10.4890785,27.46785
+ pos: 27.546078,4.3382277
parent: 1
-- proto: SpaceCash100
+- proto: SpawnDungeonLootToolsSurgeryAdvanced
entities:
- - uid: 885
+ - uid: 340
components:
- type: Transform
- pos: 12.620174,36.703674
+ pos: 8.512054,43.609497
parent: 1
- - uid: 887
+ - uid: 722
components:
- type: Transform
- pos: 12.4592,36.76221
+ pos: 8.558929,43.359497
parent: 1
- - uid: 890
+ - uid: 1558
components:
- type: Transform
- pos: 22.37648,34.75847
+ pos: 8.527679,42.875122
parent: 1
- - uid: 891
+ - uid: 1571
components:
- type: Transform
- pos: 22.47892,34.65603
+ pos: 8.574554,43.125122
parent: 1
- - uid: 892
+- proto: SpawnDungeonLootToolsSurgeryCrude
+ entities:
+ - uid: 1573
components:
- type: Transform
- pos: 12.517736,36.630505
+ pos: 10.492843,24.471199
parent: 1
- - uid: 894
+- proto: SpawnDungeonLootVaultGuns
+ entities:
+ - uid: 574
components:
- type: Transform
- pos: 22.581358,34.743835
+ pos: 11.298712,39.57709
parent: 1
- - uid: 1238
+- proto: SpawnDungeonVendomatsArmory
+ entities:
+ - uid: 1362
components:
- type: Transform
- pos: 11.887424,39.621456
+ pos: 10.5,14.5
parent: 1
- - uid: 1239
+- proto: SpawnDungeonVendomatsEngi
+ entities:
+ - uid: 802
components:
- type: Transform
- pos: 11.759636,39.479546
+ pos: 16.5,25.5
parent: 1
- - uid: 1291
+ - uid: 1364
components:
- type: Transform
- pos: 12.100407,39.465355
+ pos: 20.5,28.5
parent: 1
- - uid: 1292
+ - uid: 1893
components:
- type: Transform
- pos: 12.100407,39.80594
+ pos: 20.5,10.5
parent: 1
- - uid: 1293
+ - uid: 1895
components:
- type: Transform
- pos: 11.688642,39.720795
+ pos: 14.5,27.5
parent: 1
- - uid: 1294
+ - uid: 1898
components:
- type: Transform
- pos: 11.4330635,39.57888
+ pos: 10.5,48.5
parent: 1
-- proto: SpaceCash1000
- entities:
- - uid: 312
+ - uid: 1899
components:
- type: Transform
- pos: 11.606643,39.69878
+ pos: 1.5,16.5
parent: 1
- - uid: 316
+ - uid: 1900
components:
- type: Transform
- pos: 11.972496,39.464634
+ pos: 14.5,46.5
parent: 1
- - uid: 317
+- proto: SpawnDungeonVendomatsRecreational
+ entities:
+ - uid: 579
components:
- type: Transform
- pos: 12.118838,39.786587
+ pos: 22.5,22.5
parent: 1
- - uid: 849
+ - uid: 580
components:
- type: Transform
- pos: 11.504204,39.52317
+ pos: 10.5,22.5
parent: 1
-- proto: SpaceCash500
- entities:
- - uid: 299
+ - uid: 581
components:
- type: Transform
- pos: 12.045667,39.52317
+ pos: 17.5,16.5
parent: 1
- - uid: 315
+ - uid: 606
components:
- type: Transform
- pos: 11.650546,39.537804
+ pos: 6.5,18.5
parent: 1
- - uid: 320
+ - uid: 700
components:
- type: Transform
- pos: 11.474935,39.80122
+ pos: 18.5,40.5
parent: 1
- - uid: 839
+ - uid: 761
components:
- type: Transform
- pos: 11.943229,39.684147
+ pos: 16.5,16.5
parent: 1
-- proto: SpawnVehicleATV
- entities:
- - uid: 666
+ - uid: 1903
components:
- type: Transform
- pos: 34.5,25.5
+ pos: 19.5,22.5
parent: 1
-- proto: StimkitFilled
- entities:
- - uid: 1097
+ - uid: 1905
components:
- type: Transform
- pos: 30.619856,27.750769
+ pos: 17.5,40.5
parent: 1
- - uid: 1468
+ - uid: 1906
components:
- type: Transform
- pos: 14.516232,43.590866
+ pos: 21.5,12.5
parent: 1
- proto: Stool
entities:
@@ -13206,13 +13146,6 @@ entities:
- type: Transform
pos: 14.5,16.5
parent: 1
-- proto: SyringeEphedrine
- entities:
- - uid: 1470
- components:
- - type: Transform
- pos: 14.472328,42.917698
- parent: 1
- proto: Table
entities:
- uid: 25
@@ -13395,12 +13328,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 30.5,42.5
parent: 1
- - uid: 1625
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,43.5
- parent: 1
- uid: 1626
components:
- type: Transform
@@ -13413,6 +13340,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 30.5,48.5
parent: 1
+ - uid: 1648
+ components:
+ - type: Transform
+ pos: 30.5,43.5
+ parent: 1
- uid: 1896
components:
- type: Transform
@@ -13620,37 +13552,27 @@ entities:
entities:
- uid: 215
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,36.5
parent: 1
- uid: 568
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,15.5
parent: 1
- uid: 876
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,34.5
parent: 1
- uid: 1458
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,43.5
parent: 1
- uid: 1459
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 12.5,43.5
@@ -13675,206 +13597,82 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,25.5
parent: 1
-- proto: ToolboxElectricalFilled
- entities:
- - uid: 326
- components:
- - type: Transform
- pos: 7.4835467,22.701235
- parent: 1
-- proto: ToolboxMechanicalFilled
- entities:
- - uid: 323
- components:
- - type: Transform
- pos: 22.577251,18.720747
- parent: 1
- proto: trayScanner
entities:
- - uid: 795
- components:
- - type: Transform
- pos: 12.633508,10.579157
- parent: 1
- - uid: 1939
- components:
- - type: Transform
- pos: 19.814707,3.7262578
- parent: 1
-- proto: TwoWayLever
- entities:
- - uid: 909
- components:
- - type: Transform
- pos: 30.5,4.5
- parent: 1
- - uid: 910
- components:
- - type: Transform
- pos: 32.5,3.5
- parent: 1
- - uid: 1105
- components:
- - type: Transform
- pos: 5.5,0.5
- parent: 1
- - uid: 1108
- components:
- - type: Transform
- pos: 11.5,0.5
- parent: 1
- - uid: 1762
- components:
- - type: Transform
- pos: 26.5,42.5
- parent: 1
- - uid: 1763
- components:
- - type: Transform
- pos: 28.5,42.5
- parent: 1
- - uid: 1764
- components:
- - type: Transform
- pos: 26.5,48.5
- parent: 1
- - uid: 1765
- components:
- - type: Transform
- pos: 28.5,48.5
- parent: 1
-- proto: UnfinishedMachineFrame
- entities:
- - uid: 11
- components:
- - type: Transform
- pos: 12.5,4.5
- parent: 1
- - uid: 221
- components:
- - type: Transform
- pos: 2.5,4.5
- parent: 1
- - uid: 583
- components:
- - type: Transform
- pos: 20.5,25.5
- parent: 1
-- proto: UniformScrubsColorPurple
- entities:
- - uid: 1706
+ - uid: 795
components:
- type: Transform
- pos: 10.503376,44.53288
+ pos: 12.633508,10.579157
parent: 1
-- proto: VehicleKeyATV
+- proto: TwoWayLever
entities:
- - uid: 659
+ - uid: 909
components:
- type: Transform
- pos: 34.388203,24.550558
+ pos: 30.5,4.5
parent: 1
- - uid: 663
+ - uid: 910
components:
- type: Transform
- pos: 34.3004,24.682264
+ pos: 32.5,3.5
parent: 1
-- proto: VendingMachineAtmosDrobe
- entities:
- - uid: 259
+ - uid: 1105
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 20.5,10.5
+ pos: 5.5,0.5
parent: 1
-- proto: VendingMachineChefvend
- entities:
- - uid: 532
+ - uid: 1108
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 18.5,12.5
+ pos: 11.5,0.5
parent: 1
-- proto: VendingMachineDonut
- entities:
- - uid: 538
+ - uid: 1762
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 16.5,16.5
+ pos: 26.5,42.5
parent: 1
-- proto: VendingMachineEngivend
- entities:
- - uid: 461
+ - uid: 1763
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 14.5,27.5
+ pos: 28.5,42.5
parent: 1
-- proto: VendingMachineMedical
- entities:
- - uid: 1138
+ - uid: 1764
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 28.5,28.5
+ pos: 26.5,48.5
parent: 1
-- proto: VendingMachineRepDrobe
- entities:
- - uid: 276
+ - uid: 1765
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 10.5,14.5
+ pos: 28.5,48.5
parent: 1
-- proto: VendingMachineRoboDrobe
+- proto: UnfinishedMachineFrame
entities:
- - uid: 1906
+ - uid: 221
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 10.5,48.5
+ pos: 2.5,4.5
parent: 1
-- proto: VendingMachineRobotics
+- proto: UniformScrubsColorPurple
entities:
- - uid: 277
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 1.5,16.5
- parent: 1
- - uid: 1905
+ - uid: 1706
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 14.5,46.5
+ pos: 10.503376,44.53288
parent: 1
-- proto: VendingMachineVendomat
+- proto: VendingMachineChefvend
entities:
- - uid: 841
+ - uid: 532
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 20.5,28.5
+ pos: 18.5,12.5
parent: 1
-- proto: VendingMachineYouTool
+- proto: VendingMachineMedical
entities:
- - uid: 545
+ - uid: 1138
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 16.5,25.5
+ pos: 28.5,28.5
parent: 1
- proto: WallmountTelescreen
entities:
@@ -13887,134 +13685,96 @@ entities:
entities:
- uid: 377
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,7.5
parent: 1
- uid: 378
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,7.5
parent: 1
- uid: 379
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,9.5
parent: 1
- uid: 380
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,9.5
parent: 1
- uid: 381
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,8.5
parent: 1
- uid: 382
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,9.5
parent: 1
- uid: 383
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,9.5
parent: 1
- uid: 384
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,8.5
parent: 1
- uid: 385
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,7.5
parent: 1
- uid: 386
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,8.5
parent: 1
- uid: 387
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,7.5
parent: 1
- uid: 388
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,7.5
parent: 1
- uid: 389
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,7.5
parent: 1
- uid: 390
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,9.5
parent: 1
- uid: 391
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,7.5
parent: 1
- uid: 392
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,9.5
parent: 1
- uid: 393
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,8.5
parent: 1
- uid: 394
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,9.5
parent: 1
- uid: 395
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,9.5
parent: 1
@@ -14022,209 +13782,153 @@ entities:
entities:
- uid: 46
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,8.5
parent: 1
- uid: 52
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,8.5
parent: 1
- uid: 292
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,6.5
parent: 1
- uid: 293
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,6.5
parent: 1
- uid: 405
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,10.5
parent: 1
- uid: 406
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,10.5
parent: 1
- uid: 426
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,9.5
parent: 1
- uid: 432
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,7.5
parent: 1
- uid: 433
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,9.5
parent: 1
- uid: 434
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,7.5
parent: 1
- uid: 571
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,46.5
parent: 1
- uid: 621
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,21.5
parent: 1
- uid: 622
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,19.5
parent: 1
- uid: 623
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,21.5
parent: 1
- uid: 627
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,19.5
parent: 1
- uid: 1073
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 33.5,35.5
parent: 1
- uid: 1255
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 25.5,35.5
parent: 1
- uid: 1325
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,44.5
parent: 1
- uid: 1327
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,42.5
parent: 1
- uid: 1329
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,42.5
parent: 1
- uid: 1330
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,44.5
parent: 1
- uid: 1332
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,48.5
parent: 1
- uid: 1333
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,46.5
parent: 1
- uid: 1335
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,48.5
parent: 1
- uid: 1369
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,21.5
parent: 1
- uid: 1370
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,21.5
parent: 1
- uid: 1375
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,19.5
parent: 1
- uid: 1376
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,19.5
parent: 1
@@ -14232,404 +13936,292 @@ entities:
entities:
- uid: 19
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,0.5
parent: 1
- uid: 141
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,25.5
parent: 1
- uid: 145
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,26.5
parent: 1
- uid: 146
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,25.5
parent: 1
- uid: 147
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,27.5
parent: 1
- uid: 206
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,35.5
parent: 1
- uid: 207
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,35.5
parent: 1
- uid: 208
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,35.5
parent: 1
- uid: 209
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,35.5
parent: 1
- uid: 211
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,34.5
parent: 1
- uid: 212
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,34.5
parent: 1
- uid: 220
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,4.5
parent: 1
- uid: 225
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,4.5
parent: 1
- uid: 247
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,4.5
parent: 1
- uid: 251
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,0.5
parent: 1
- uid: 252
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,1.5
parent: 1
- uid: 272
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,0.5
parent: 1
- uid: 305
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,4.5
parent: 1
- uid: 306
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,3.5
parent: 1
- uid: 307
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,0.5
parent: 1
- uid: 308
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,1.5
parent: 1
- uid: 476
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,13.5
parent: 1
- uid: 481
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,15.5
parent: 1
- uid: 483
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,13.5
parent: 1
- uid: 501
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 25.5,14.5
parent: 1
- uid: 510
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,15.5
parent: 1
- uid: 748
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,19.5
parent: 1
- uid: 749
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,19.5
parent: 1
- uid: 857
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,36.5
parent: 1
- uid: 901
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 30.5,46.5
parent: 1
- uid: 970
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,32.5
parent: 1
- uid: 990
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 21.5,32.5
parent: 1
- uid: 1158
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,36.5
parent: 1
- uid: 1159
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,35.5
parent: 1
- uid: 1160
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,35.5
parent: 1
- uid: 1162
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,35.5
parent: 1
- uid: 1295
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,39.5
parent: 1
- uid: 1298
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,39.5
parent: 1
- uid: 1299
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,39.5
parent: 1
- uid: 1300
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,40.5
parent: 1
- uid: 1408
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,44.5
parent: 1
- uid: 1409
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,44.5
parent: 1
- uid: 1410
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,46.5
parent: 1
- uid: 1411
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,46.5
parent: 1
- uid: 1414
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 29.5,46.5
parent: 1
- uid: 1415
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 30.5,44.5
parent: 1
- uid: 1416
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 29.5,44.5
parent: 1
- uid: 1480
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,43.5
parent: 1
- uid: 1481
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,44.5
parent: 1
- uid: 1482
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,43.5
parent: 1
- uid: 1483
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,43.5
parent: 1
- uid: 1484
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,43.5
parent: 1
- uid: 1485
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,44.5
parent: 1
- uid: 1486
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,47.5
parent: 1
- uid: 1487
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,47.5
parent: 1
- uid: 1488
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,47.5
parent: 1
@@ -14637,109 +14229,45 @@ entities:
entities:
- uid: 555
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,13.5
parent: 1
- uid: 556
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,14.5
parent: 1
- uid: 557
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,15.5
parent: 1
- uid: 558
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,15.5
parent: 1
- uid: 559
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,15.5
parent: 1
- uid: 560
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,16.5
parent: 1
- uid: 567
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,12.5
parent: 1
-- proto: WaterCooler
- entities:
- - uid: 629
- components:
- - type: Transform
- pos: 6.5,18.5
- parent: 1
- - uid: 723
- components:
- - type: Transform
- pos: 19.5,22.5
- parent: 1
- - uid: 1279
- components:
- - type: Transform
- pos: 17.5,40.5
- parent: 1
- - uid: 1287
- components:
- - type: Transform
- pos: 21.5,12.5
- parent: 1
-- proto: WeaponGrapplingGun
- entities:
- - uid: 1888
- components:
- - type: Transform
- pos: 10.498594,19.715086
- parent: 1
-- proto: WeaponMakeshiftLaser
- entities:
- - uid: 300
- components:
- - type: Transform
- pos: 12.678812,18.476189
- parent: 1
-- proto: WeaponRevolverDeckard
- entities:
- - uid: 281
- components:
- - type: Transform
- pos: 12.544774,12.93053
- parent: 1
-- proto: WeaponRifleAk
- entities:
- - uid: 1115
- components:
- - type: Transform
- pos: 11.295292,39.495438
- parent: 1
-- proto: WelderIndustrial
+- proto: WindoorSecure
entities:
- - uid: 846
+ - uid: 663
components:
- type: Transform
- pos: 22.629864,10.533834
+ pos: 11.5,44.5
parent: 1
- proto: WindoorSecureEngineeringLocked
entities:
@@ -14755,13 +14283,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 20.5,45.5
parent: 1
-- proto: WindoorSecureScienceLocked
- entities:
- - uid: 883
- components:
- - type: Transform
- pos: 11.5,44.5
- parent: 1
- proto: Window
entities:
- uid: 253
@@ -15062,28 +14583,4 @@ entities:
- type: Transform
pos: 13.5,44.5
parent: 1
-- proto: Wirecutter
- entities:
- - uid: 593
- components:
- - type: Transform
- pos: 22.514648,24.424137
- parent: 1
- - uid: 807
- components:
- - type: Transform
- pos: 27.53433,0.9556408
- parent: 1
-- proto: Wrench
- entities:
- - uid: 808
- components:
- - type: Transform
- pos: 25.514818,4.0434456
- parent: 1
- - uid: 1898
- components:
- - type: Transform
- pos: 14.420891,48.272213
- parent: 1
...
diff --git a/Resources/Maps/_NF/Dungeon/experiment.yml b/Resources/Maps/_NF/Dungeon/experiment.yml
new file mode 100644
index 00000000000..6f7d621d32c
--- /dev/null
+++ b/Resources/Maps/_NF/Dungeon/experiment.yml
@@ -0,0 +1,11659 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 18: FloorBlueCircuit
+ 30: FloorDark
+ 33: FloorDarkHerringbone
+ 37: FloorDarkPavement
+ 38: FloorDarkPavementVertical
+ 39: FloorDarkPlastic
+ 45: FloorFreezer
+ 48: FloorGrass
+ 50: FloorGrassJungle
+ 55: FloorGreenCircuit
+ 59: FloorHydro
+ 62: FloorLaundry
+ 63: FloorLino
+ 75: FloorPlanetGrass
+ 76: FloorPlastic
+ 78: FloorReinforced
+ 81: FloorShowroom
+ 85: FloorShuttleOrange
+ 92: FloorSteel
+ 97: FloorSteelDiagonal
+ 102: FloorSteelMini
+ 103: FloorSteelMono
+ 106: FloorSteelPavementVertical
+ 107: FloorTechMaint
+ 108: FloorTechMaint2
+ 109: FloorTechMaint3
+ 111: FloorWhite
+ 116: FloorWhiteMono
+ 120: FloorWhitePlastic
+ 121: FloorWood
+ 125: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1653
+ components:
+ - type: MetaData
+ - type: Transform
+ - type: Map
+ - type: PhysicsMap
+ - type: Broadphase
+ - type: OccluderTree
+ - type: MapGrid
+ chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: dAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAADbwAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAbwAAAAAAXAAAAAABXAAAAAADfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABdAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATAAAAAAAeAAAAAABTAAAAAAATAAAAAABeAAAAAABTAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABVQAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATAAAAAADeAAAAAABTAAAAAAATAAAAAACeAAAAAAATAAAAAACXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAAXAAAAAAAeQAAAAABeQAAAAAAeQAAAAABeQAAAAAAeQAAAAADeQAAAAACeQAAAAABeQAAAAAAeQAAAAABeQAAAAADVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAATAAAAAACeQAAAAABeQAAAAABeQAAAAAAeQAAAAACeQAAAAABeQAAAAABeQAAAAAAeQAAAAACeQAAAAAAeQAAAAACVQAAAAAAJgAAAAAAOwAAAAAAagAAAAAAOwAAAAAATAAAAAABTAAAAAACTAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAABTAAAAAAATAAAAAACTAAAAAABTAAAAAABVQAAAAAAIQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAHgAAAAABXAAAAAADXAAAAAACXAAAAAADHgAAAAACfQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAHgAAAAACXAAAAAABXAAAAAABXAAAAAABHgAAAAADfQAAAAAAVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAfQAAAAAAXAAAAAACXAAAAAABXAAAAAAAVQAAAAAAHgAAAAAAfQAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAADVQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAVQAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: XAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAABVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAXAAAAAABbwAAAAACbwAAAAACbwAAAAADXAAAAAABVQAAAAAAMgAAAAAAbwAAAAADbwAAAAADbwAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAbwAAAAABbwAAAAADMgAAAAAAbwAAAAADbwAAAAADVQAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAACLQAAAAAALQAAAAAAeAAAAAADeAAAAAADeAAAAAADVQAAAAAAbwAAAAADMgAAAAAAMgAAAAAAMgAAAAAAbwAAAAABVQAAAAAAbwAAAAABbwAAAAADXAAAAAABbwAAAAADLQAAAAAAfQAAAAAAeAAAAAADbwAAAAACbwAAAAACVQAAAAAAbwAAAAABbwAAAAACMgAAAAAAbwAAAAABbwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAADbwAAAAABLQAAAAAAfQAAAAAAeAAAAAADbwAAAAAAbwAAAAADVQAAAAAAXAAAAAAAbwAAAAADbwAAAAAAbwAAAAABXAAAAAABVQAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAADVQAAAAAAUQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAACZwAAAAAAVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAXAAAAAADVQAAAAAALQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAACZwAAAAACVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAZgAAAAADZgAAAAACZwAAAAACVQAAAAAATgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABVQAAAAAALQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZwAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAALQAAAAAALQAAAAAAUQAAAAAAVQAAAAAAZgAAAAADZgAAAAAAZwAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABbwAAAAABXAAAAAACbwAAAAAAbwAAAAADfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAbwAAAAAAbwAAAAACXAAAAAAAHgAAAAABHgAAAAABHgAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAADHgAAAAABHgAAAAABHgAAAAADXAAAAAADVQAAAAAAbwAAAAACbwAAAAAC
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: dAAAAAAAVQAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAAbwAAAAAAVQAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAATgAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAdAAAAAAAVQAAAAAAXAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAXAAAAAAAagAAAAAAXAAAAAAAOwAAAAAAagAAAAAAOwAAAAAAJgAAAAAAVQAAAAAAawAAAAAAXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADVQAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAVQAAAAAAXAAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAABVQAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAHgAAAAAAVQAAAAAAXAAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAADVQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAXAAAAAAAVQAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: XAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADVQAAAAAAMgAAAAAAXAAAAAABXAAAAAABXAAAAAABMgAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAbwAAAAAAbwAAAAABbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAAbwAAAAABbwAAAAADbwAAAAABVQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAABVQAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAbwAAAAABVQAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABXAAAAAADVQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAACbwAAAAADVQAAAAAAMgAAAAAAXAAAAAACXAAAAAAAXAAAAAABMgAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADfQAAAAAAVQAAAAAAXAAAAAACXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAACHgAAAAAAVQAAAAAAYQAAAAAAYQAAAAADYQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADVQAAAAAAYQAAAAAAYQAAAAAAbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAAAHgAAAAADVQAAAAAAYQAAAAADYQAAAAACbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAYQAAAAAAYQAAAAABbAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACVQAAAAAAYQAAAAAAYQAAAAABYQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADfQAAAAAAXAAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAABVQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABbwAAAAADawAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAD
+ version: 6
+ -1,2:
+ ind: -1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
+ version: 6
+ -1,3:
+ ind: -1,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: HgAAAAADHgAAAAACHgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAABbwAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAADVQAAAAAAbwAAAAADbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADdAAAAAAAdAAAAAAAdAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAABVQAAAAAAXAAAAAADXAAAAAABfQAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAZwAAAAADZwAAAAAAZwAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAABVQAAAAAAXAAAAAACdAAAAAABdAAAAAABfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABdAAAAAABdAAAAAAAdAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAABVQAAAAAAXAAAAAADXAAAAAABNwAAAAAANwAAAAAANwAAAAAAXAAAAAABXAAAAAADVQAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABbwAAAAADTgAAAAAATgAAAAAATgAAAAAAVQAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAABVQAAAAAAXAAAAAABXAAAAAABXAAAAAADbwAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAACfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAADbwAAAAACTgAAAAAATgAAAAAATgAAAAAAVQAAAAAAXAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXAAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADfQAAAAAAbwAAAAACbwAAAAAAbwAAAAADVQAAAAAAXAAAAAADbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAABVQAAAAAAXAAAAAADXAAAAAABXAAAAAADbwAAAAABbwAAAAADfQAAAAAAbwAAAAACVQAAAAAAXAAAAAACbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAABVQAAAAAAeAAAAAAAeAAAAAABeAAAAAAAbwAAAAABfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAXAAAAAADbQAAAAACbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAAAXAAAAAABVQAAAAAA
+ version: 6
+ 0,3:
+ ind: 0,3
+ tiles: eAAAAAACeAAAAAABeAAAAAABfQAAAAAAfQAAAAAAbwAAAAADfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: bwAAAAABfQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAACVQAAAAAAMAAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAABdAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAXAAAAAADVQAAAAAAbwAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAACVQAAAAAAMAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAAAXAAAAAABXAAAAAABVQAAAAAAXAAAAAABXAAAAAADfQAAAAAAXAAAAAAAfQAAAAAAXAAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACVQAAAAAAXAAAAAACXAAAAAADfQAAAAAAXAAAAAADfQAAAAAAXAAAAAACXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAJwAAAAADHgAAAAACHgAAAAABJwAAAAADHgAAAAACHgAAAAACJwAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAANwAAAAAAfQAAAAAANwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAfQAAAAAANwAAAAAANwAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJwAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADNwAAAAAANwAAAAAAfQAAAAAANwAAAAAANwAAAAAAHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAANwAAAAAAfQAAAAAANwAAAAAAfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,3:
+ ind: 1,3
+ tiles: JwAAAAADHgAAAAAAHgAAAAAAJwAAAAAAHgAAAAAAHgAAAAADJwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: TgAAAAAATgAAAAAAXAAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAACfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAATgAAAAAATgAAAAAAXAAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAATgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAXAAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAXAAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAfQAAAAAAJwAAAAAAJwAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAVQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAVQAAAAAAHgAAAAAAHgAAAAAAXAAAAAABXAAAAAACXAAAAAADbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAfQAAAAAAHgAAAAAAXAAAAAACXAAAAAACXAAAAAACbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAA
+ version: 6
+ 3,0:
+ ind: 3,0
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,-1:
+ ind: 2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ version: 6
+ 3,-1:
+ ind: 3,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,1:
+ ind: 3,1
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,2:
+ ind: 3,2
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: HgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAACMAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAADbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAMAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACfQAAAAAAXAAAAAADfQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAACVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: HgAAAAAAHgAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAAAbwAAAAAAVQAAAAAAXAAAAAADXAAAAAACfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABXAAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAAAbwAAAAACbwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAADbwAAAAACbwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAACTgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAbwAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ version: 6
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 258: 40,39
+ 377: 10,35
+ 641: 17,25
+ 642: 17,26
+ 643: 17,27
+ - node:
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1331: 41,14
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 259: 46,39
+ 378: 0,35
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 54: 0,43
+ 55: 0,44
+ 534: 4,27
+ 638: 16,25
+ 639: 16,26
+ 640: 16,27
+ 808: 0,6
+ 809: 0,7
+ 810: 7,10
+ 811: 8,10
+ 812: 9,10
+ 895: 30,18
+ 896: 30,19
+ 925: 1,12
+ 926: 1,13
+ 1339: 3,6
+ 1340: 3,7
+ - node:
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 50: 2,48
+ 51: 1,48
+ 52: 0,48
+ 53: 0,42
+ 532: 6,27
+ 533: 6,28
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 619: 14,42
+ - node:
+ color: '#FFFFFFFF'
+ id: BotRight
+ decals:
+ 623: 14,26
+ 636: 14,25
+ 637: 14,27
+ - node:
+ color: '#FFFFFFFF'
+ id: Box
+ decals:
+ 5: 5,43
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerNe
+ decals:
+ 963: 14,16
+ 1152: 22,10
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 485: 11,31
+ 760: 10,21
+ 761: 9,22
+ 1299: 38,16
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerNw
+ decals:
+ 964: 8,16
+ 1153: 12,10
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 480: 5,30
+ 758: 6,21
+ 759: 7,22
+ 1297: 35,13
+ 1298: 37,16
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerSe
+ decals:
+ 961: 14,12
+ 1151: 22,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 479: 7,32
+ 762: 10,19
+ 763: 9,18
+ 1300: 38,12
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerSw
+ decals:
+ 962: 8,12
+ 1150: 12,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 488: 1,31
+ 764: 7,18
+ 765: 6,19
+ 1301: 35,12
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelEndN
+ decals:
+ 835: 1,7
+ 836: 4,7
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNe
+ decals:
+ 487: 11,30
+ 772: 9,21
+ 781: 13,19
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNw
+ decals:
+ 773: 7,21
+ 780: 15,19
+ 1302: 37,13
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerSe
+ decals:
+ 770: 9,19
+ 779: 13,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerSw
+ decals:
+ 489: 1,32
+ 771: 7,19
+ 778: 15,21
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineE
+ decals:
+ 945: 14,13
+ 946: 14,14
+ 947: 14,15
+ 1144: 22,7
+ 1145: 22,8
+ 1146: 22,9
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 769: 10,20
+ 774: 13,20
+ 837: 4,6
+ 838: 1,6
+ 1306: 38,13
+ 1307: 38,14
+ 1308: 38,15
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineN
+ decals:
+ 951: 11,16
+ 952: 10,16
+ 953: 9,16
+ 954: 12,16
+ 955: 13,16
+ 1135: 21,10
+ 1136: 20,10
+ 1137: 18,10
+ 1138: 19,10
+ 1139: 17,10
+ 1140: 16,10
+ 1141: 15,10
+ 1142: 13,10
+ 1143: 14,10
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 481: 7,30
+ 482: 8,30
+ 483: 9,31
+ 484: 10,31
+ 486: 12,30
+ 768: 8,22
+ 777: 14,19
+ 1154: 21,6
+ 1155: 20,6
+ 1156: 19,6
+ 1157: 17,6
+ 1158: 18,6
+ 1159: 16,6
+ 1160: 15,6
+ 1161: 14,6
+ 1162: 13,6
+ 1303: 36,13
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineS
+ decals:
+ 956: 13,12
+ 957: 12,12
+ 958: 11,12
+ 959: 10,12
+ 960: 9,12
+ 1126: 21,6
+ 1127: 20,6
+ 1128: 18,6
+ 1129: 19,6
+ 1130: 17,6
+ 1131: 16,6
+ 1132: 15,6
+ 1133: 14,6
+ 1134: 13,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineS
+ decals:
+ 477: 4,32
+ 478: 5,32
+ 490: 3,31
+ 491: 2,31
+ 492: 0,32
+ 766: 8,18
+ 776: 14,21
+ 1163: 21,10
+ 1164: 20,10
+ 1165: 19,10
+ 1166: 18,10
+ 1167: 17,10
+ 1168: 16,10
+ 1169: 15,10
+ 1170: 14,10
+ 1171: 13,10
+ 1309: 37,12
+ 1310: 36,12
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineW
+ decals:
+ 948: 8,13
+ 949: 8,14
+ 950: 8,15
+ 1147: 12,7
+ 1148: 12,8
+ 1149: 12,9
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 767: 6,20
+ 775: 15,20
+ 839: 4,6
+ 840: 1,6
+ 1304: 37,14
+ 1305: 37,15
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 524: 6,28
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 501: 11,31
+ 748: 7,19
+ 785: 15,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 71: 6,40
+ 88: 14,40
+ 107: 2,46
+ 124: 22,40
+ 171: 30,40
+ 172: 46,40
+ 350: 10,36
+ 391: 22,36
+ 440: 33,36
+ 548: 26,32
+ 688: 40,32
+ 995: 38,4
+ 998: 54,4
+ 1072: 15,4
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 525: 4,28
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 498: 5,30
+ 746: 9,19
+ 784: 13,21
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 870: 24,22
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 74: 0,40
+ 89: 8,40
+ 123: 16,40
+ 168: 40,40
+ 169: 32,40
+ 170: 24,40
+ 352: 0,36
+ 390: 12,36
+ 439: 25,36
+ 547: 18,32
+ 689: 28,32
+ 993: 52,4
+ 994: 36,4
+ 1071: 1,4
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 529: 6,24
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 495: 7,32
+ 747: 7,21
+ 786: 15,19
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 72: 6,38
+ 87: 14,38
+ 122: 22,38
+ 166: 30,38
+ 167: 46,38
+ 349: 10,34
+ 396: 22,34
+ 438: 33,34
+ 549: 26,30
+ 687: 40,30
+ 991: 38,0
+ 992: 54,0
+ 1043: 46,0
+ 1073: 15,0
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 528: 4,24
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 508: 1,31
+ 749: 9,21
+ 787: 13,19
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 874: 24,18
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 73: 0,38
+ 90: 8,38
+ 125: 16,38
+ 173: 40,38
+ 174: 32,38
+ 175: 24,38
+ 351: 0,34
+ 397: 12,34
+ 441: 25,34
+ 550: 18,30
+ 690: 28,30
+ 996: 36,0
+ 997: 52,0
+ 1044: 44,0
+ 1074: 1,0
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteEndE
+ decals:
+ 117: 9,39
+ 203: 26,39
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteEndW
+ decals:
+ 116: 13,39
+ 202: 28,39
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 335: 16,42
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 121: 9,38
+ 206: 25,39
+ 211: 25,38
+ 503: 11,30
+ 716: 29,30
+ 752: 6,19
+ 753: 7,18
+ 861: 21,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 1042: 38,2
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 336: 22,42
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 120: 13,38
+ 207: 29,39
+ 210: 29,38
+ 714: 39,30
+ 754: 10,19
+ 757: 9,18
+ 860: 19,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 1041: 52,2
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 334: 16,48
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 119: 9,40
+ 205: 25,39
+ 209: 25,40
+ 715: 29,32
+ 755: 6,21
+ 756: 7,22
+ 862: 21,19
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 333: 22,48
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 118: 13,40
+ 204: 29,39
+ 208: 29,40
+ 507: 1,32
+ 713: 39,32
+ 750: 10,21
+ 751: 9,22
+ 863: 19,19
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineE
+ decals:
+ 317: 16,43
+ 318: 16,44
+ 319: 16,46
+ 320: 16,47
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteLineE
+ decals:
+ 521: 6,25
+ 522: 6,26
+ 523: 6,27
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineE
+ decals:
+ 11: 3,42
+ 12: 3,43
+ 13: 3,44
+ 712: 29,31
+ 744: 6,20
+ 783: 15,20
+ 854: 21,22
+ 855: 21,18
+ 1225: 18,0
+ 1226: 18,1
+ 1227: 18,2
+ 1228: 18,4
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineE
+ decals:
+ 864: 28,19
+ 865: 28,20
+ 866: 28,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 85: 6,39
+ 101: 14,39
+ 103: 2,42
+ 104: 2,43
+ 105: 2,44
+ 106: 2,45
+ 131: 22,39
+ 195: 30,39
+ 196: 38,39
+ 197: 46,39
+ 353: 10,35
+ 399: 22,35
+ 442: 33,35
+ 558: 26,31
+ 691: 40,31
+ 1002: 38,1
+ 1003: 38,3
+ 1004: 54,1
+ 1005: 54,2
+ 1006: 54,3
+ 1046: 46,1
+ 1075: 15,1
+ 1076: 15,2
+ 1077: 15,3
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineN
+ decals:
+ 313: 21,42
+ 314: 20,42
+ 315: 18,42
+ 316: 17,42
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteLineN
+ decals:
+ 531: 5,28
+ 1188: 21,6
+ 1189: 19,6
+ 1190: 13,6
+ 1191: 15,6
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineN
+ decals:
+ 110: 12,38
+ 111: 11,38
+ 112: 10,38
+ 400: 21,34
+ 401: 20,34
+ 402: 19,34
+ 403: 13,34
+ 496: 8,30
+ 497: 7,30
+ 499: 9,31
+ 500: 10,31
+ 502: 12,30
+ 693: 38,30
+ 694: 37,30
+ 695: 36,30
+ 696: 35,30
+ 697: 34,30
+ 698: 33,30
+ 699: 32,30
+ 700: 31,30
+ 701: 30,30
+ 742: 8,18
+ 789: 14,21
+ 852: 18,21
+ 853: 22,21
+ 1311: 33,16
+ 1312: 32,16
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineN
+ decals:
+ 867: 27,22
+ 868: 26,22
+ 869: 25,22
+ 1252: 31,9
+ 1253: 32,9
+ 1258: 27,9
+ 1259: 26,9
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 75: 1,40
+ 76: 2,40
+ 77: 5,40
+ 78: 4,40
+ 79: 3,40
+ 91: 9,40
+ 92: 10,40
+ 93: 11,40
+ 94: 12,40
+ 95: 13,40
+ 108: 1,46
+ 109: 0,46
+ 133: 17,40
+ 134: 19,40
+ 135: 18,40
+ 136: 20,40
+ 137: 21,40
+ 176: 29,40
+ 177: 35,40
+ 178: 36,40
+ 179: 41,40
+ 180: 42,40
+ 181: 43,40
+ 182: 44,40
+ 183: 45,40
+ 201: 25,40
+ 337: 9,36
+ 338: 8,36
+ 339: 7,36
+ 340: 3,36
+ 341: 1,36
+ 342: 2,36
+ 385: 15,36
+ 386: 14,36
+ 387: 13,36
+ 388: 20,36
+ 389: 21,36
+ 451: 26,36
+ 452: 27,36
+ 453: 28,36
+ 454: 29,36
+ 455: 30,36
+ 456: 31,36
+ 457: 32,36
+ 540: 25,32
+ 541: 24,32
+ 542: 23,32
+ 543: 22,32
+ 544: 21,32
+ 545: 20,32
+ 546: 19,32
+ 665: 39,32
+ 666: 38,32
+ 667: 36,32
+ 668: 37,32
+ 669: 35,32
+ 670: 34,32
+ 671: 32,32
+ 672: 33,32
+ 673: 31,32
+ 674: 30,32
+ 675: 29,32
+ 999: 53,4
+ 1000: 37,4
+ 1031: 51,2
+ 1032: 50,2
+ 1033: 48,2
+ 1034: 47,2
+ 1035: 46,2
+ 1036: 44,2
+ 1037: 42,2
+ 1038: 43,2
+ 1039: 40,2
+ 1040: 39,2
+ 1048: 13,4
+ 1049: 14,4
+ 1050: 11,4
+ 1051: 10,4
+ 1052: 9,4
+ 1053: 7,4
+ 1054: 8,4
+ 1055: 6,4
+ 1056: 5,4
+ 1057: 3,4
+ 1078: 2,4
+ 1098: 12,4
+ 1099: 4,4
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineS
+ decals:
+ 321: 17,48
+ 322: 18,48
+ 323: 20,48
+ 324: 21,48
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteLineS
+ decals:
+ 530: 5,24
+ 1184: 21,10
+ 1185: 19,10
+ 1186: 15,10
+ 1187: 13,10
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineS
+ decals:
+ 14: 4,45
+ 15: 6,45
+ 113: 12,40
+ 114: 11,40
+ 115: 10,40
+ 404: 21,36
+ 405: 20,36
+ 406: 15,36
+ 407: 14,36
+ 408: 13,36
+ 493: 4,32
+ 494: 5,32
+ 504: 3,31
+ 505: 2,31
+ 506: 0,32
+ 702: 38,32
+ 703: 37,32
+ 704: 36,32
+ 705: 35,32
+ 706: 34,32
+ 707: 33,32
+ 708: 32,32
+ 709: 31,32
+ 710: 30,32
+ 743: 8,22
+ 782: 14,19
+ 856: 22,19
+ 857: 18,19
+ 1313: 32,14
+ 1314: 33,14
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineS
+ decals:
+ 875: 25,18
+ 876: 26,18
+ 877: 27,18
+ 1254: 32,7
+ 1255: 31,7
+ 1256: 27,7
+ 1257: 26,7
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 80: 5,38
+ 81: 4,38
+ 82: 3,38
+ 83: 2,38
+ 84: 1,38
+ 96: 13,38
+ 97: 12,38
+ 98: 11,38
+ 99: 10,38
+ 100: 9,38
+ 126: 21,38
+ 127: 20,38
+ 128: 19,38
+ 129: 18,38
+ 130: 17,38
+ 184: 45,38
+ 185: 44,38
+ 186: 43,38
+ 187: 42,38
+ 188: 41,38
+ 189: 37,38
+ 190: 34,38
+ 191: 35,38
+ 192: 33,38
+ 193: 29,38
+ 194: 25,38
+ 343: 9,34
+ 344: 7,34
+ 345: 8,34
+ 346: 3,34
+ 347: 2,34
+ 348: 1,34
+ 392: 21,34
+ 393: 20,34
+ 394: 19,34
+ 395: 13,34
+ 444: 26,34
+ 445: 27,34
+ 446: 28,34
+ 447: 29,34
+ 448: 30,34
+ 449: 31,34
+ 450: 32,34
+ 551: 19,30
+ 552: 20,30
+ 553: 21,30
+ 554: 22,30
+ 555: 23,30
+ 556: 24,30
+ 557: 25,30
+ 676: 39,30
+ 677: 38,30
+ 678: 37,30
+ 679: 36,30
+ 680: 35,30
+ 681: 34,30
+ 682: 33,30
+ 683: 32,30
+ 684: 31,30
+ 685: 30,30
+ 686: 29,30
+ 1001: 37,0
+ 1007: 53,0
+ 1045: 45,0
+ 1058: 2,0
+ 1059: 3,0
+ 1060: 4,0
+ 1061: 5,0
+ 1062: 6,0
+ 1063: 7,0
+ 1064: 8,0
+ 1065: 9,0
+ 1066: 10,0
+ 1067: 11,0
+ 1068: 12,0
+ 1069: 13,0
+ 1070: 14,0
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineW
+ decals:
+ 325: 22,43
+ 326: 22,44
+ 327: 22,46
+ 328: 22,47
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteLineW
+ decals:
+ 526: 4,27
+ 527: 4,26
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineW
+ decals:
+ 6: 3,47
+ 7: 3,46
+ 8: 3,44
+ 9: 3,43
+ 10: 3,42
+ 711: 39,31
+ 745: 10,20
+ 788: 13,20
+ 858: 19,18
+ 859: 19,22
+ 1229: 34,0
+ 1230: 34,1
+ 1231: 34,2
+ 1232: 34,4
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineW
+ decals:
+ 871: 24,21
+ 872: 24,20
+ 873: 24,19
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 86: 0,39
+ 102: 8,39
+ 132: 16,39
+ 198: 40,39
+ 199: 32,39
+ 200: 24,39
+ 354: 0,35
+ 398: 12,35
+ 443: 25,35
+ 559: 18,31
+ 692: 28,31
+ 1008: 52,1
+ 1009: 52,3
+ 1010: 36,1
+ 1011: 36,2
+ 1012: 36,3
+ 1047: 44,1
+ 1079: 1,1
+ 1080: 1,2
+ 1081: 1,3
+ - node:
+ color: '#FFFFFFFF'
+ id: BushAOne
+ decals:
+ 1085: 12,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BushCThree
+ decals:
+ 432: 34,36
+ 1087: 4,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BushCTwo
+ decals:
+ 431: 24,36
+ 790: 12,18
+ 1082: 8,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Busha2
+ decals:
+ 1084: 6,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushb2
+ decals:
+ 1083: 10,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushb3
+ decals:
+ 738: 7.997179,19.971762
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc1
+ decals:
+ 1086: 11,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc3
+ decals:
+ 433: 24,34
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushe4
+ decals:
+ 1097: 4,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushh3
+ decals:
+ 1095: 9,2
+ 1096: 4,2
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 618: 11,42
+ - node:
+ color: '#D381C996'
+ id: CheckerNESW
+ decals:
+ 138: 17,39
+ 139: 18,39
+ 140: 19,39
+ 141: 20,39
+ 142: 21,39
+ 458: 31,35
+ 459: 30,35
+ 460: 29,35
+ 461: 28,35
+ 462: 27,35
+ 845: 19,20
+ 846: 20,21
+ 847: 20,20
+ 848: 21,20
+ 849: 20,19
+ - node:
+ color: '#EFB34196'
+ id: CheckerNESW
+ decals:
+ 264: 8,48
+ - node:
+ color: '#D381C996'
+ id: CheckerNWSE
+ decals:
+ 56: 5,39
+ 57: 4,39
+ 58: 3,39
+ 59: 2,39
+ 60: 1,39
+ 243: 45,39
+ 244: 44,39
+ 245: 43,39
+ 246: 42,39
+ 247: 41,39
+ 355: 1,35
+ 356: 2,35
+ 357: 3,35
+ 358: 7,35
+ 359: 8,35
+ 360: 9,35
+ 535: 5,25
+ 536: 5,26
+ 537: 5,27
+ 593: 16,30
+ 594: 16,31
+ 595: 16,32
+ 596: 15,32
+ 597: 15,31
+ 598: 15,30
+ 599: 14,30
+ 600: 14,31
+ 601: 14,32
+ 1013: 37,1
+ 1014: 37,2
+ 1015: 37,3
+ 1016: 53,1
+ 1017: 53,2
+ 1018: 53,3
+ - node:
+ color: '#EFB34196'
+ id: CheckerNWSE
+ decals:
+ 265: 14,48
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 293: 13,47
+ 294: 11,47
+ 295: 9,47
+ 296: 12,43
+ 297: 11,43
+ 298: 10,43
+ 717: 4,22
+ 718: 3,22
+ 893: 34,18
+ 894: 33,18
+ 927: 5,13
+ 928: 11,13
+ 1213: 32,2
+ 1214: 28,2
+ 1215: 24,2
+ 1216: 20,2
+ 1248: 33,7
+ 1249: 33,9
+ 1250: 25,7
+ 1251: 25,9
+ 1328: 40,16
+ 1329: 41,15
+ 1330: 43,16
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 591: 8,30
+ 592: 4,32
+ - node:
+ color: '#D381C996'
+ id: DeliveryGreyscale
+ decals:
+ 649: 34,35
+ 650: 24,35
+ - node:
+ color: '#D381C996'
+ id: DiagonalCheckerBOverlay
+ decals:
+ 651: 22,24
+ 652: 21,24
+ 653: 20,24
+ 654: 20,25
+ 655: 21,25
+ 656: 21,26
+ 657: 20,26
+ 658: 20,27
+ 659: 21,27
+ 660: 22,28
+ 661: 21,28
+ 662: 20,28
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 19: 4,46
+ 20: 4,47
+ 21: 3,48
+ 22: 5,48
+ 23: 6,47
+ 24: 4,48
+ 25: 2,47
+ 26: 3,47
+ 27: 3,46
+ 28: 4,47
+ 29: 5,48
+ 30: 5,47
+ 31: 4,45
+ 32: 3,44
+ 33: 6,45
+ 34: 4,47
+ 238: 38,38
+ 239: 38,40
+ 240: 37,40
+ 241: 34,40
+ 242: 36,38
+ 421: 15,34
+ 422: 19,35
+ 423: 17,35
+ 424: 16,34
+ 425: 18,36
+ 1324: 44,12
+ 1325: 44,15
+ 1326: 42,16
+ 1327: 46,14
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 35: 4,46
+ 36: 3,47
+ 37: 5,48
+ 612: 9,25
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 40: 6,46
+ 41: 6,45
+ 42: 4,45
+ 43: 3,46
+ 44: 4,46
+ 45: 3,42
+ 46: 1,47
+ 153: 17,38
+ 154: 17,39
+ 155: 18,39
+ 156: 21,38
+ 158: 16,40
+ 159: 20,39
+ 160: 13,38
+ 161: 8,40
+ 162: 6,39
+ 163: 5,39
+ 164: 1,39
+ 165: 22,40
+ 225: 29,39
+ 226: 29,40
+ 227: 27,39
+ 228: 26,39
+ 230: 27,38
+ 231: 24,39
+ 232: 30,38
+ 233: 34,39
+ 234: 33,39
+ 235: 37,39
+ 236: 37,38
+ 237: 38,39
+ 300: 10,44
+ 301: 9,45
+ 302: 8,46
+ 303: 8,47
+ 304: 13,48
+ 305: 14,44
+ 306: 13,42
+ 308: 10,42
+ 310: 8,44
+ 311: 13,45
+ 409: 22,35
+ 410: 22,34
+ 411: 21,34
+ 412: 12,36
+ 413: 13,36
+ 414: 12,35
+ 415: 13,34
+ 417: 12,34
+ 418: 19,34
+ 419: 15,34
+ 420: 19,35
+ 576: 6,30
+ 577: 8,31
+ 578: 10,32
+ 579: 11,32
+ 580: 1,30
+ 581: 1,31
+ 582: 0,31
+ 583: 0,30
+ 588: 6,31
+ 589: 5,31
+ 590: 5,32
+ 602: 15,31
+ 603: 16,30
+ 604: 14,31
+ 605: 15,32
+ 606: 19,31
+ 607: 20,30
+ 608: 21,30
+ 609: 24,30
+ 610: 26,31
+ 613: 9,24
+ 614: 8,24
+ 615: 9,26
+ 616: 10,26
+ 617: 8,28
+ 897: 21,18
+ 898: 22,19
+ 899: 21,19
+ 900: 19,18
+ 901: 18,21
+ 902: 25,18
+ 903: 24,19
+ 904: 28,20
+ 905: 26,22
+ 906: 31,19
+ 907: 30,20
+ 908: 34,19
+ 909: 32,18
+ 910: 32,22
+ 911: 14,22
+ 912: 13,21
+ 913: 13,19
+ 914: 15,18
+ 915: 16,20
+ 916: 9,18
+ 917: 10,19
+ 918: 6,19
+ 919: 8,22
+ 920: 4,20
+ 921: 2,22
+ 922: 2,18
+ 923: 0,21
+ 924: 0,19
+ 1284: 27,12
+ 1285: 30,14
+ 1286: 30,15
+ 1287: 24,14
+ 1288: 27,16
+ 1290: 28,15
+ 1291: 27,14
+ 1292: 25,15
+ 1318: 33,12
+ 1319: 34,14
+ 1320: 35,12
+ 1321: 33,15
+ 1322: 34,15
+ 1323: 38,12
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 38: 3,44
+ 39: 5,45
+ 157: 17,39
+ 229: 27,40
+ 307: 11,42
+ 309: 8,45
+ 416: 12,35
+ 584: 12,31
+ 585: 4,31
+ 586: 4,30
+ 587: 0,30
+ 1289: 27,15
+ 1315: 34,13
+ 1316: 33,15
+ 1317: 34,12
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBROne
+ decals:
+ 437: 24,34
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBRTwo
+ decals:
+ 739: 8,21
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv1
+ decals:
+ 436: 34,36
+ 740: 9,20
+ 1091: 5,2
+ 1094: 12,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv2
+ decals:
+ 1093: 9,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv3
+ decals:
+ 741: 7,20
+ 1092: 7,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy2
+ decals:
+ 435: 24,36
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy3
+ decals:
+ 734: 7.934679,18.971762
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy4
+ decals:
+ 434: 34,34
+ - node:
+ color: '#9FED5896'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1172: 21,7
+ 1173: 21,8
+ 1174: 21,9
+ 1175: 19,7
+ 1176: 19,8
+ 1177: 19,9
+ 1178: 15,7
+ 1179: 15,8
+ 1180: 15,9
+ 1181: 13,7
+ 1182: 13,8
+ 1183: 13,9
+ - node:
+ color: '#D381C996'
+ id: FullTileOverlayGreyscale
+ decals:
+ 47: 2,48
+ 48: 1,48
+ 49: 0,48
+ 212: 27,38
+ 213: 27,39
+ 214: 27,40
+ 215: 36,39
+ 216: 34,39
+ 217: 33,39
+ 218: 37,39
+ 884: 30,18
+ 885: 30,19
+ 886: 31,19
+ 887: 31,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassa2
+ decals:
+ 1089: 7,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassa4
+ decals:
+ 430: 34,34
+ 1090: 9,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassa5
+ decals:
+ 735: 8.997179,19.971762
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb3
+ decals:
+ 737: 7.997179,21.034262
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb4
+ decals:
+ 1088: 5,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb5
+ decals:
+ 736: 7.044054,20.034262
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd1
+ decals:
+ 732: 7.044054,20.018637
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd3
+ decals:
+ 429: 24,34
+ 733: 8.012804,20.987387
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse1
+ decals:
+ 428: 24,36
+ 731: 8.981554,20.003012
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse2
+ decals:
+ 426: 34,34
+ 730: 8.059679,20.049887
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse3
+ decals:
+ 427: 34,36
+ 729: 8,19
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1271: 26,15
+ 1272: 28,16
+ 1273: 29,16
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 221: 37,38
+ 222: 35,38
+ 223: 34,38
+ 224: 33,38
+ 794: 13,22
+ 795: 14,22
+ 796: 15,22
+ 888: 34,20
+ 889: 33,20
+ 1195: 30,2
+ 1196: 26,2
+ 1197: 22,2
+ 1235: 27,4
+ 1236: 28,4
+ 1237: 25,4
+ 1238: 24,4
+ 1239: 29,4
+ 1240: 30,4
+ 1241: 31,4
+ 1242: 32,4
+ 1243: 23,4
+ 1244: 22,4
+ 1245: 21,4
+ 1246: 20,4
+ - node:
+ color: '#FFFFFFFF'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1192: 26,2
+ 1193: 30,2
+ 1194: 22,2
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1275: 28,13
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 219: 36,40
+ 220: 35,40
+ 791: 13,18
+ 792: 14,18
+ 793: 15,18
+ 1198: 19,3
+ 1199: 20,3
+ 1200: 21,3
+ 1201: 22,3
+ 1202: 23,3
+ 1203: 24,3
+ 1204: 26,3
+ 1205: 25,3
+ 1206: 27,3
+ 1207: 28,3
+ 1208: 29,3
+ 1209: 30,3
+ 1210: 31,3
+ 1211: 32,3
+ 1212: 33,3
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 800: 12,19
+ 801: 12,20
+ 802: 12,21
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 1274: 30,15
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 797: 16,19
+ 798: 16,20
+ 799: 16,21
+ 890: 32,21
+ 891: 32,22
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteCornerNe
+ decals:
+ 627: 13,28
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 628: 12,28
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteCornerSe
+ decals:
+ 633: 13,24
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteCornerSw
+ decals:
+ 632: 12,24
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteLineE
+ decals:
+ 624: 13,25
+ 625: 13,26
+ 626: 13,27
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteLineW
+ decals:
+ 629: 12,27
+ 630: 12,26
+ 631: 12,25
+ - node:
+ color: '#9FED5812'
+ id: MonoOverlay
+ decals:
+ 724: 8,19
+ 725: 8,20
+ 726: 8,21
+ 727: 7,20
+ 728: 9,20
+ - node:
+ color: '#D381C996'
+ id: MonoOverlay
+ decals:
+ 373: 4,34
+ 374: 6,34
+ 375: 4,36
+ 376: 6,36
+ 620: 14,24
+ 621: 14,26
+ 622: 14,28
+ 634: 14,25
+ 635: 14,27
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1269: 25,14
+ 1270: 27,15
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 66: 5,38
+ 67: 4,38
+ 68: 3,38
+ 69: 2,38
+ 70: 1,38
+ 248: 45,38
+ 249: 44,38
+ 250: 43,38
+ 251: 42,38
+ 252: 41,38
+ 274: 8,44
+ 275: 8,45
+ 276: 8,46
+ 277: 8,47
+ 278: 8,48
+ 279: 9,48
+ 280: 10,48
+ 367: 9,34
+ 368: 8,34
+ 369: 7,34
+ 370: 3,34
+ 371: 2,34
+ 372: 1,34
+ 539: 5,24
+ 974: 22,16
+ 975: 21,16
+ 976: 20,16
+ 977: 19,16
+ 978: 18,16
+ 979: 17,16
+ 980: 16,16
+ 981: 16,15
+ 982: 16,14
+ 983: 16,13
+ 984: 16,12
+ 1019: 38,1
+ 1020: 38,3
+ 1026: 54,1
+ 1027: 54,2
+ 1028: 54,3
+ 1029: 38,2
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 272: 13,48
+ 273: 12,48
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1267: 27,13
+ 1268: 29,14
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 61: 5,40
+ 62: 4,40
+ 63: 3,40
+ 64: 2,40
+ 65: 1,40
+ 253: 41,40
+ 254: 42,40
+ 255: 43,40
+ 256: 44,40
+ 257: 45,40
+ 361: 9,36
+ 362: 8,36
+ 363: 7,36
+ 364: 3,36
+ 365: 2,36
+ 366: 1,36
+ 538: 5,28
+ 560: 25,32
+ 561: 24,32
+ 562: 23,32
+ 563: 22,32
+ 564: 21,32
+ 565: 20,32
+ 566: 19,32
+ 567: 18,32
+ 969: 22,12
+ 970: 22,13
+ 971: 22,14
+ 972: 22,15
+ 973: 22,16
+ 985: 16,12
+ 986: 17,12
+ 987: 18,12
+ 988: 19,12
+ 989: 20,12
+ 990: 21,12
+ 1021: 36,1
+ 1022: 36,2
+ 1023: 36,3
+ 1024: 52,1
+ 1025: 52,3
+ 1030: 52,2
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 266: 14,44
+ 267: 14,45
+ 268: 14,46
+ 269: 14,47
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 143: 17,40
+ 144: 18,40
+ 145: 19,40
+ 146: 20,40
+ 147: 21,40
+ 463: 32,35
+ 470: 27,36
+ 471: 28,36
+ 472: 29,36
+ 473: 30,36
+ 474: 31,36
+ 476: 26,36
+ 850: 21,21
+ 1100: 13,3
+ 1101: 12,3
+ 1102: 11,3
+ 1103: 10,3
+ 1104: 9,3
+ 1105: 7,3
+ 1106: 8,3
+ 1107: 6,3
+ 1108: 5,3
+ 1109: 4,3
+ 1110: 3,3
+ 1111: 14,3
+ 1112: 14,2
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 260: 8,44
+ 261: 8,45
+ 262: 8,46
+ 263: 8,47
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 148: 21,38
+ 149: 20,38
+ 150: 19,38
+ 151: 18,38
+ 152: 17,38
+ 281: 14,44
+ 282: 14,45
+ 283: 14,46
+ 284: 14,47
+ 285: 14,48
+ 286: 13,48
+ 287: 12,48
+ 464: 26,35
+ 465: 31,34
+ 466: 30,34
+ 467: 29,34
+ 468: 28,34
+ 469: 27,34
+ 475: 32,34
+ 568: 18,30
+ 569: 19,30
+ 570: 20,30
+ 571: 21,30
+ 572: 22,30
+ 573: 23,30
+ 574: 24,30
+ 575: 25,30
+ 644: 18,28
+ 645: 18,27
+ 646: 18,26
+ 647: 18,25
+ 648: 18,24
+ 851: 19,19
+ 892: 32,20
+ 1113: 13,1
+ 1114: 12,1
+ 1115: 11,1
+ 1116: 10,1
+ 1117: 9,1
+ 1118: 8,1
+ 1119: 7,1
+ 1120: 6,1
+ 1121: 5,1
+ 1122: 4,1
+ 1123: 3,1
+ 1124: 2,1
+ 1125: 2,2
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 270: 9,48
+ 271: 10,48
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock01
+ decals:
+ 841: 22,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock03
+ decals:
+ 842: 18,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock04
+ decals:
+ 844: 18,22
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock05
+ decals:
+ 843: 22,22
+ - node:
+ color: '#FFFFFFFF'
+ id: StandClear
+ decals:
+ 299: 11,44
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 1260: 25,15
+ 1261: 24,14
+ 1262: 27,16
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 805: 12,22
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 1264: 27,12
+ 1265: 29,13
+ 1266: 30,14
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 803: 16,18
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 1263: 30,16
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 804: 16,22
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnBox
+ decals:
+ 17: 4,48
+ 18: 6,48
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 519: 2,28
+ 1217: 21,2
+ 1218: 25,2
+ 1219: 29,2
+ 1220: 33,2
+ 1295: 26,13
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 2: 4,44
+ 518: 0,28
+ 1221: 31,2
+ 1222: 27,2
+ 1223: 23,2
+ 1224: 19,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 517: 2,24
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 520: 0,24
+ 721: 2,20
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNE
+ decals:
+ 966: 8,12
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 965: 14,12
+ 1279: 27,15
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSE
+ decals:
+ 968: 8,16
+ 1283: 27,13
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 967: 14,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 332: 16,45
+ 382: 6,34
+ 383: 6,35
+ 384: 6,36
+ 513: 2,25
+ 514: 2,26
+ 515: 2,27
+ 942: 8,13
+ 943: 8,14
+ 944: 8,15
+ 1282: 27,12
+ 1296: 26,12
+ - node:
+ color: '#D381C996'
+ id: WarnLineGreyscaleE
+ decals:
+ 1234: 18,3
+ - node:
+ color: '#D381C996'
+ id: WarnLineGreyscaleN
+ decals:
+ 1247: 26,4
+ - node:
+ color: '#D381C996'
+ id: WarnLineGreyscaleS
+ decals:
+ 16: 5,45
+ - node:
+ color: '#D381C996'
+ id: WarnLineGreyscaleW
+ decals:
+ 1233: 34,3
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 291: 12,47
+ 292: 10,47
+ 329: 19,48
+ 509: 1,24
+ 664: 22,28
+ 719: 4,20
+ 720: 3,20
+ 881: 27,22
+ 882: 26,22
+ 883: 25,22
+ 937: 13,16
+ 938: 11,16
+ 939: 12,16
+ 940: 10,16
+ 941: 9,16
+ 1280: 29,13
+ 1281: 28,13
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 0: 4,42
+ 1: 4,43
+ 330: 22,45
+ 379: 4,34
+ 380: 4,36
+ 381: 4,35
+ 510: 0,25
+ 511: 0,26
+ 512: 0,27
+ 722: 2,21
+ 723: 2,22
+ 934: 14,13
+ 935: 14,14
+ 936: 14,15
+ 1278: 27,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 3: 5,44
+ 4: 6,44
+ 288: 12,44
+ 289: 11,44
+ 290: 10,44
+ 331: 19,42
+ 516: 1,28
+ 663: 22,24
+ 878: 27,18
+ 879: 26,18
+ 880: 25,18
+ 929: 11,12
+ 930: 12,12
+ 931: 13,12
+ 932: 10,12
+ 933: 9,12
+ 1276: 25,15
+ 1277: 26,15
+ 1293: 25,13
+ 1294: 24,13
+ 1332: 45,13
+ 1333: 46,13
+ 1334: 44,13
+ 1335: 43,13
+ 1336: 42,13
+ 1337: 41,13
+ 1338: 40,13
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 816: 10,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 815: 1,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 813: 10,8
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 814: 1,8
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 817: 9,9
+ 818: 8,9
+ 819: 7,9
+ 820: 6,9
+ 821: 5,9
+ 822: 4,9
+ 823: 3,9
+ 824: 2,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 825: 10,8
+ 826: 9,8
+ 827: 8,8
+ 828: 7,8
+ 829: 6,8
+ 830: 5,8
+ 831: 4,8
+ 832: 3,8
+ 833: 2,8
+ 834: 1,8
+ - node:
+ color: '#FFFFFFFF'
+ id: chevron
+ decals:
+ 312: 11,48
+ - node:
+ cleanable: True
+ color: '#EFD841FF'
+ id: splatter
+ decals:
+ 611: 8.178589,27.034609
+ - type: RadiationGridResistance
+ - type: LoadedMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: SpreaderGrid
+- proto: Airlock
+ entities:
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: 41.5,3.5
+ parent: 1653
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 41.5,1.5
+ parent: 1653
+ - uid: 1223
+ components:
+ - type: Transform
+ pos: 49.5,1.5
+ parent: 1653
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: 49.5,3.5
+ parent: 1653
+- proto: AirlockFreezer
+ entities:
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 1653
+- proto: AirlockScienceGlassLocked
+ entities:
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 1653
+- proto: APCBasic
+ entities:
+ - uid: 353
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+- proto: AtmosFixFreezerMarker
+ entities:
+ - uid: 748
+ components:
+ - type: Transform
+ pos: 18.5,43.5
+ parent: 1653
+ - uid: 749
+ components:
+ - type: Transform
+ pos: 18.5,44.5
+ parent: 1653
+ - uid: 750
+ components:
+ - type: Transform
+ pos: 18.5,45.5
+ parent: 1653
+ - uid: 751
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 1653
+ - uid: 752
+ components:
+ - type: Transform
+ pos: 18.5,47.5
+ parent: 1653
+ - uid: 753
+ components:
+ - type: Transform
+ pos: 19.5,43.5
+ parent: 1653
+ - uid: 754
+ components:
+ - type: Transform
+ pos: 19.5,44.5
+ parent: 1653
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 19.5,45.5
+ parent: 1653
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 1653
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 19.5,47.5
+ parent: 1653
+ - uid: 758
+ components:
+ - type: Transform
+ pos: 20.5,43.5
+ parent: 1653
+ - uid: 759
+ components:
+ - type: Transform
+ pos: 20.5,44.5
+ parent: 1653
+ - uid: 760
+ components:
+ - type: Transform
+ pos: 20.5,45.5
+ parent: 1653
+ - uid: 761
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 762
+ components:
+ - type: Transform
+ pos: 20.5,47.5
+ parent: 1653
+ - uid: 763
+ components:
+ - type: Transform
+ pos: 21.5,44.5
+ parent: 1653
+ - uid: 764
+ components:
+ - type: Transform
+ pos: 21.5,45.5
+ parent: 1653
+ - uid: 765
+ components:
+ - type: Transform
+ pos: 21.5,46.5
+ parent: 1653
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 17.5,44.5
+ parent: 1653
+ - uid: 767
+ components:
+ - type: Transform
+ pos: 17.5,45.5
+ parent: 1653
+ - uid: 768
+ components:
+ - type: Transform
+ pos: 17.5,46.5
+ parent: 1653
+- proto: Barricade
+ entities:
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 22.5,36.5
+ parent: 1653
+- proto: BaseComputer
+ entities:
+ - uid: 460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,44.5
+ parent: 1653
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: 37.5,16.5
+ parent: 1653
+- proto: Bed
+ entities:
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: 42.5,4.5
+ parent: 1653
+ - uid: 1234
+ components:
+ - type: Transform
+ pos: 42.5,0.5
+ parent: 1653
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 50.5,0.5
+ parent: 1653
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 1653
+- proto: BedsheetSpawner
+ entities:
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 42.5,4.5
+ parent: 1653
+ - uid: 1238
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 1653
+ - uid: 1239
+ components:
+ - type: Transform
+ pos: 50.5,0.5
+ parent: 1653
+ - uid: 1240
+ components:
+ - type: Transform
+ pos: 42.5,0.5
+ parent: 1653
+- proto: Bookshelf
+ entities:
+ - uid: 1241
+ components:
+ - type: Transform
+ pos: 40.5,4.5
+ parent: 1653
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: 30.5,32.5
+ parent: 1653
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: 38.5,32.5
+ parent: 1653
+ - uid: 1610
+ components:
+ - type: Transform
+ pos: 36.5,30.5
+ parent: 1653
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 32.5,30.5
+ parent: 1653
+- proto: BoxFolderWhite
+ entities:
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: 21.488142,22.553272
+ parent: 1653
+- proto: CableApcExtension
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 0.5,39.5
+ parent: 1653
+ - uid: 2
+ components:
+ - type: Transform
+ pos: 1.5,39.5
+ parent: 1653
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 2.5,39.5
+ parent: 1653
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 3.5,39.5
+ parent: 1653
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 4.5,39.5
+ parent: 1653
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 5.5,39.5
+ parent: 1653
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 6.5,39.5
+ parent: 1653
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 8.5,39.5
+ parent: 1653
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 9.5,39.5
+ parent: 1653
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 10.5,39.5
+ parent: 1653
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 11.5,39.5
+ parent: 1653
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 12.5,39.5
+ parent: 1653
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 13.5,39.5
+ parent: 1653
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 14.5,39.5
+ parent: 1653
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 16.5,39.5
+ parent: 1653
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 17.5,39.5
+ parent: 1653
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 18.5,39.5
+ parent: 1653
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 19.5,39.5
+ parent: 1653
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 20.5,39.5
+ parent: 1653
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 1653
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 22.5,39.5
+ parent: 1653
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 24.5,39.5
+ parent: 1653
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 1653
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 26.5,39.5
+ parent: 1653
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 27.5,39.5
+ parent: 1653
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 28.5,39.5
+ parent: 1653
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 29.5,39.5
+ parent: 1653
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 30.5,39.5
+ parent: 1653
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 32.5,39.5
+ parent: 1653
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 33.5,39.5
+ parent: 1653
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 34.5,39.5
+ parent: 1653
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 35.5,39.5
+ parent: 1653
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 36.5,39.5
+ parent: 1653
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 37.5,39.5
+ parent: 1653
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 38.5,39.5
+ parent: 1653
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 40.5,39.5
+ parent: 1653
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 41.5,39.5
+ parent: 1653
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 42.5,39.5
+ parent: 1653
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 43.5,39.5
+ parent: 1653
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 44.5,39.5
+ parent: 1653
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 45.5,39.5
+ parent: 1653
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 46.5,39.5
+ parent: 1653
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 34.5,35.5
+ parent: 1653
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 33.5,35.5
+ parent: 1653
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 32.5,35.5
+ parent: 1653
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 31.5,35.5
+ parent: 1653
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 30.5,35.5
+ parent: 1653
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 1653
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 28.5,35.5
+ parent: 1653
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1653
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 26.5,35.5
+ parent: 1653
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 25.5,35.5
+ parent: 1653
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 24.5,35.5
+ parent: 1653
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 22.5,35.5
+ parent: 1653
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 21.5,35.5
+ parent: 1653
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 20.5,35.5
+ parent: 1653
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 19.5,35.5
+ parent: 1653
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 18.5,35.5
+ parent: 1653
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 1653
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 16.5,35.5
+ parent: 1653
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 15.5,35.5
+ parent: 1653
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 14.5,35.5
+ parent: 1653
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 13.5,35.5
+ parent: 1653
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 12.5,35.5
+ parent: 1653
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 10.5,35.5
+ parent: 1653
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 9.5,35.5
+ parent: 1653
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 1653
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 1653
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 6.5,35.5
+ parent: 1653
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 5.5,35.5
+ parent: 1653
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 4.5,35.5
+ parent: 1653
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 3.5,35.5
+ parent: 1653
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 1653
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 1653
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 1653
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 3.5,42.5
+ parent: 1653
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 3.5,43.5
+ parent: 1653
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 3.5,44.5
+ parent: 1653
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 3.5,45.5
+ parent: 1653
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 3.5,46.5
+ parent: 1653
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 3.5,47.5
+ parent: 1653
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 3.5,48.5
+ parent: 1653
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 0.5,45.5
+ parent: 1653
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 1.5,45.5
+ parent: 1653
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 2.5,45.5
+ parent: 1653
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 4.5,45.5
+ parent: 1653
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 5.5,45.5
+ parent: 1653
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 6.5,45.5
+ parent: 1653
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 8.5,45.5
+ parent: 1653
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 9.5,45.5
+ parent: 1653
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 1653
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 13.5,45.5
+ parent: 1653
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 14.5,45.5
+ parent: 1653
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 1653
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 11.5,44.5
+ parent: 1653
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 11.5,48.5
+ parent: 1653
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 16.5,45.5
+ parent: 1653
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 17.5,45.5
+ parent: 1653
+ - uid: 104
+ components:
+ - type: Transform
+ pos: 18.5,45.5
+ parent: 1653
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 19.5,45.5
+ parent: 1653
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 20.5,45.5
+ parent: 1653
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 21.5,45.5
+ parent: 1653
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 22.5,45.5
+ parent: 1653
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 19.5,42.5
+ parent: 1653
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 19.5,43.5
+ parent: 1653
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 19.5,44.5
+ parent: 1653
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 1653
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 19.5,47.5
+ parent: 1653
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 19.5,48.5
+ parent: 1653
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 40.5,31.5
+ parent: 1653
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 39.5,31.5
+ parent: 1653
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 38.5,31.5
+ parent: 1653
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 1653
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 36.5,31.5
+ parent: 1653
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 35.5,31.5
+ parent: 1653
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 34.5,31.5
+ parent: 1653
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 33.5,31.5
+ parent: 1653
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 32.5,31.5
+ parent: 1653
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 31.5,31.5
+ parent: 1653
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 30.5,31.5
+ parent: 1653
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 29.5,31.5
+ parent: 1653
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 28.5,31.5
+ parent: 1653
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 26.5,31.5
+ parent: 1653
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 1653
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 1653
+ - uid: 131
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 1653
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 22.5,31.5
+ parent: 1653
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 21.5,31.5
+ parent: 1653
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 20.5,31.5
+ parent: 1653
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 19.5,31.5
+ parent: 1653
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 18.5,31.5
+ parent: 1653
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 1653
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 16.5,31.5
+ parent: 1653
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 15.5,31.5
+ parent: 1653
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 14.5,31.5
+ parent: 1653
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 11.5,31.5
+ parent: 1653
+ - uid: 142
+ components:
+ - type: Transform
+ pos: 10.5,31.5
+ parent: 1653
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 8.5,31.5
+ parent: 1653
+ - uid: 145
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 1653
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 6.5,31.5
+ parent: 1653
+ - uid: 147
+ components:
+ - type: Transform
+ pos: 5.5,31.5
+ parent: 1653
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 1653
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 2.5,31.5
+ parent: 1653
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 1.5,31.5
+ parent: 1653
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 0.5,31.5
+ parent: 1653
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 12.5,31.5
+ parent: 1653
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 1653
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 1653
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 1.5,26.5
+ parent: 1653
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 1.5,27.5
+ parent: 1653
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 1.5,28.5
+ parent: 1653
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 5.5,28.5
+ parent: 1653
+ - uid: 160
+ components:
+ - type: Transform
+ pos: 5.5,27.5
+ parent: 1653
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 5.5,26.5
+ parent: 1653
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 5.5,25.5
+ parent: 1653
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 1653
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 4.5,26.5
+ parent: 1653
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 6.5,26.5
+ parent: 1653
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 2.5,26.5
+ parent: 1653
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 0.5,26.5
+ parent: 1653
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 1653
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 9.5,25.5
+ parent: 1653
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 9.5,26.5
+ parent: 1653
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 1653
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 9.5,28.5
+ parent: 1653
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 1653
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 1653
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 3.5,38.5
+ parent: 1653
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 3.5,40.5
+ parent: 1653
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 11.5,38.5
+ parent: 1653
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 11.5,40.5
+ parent: 1653
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 19.5,38.5
+ parent: 1653
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 19.5,40.5
+ parent: 1653
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 27.5,38.5
+ parent: 1653
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 27.5,40.5
+ parent: 1653
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 35.5,38.5
+ parent: 1653
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 35.5,40.5
+ parent: 1653
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 43.5,38.5
+ parent: 1653
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 43.5,40.5
+ parent: 1653
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 29.5,36.5
+ parent: 1653
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 1653
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 17.5,34.5
+ parent: 1653
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 17.5,36.5
+ parent: 1653
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 5.5,34.5
+ parent: 1653
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 5.5,36.5
+ parent: 1653
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 6.5,32.5
+ parent: 1653
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 1653
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 20.5,32.5
+ parent: 1653
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 20.5,30.5
+ parent: 1653
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 34.5,32.5
+ parent: 1653
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 34.5,30.5
+ parent: 1653
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 13.5,24.5
+ parent: 1653
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 13.5,25.5
+ parent: 1653
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 13.5,26.5
+ parent: 1653
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 13.5,27.5
+ parent: 1653
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 1653
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 12.5,26.5
+ parent: 1653
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 14.5,26.5
+ parent: 1653
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 1653
+ - uid: 207
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 1653
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 17.5,26.5
+ parent: 1653
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 17.5,27.5
+ parent: 1653
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 17.5,28.5
+ parent: 1653
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 16.5,26.5
+ parent: 1653
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 1653
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 1653
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 1653
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 21.5,26.5
+ parent: 1653
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 21.5,27.5
+ parent: 1653
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 21.5,28.5
+ parent: 1653
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 20.5,26.5
+ parent: 1653
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 22.5,26.5
+ parent: 1653
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 1653
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 1653
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 1653
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 1653
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 1653
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 3.5,20.5
+ parent: 1653
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 1653
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1653
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 1653
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 1653
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 1653
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 7.5,21.5
+ parent: 1653
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 7.5,18.5
+ parent: 1653
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 8.5,22.5
+ parent: 1653
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 1653
+ - uid: 235
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 1653
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 1653
+ - uid: 237
+ components:
+ - type: Transform
+ pos: 10.5,20.5
+ parent: 1653
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 14.5,18.5
+ parent: 1653
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 14.5,19.5
+ parent: 1653
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 14.5,20.5
+ parent: 1653
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 14.5,21.5
+ parent: 1653
+ - uid: 242
+ components:
+ - type: Transform
+ pos: 14.5,22.5
+ parent: 1653
+ - uid: 243
+ components:
+ - type: Transform
+ pos: 13.5,20.5
+ parent: 1653
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 12.5,20.5
+ parent: 1653
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 15.5,20.5
+ parent: 1653
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 16.5,20.5
+ parent: 1653
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 20.5,18.5
+ parent: 1653
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 20.5,19.5
+ parent: 1653
+ - uid: 249
+ components:
+ - type: Transform
+ pos: 20.5,20.5
+ parent: 1653
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 20.5,21.5
+ parent: 1653
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 20.5,22.5
+ parent: 1653
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 19.5,20.5
+ parent: 1653
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 18.5,20.5
+ parent: 1653
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 1653
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 22.5,20.5
+ parent: 1653
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 26.5,18.5
+ parent: 1653
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1653
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 1653
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 26.5,22.5
+ parent: 1653
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 1653
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1653
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 32.5,18.5
+ parent: 1653
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 1653
+ - uid: 267
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 1653
+ - uid: 268
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 1653
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 32.5,22.5
+ parent: 1653
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 1653
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 30.5,20.5
+ parent: 1653
+ - uid: 272
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 1653
+ - uid: 273
+ components:
+ - type: Transform
+ pos: 34.5,20.5
+ parent: 1653
+ - uid: 274
+ components:
+ - type: Transform
+ pos: 19.5,12.5
+ parent: 1653
+ - uid: 275
+ components:
+ - type: Transform
+ pos: 16.5,12.5
+ parent: 1653
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 16.5,15.5
+ parent: 1653
+ - uid: 277
+ components:
+ - type: Transform
+ pos: 17.5,12.5
+ parent: 1653
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 1653
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 16.5,16.5
+ parent: 1653
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 1653
+ - uid: 281
+ components:
+ - type: Transform
+ pos: 16.5,14.5
+ parent: 1653
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 16.5,13.5
+ parent: 1653
+ - uid: 283
+ components:
+ - type: Transform
+ pos: 18.5,12.5
+ parent: 1653
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 22.5,14.5
+ parent: 1653
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 0.5,14.5
+ parent: 1653
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 1653
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1653
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1653
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 4.5,14.5
+ parent: 1653
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 1653
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 1653
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1653
+ - uid: 293
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1653
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 1653
+ - uid: 295
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1653
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1653
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 10.5,12.5
+ parent: 1653
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 1653
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 1653
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 1653
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 14.5,14.5
+ parent: 1653
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 11.5,16.5
+ parent: 1653
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 1653
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 1653
+ - uid: 307
+ components:
+ - type: Transform
+ pos: 24.5,14.5
+ parent: 1653
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 1653
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 1653
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 1653
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 1653
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 29.5,14.5
+ parent: 1653
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 30.5,14.5
+ parent: 1653
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 1653
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 27.5,12.5
+ parent: 1653
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 27.5,15.5
+ parent: 1653
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 27.5,16.5
+ parent: 1653
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 32.5,14.5
+ parent: 1653
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 33.5,14.5
+ parent: 1653
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 34.5,14.5
+ parent: 1653
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 1653
+ - uid: 322
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1653
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 37.5,14.5
+ parent: 1653
+ - uid: 324
+ components:
+ - type: Transform
+ pos: 38.5,14.5
+ parent: 1653
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 35.5,13.5
+ parent: 1653
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 35.5,12.5
+ parent: 1653
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 35.5,15.5
+ parent: 1653
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 35.5,16.5
+ parent: 1653
+ - uid: 329
+ components:
+ - type: Transform
+ pos: 40.5,14.5
+ parent: 1653
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 41.5,14.5
+ parent: 1653
+ - uid: 331
+ components:
+ - type: Transform
+ pos: 42.5,14.5
+ parent: 1653
+ - uid: 332
+ components:
+ - type: Transform
+ pos: 43.5,14.5
+ parent: 1653
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 44.5,14.5
+ parent: 1653
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 45.5,14.5
+ parent: 1653
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 46.5,14.5
+ parent: 1653
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 1653
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 43.5,12.5
+ parent: 1653
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 43.5,15.5
+ parent: 1653
+ - uid: 339
+ components:
+ - type: Transform
+ pos: 43.5,16.5
+ parent: 1653
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 34.5,8.5
+ parent: 1653
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1653
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 32.5,8.5
+ parent: 1653
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 1653
+ - uid: 344
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+ - uid: 345
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 1653
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 1653
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1653
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 24.5,8.5
+ parent: 1653
+ - uid: 351
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 29.5,10.5
+ parent: 1653
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 22.5,8.5
+ parent: 1653
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 21.5,8.5
+ parent: 1653
+ - uid: 357
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 1653
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 1653
+ - uid: 359
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 1653
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 1653
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 1653
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 1653
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 1653
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 1653
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 1653
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 1653
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 1653
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 1653
+ - uid: 369
+ components:
+ - type: Transform
+ pos: 17.5,6.5
+ parent: 1653
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1653
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1653
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1653
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1653
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1653
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1653
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1653
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1653
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1653
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 1653
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1653
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 1653
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 1653
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 1653
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1653
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1653
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1653
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1653
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1653
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1653
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1653
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1653
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1653
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1653
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1653
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 1653
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 1653
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 1653
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 1653
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 14.5,2.5
+ parent: 1653
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 15.5,2.5
+ parent: 1653
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 16.5,2.5
+ parent: 1653
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 1653
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1653
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 1653
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1653
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 18.5,2.5
+ parent: 1653
+ - uid: 407
+ components:
+ - type: Transform
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 408
+ components:
+ - type: Transform
+ pos: 20.5,2.5
+ parent: 1653
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 1653
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 23.5,2.5
+ parent: 1653
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 24.5,2.5
+ parent: 1653
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 26.5,2.5
+ parent: 1653
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 27.5,2.5
+ parent: 1653
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 28.5,2.5
+ parent: 1653
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 30.5,2.5
+ parent: 1653
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 31.5,2.5
+ parent: 1653
+ - uid: 420
+ components:
+ - type: Transform
+ pos: 32.5,2.5
+ parent: 1653
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 422
+ components:
+ - type: Transform
+ pos: 34.5,2.5
+ parent: 1653
+ - uid: 423
+ components:
+ - type: Transform
+ pos: 36.5,2.5
+ parent: 1653
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 26.5,3.5
+ parent: 1653
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 1653
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 26.5,1.5
+ parent: 1653
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 26.5,0.5
+ parent: 1653
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 37.5,2.5
+ parent: 1653
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 38.5,2.5
+ parent: 1653
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 39.5,2.5
+ parent: 1653
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 40.5,2.5
+ parent: 1653
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 41.5,2.5
+ parent: 1653
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 42.5,2.5
+ parent: 1653
+ - uid: 434
+ components:
+ - type: Transform
+ pos: 43.5,2.5
+ parent: 1653
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 44.5,2.5
+ parent: 1653
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 45.5,2.5
+ parent: 1653
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 46.5,2.5
+ parent: 1653
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 47.5,2.5
+ parent: 1653
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 48.5,2.5
+ parent: 1653
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 49.5,2.5
+ parent: 1653
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 50.5,2.5
+ parent: 1653
+ - uid: 442
+ components:
+ - type: Transform
+ pos: 51.5,2.5
+ parent: 1653
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 52.5,2.5
+ parent: 1653
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 53.5,2.5
+ parent: 1653
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 54.5,2.5
+ parent: 1653
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 45.5,3.5
+ parent: 1653
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 45.5,4.5
+ parent: 1653
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 45.5,0.5
+ parent: 1653
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 45.5,1.5
+ parent: 1653
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 12.5,43.5
+ parent: 1653
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 906
+ components:
+ - type: Transform
+ pos: 9.5,18.5
+ parent: 1653
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 10.5,21.5
+ parent: 1653
+ - uid: 910
+ components:
+ - type: Transform
+ pos: 9.5,22.5
+ parent: 1653
+ - uid: 911
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 1653
+ - uid: 912
+ components:
+ - type: Transform
+ pos: 9.5,19.5
+ parent: 1653
+ - uid: 913
+ components:
+ - type: Transform
+ pos: 10.5,19.5
+ parent: 1653
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 9.5,21.5
+ parent: 1653
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1653
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 25.5,18.5
+ parent: 1653
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 24.5,18.5
+ parent: 1653
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 25.5,22.5
+ parent: 1653
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 24.5,22.5
+ parent: 1653
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 1653
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 1653
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 24.5,19.5
+ parent: 1653
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 1653
+ - uid: 1079
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1653
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 1653
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 1653
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 1653
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 1653
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 1653
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 1653
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 1653
+ - uid: 1139
+ components:
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 1653
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 12.5,16.5
+ parent: 1653
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 13.5,16.5
+ parent: 1653
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 14.5,16.5
+ parent: 1653
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 14.5,15.5
+ parent: 1653
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 14.5,13.5
+ parent: 1653
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 14.5,12.5
+ parent: 1653
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 13.5,12.5
+ parent: 1653
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 12.5,12.5
+ parent: 1653
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 1653
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 1653
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 1653
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 1653
+ - uid: 1163
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 1653
+ - uid: 1164
+ components:
+ - type: Transform
+ pos: 22.5,13.5
+ parent: 1653
+ - uid: 1165
+ components:
+ - type: Transform
+ pos: 22.5,12.5
+ parent: 1653
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: 21.5,12.5
+ parent: 1653
+ - uid: 1167
+ components:
+ - type: Transform
+ pos: 20.5,12.5
+ parent: 1653
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: 41.5,1.5
+ parent: 1653
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: 41.5,0.5
+ parent: 1653
+ - uid: 1227
+ components:
+ - type: Transform
+ pos: 41.5,3.5
+ parent: 1653
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: 41.5,4.5
+ parent: 1653
+ - uid: 1229
+ components:
+ - type: Transform
+ pos: 49.5,3.5
+ parent: 1653
+ - uid: 1230
+ components:
+ - type: Transform
+ pos: 49.5,4.5
+ parent: 1653
+ - uid: 1231
+ components:
+ - type: Transform
+ pos: 49.5,1.5
+ parent: 1653
+ - uid: 1232
+ components:
+ - type: Transform
+ pos: 49.5,0.5
+ parent: 1653
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 1653
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1653
+ - uid: 1291
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 1653
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1653
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 1653
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: 14.5,1.5
+ parent: 1653
+ - uid: 1295
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 1653
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1653
+ - uid: 1297
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 1653
+ - uid: 1298
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 1653
+ - uid: 1299
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 1653
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 1653
+ - uid: 1301
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1653
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 1653
+ - uid: 1321
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 1653
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 1653
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: 31.5,6.5
+ parent: 1653
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: 30.5,6.5
+ parent: 1653
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: 29.5,6.5
+ parent: 1653
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: 28.5,6.5
+ parent: 1653
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: 27.5,6.5
+ parent: 1653
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1653
+- proto: CableHV
+ entities:
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 10.5,46.5
+ parent: 1653
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 9.5,46.5
+ parent: 1653
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 12.5,46.5
+ parent: 1653
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 13.5,46.5
+ parent: 1653
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 13.5,47.5
+ parent: 1653
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 1653
+ - uid: 552
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 11.5,44.5
+ parent: 1653
+ - uid: 554
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+ - uid: 555
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 1653
+ - uid: 556
+ components:
+ - type: Transform
+ pos: 10.5,42.5
+ parent: 1653
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 9.5,42.5
+ parent: 1653
+ - uid: 558
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 1653
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1653
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 1653
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1653
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 1653
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1653
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 1489
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 1490
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 28.5,7.5
+ parent: 1653
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 1653
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 1653
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1653
+ - uid: 1495
+ components:
+ - type: Transform
+ pos: 26.5,7.5
+ parent: 1653
+ - uid: 1496
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 1653
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: 32.5,7.5
+ parent: 1653
+ - uid: 1498
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 1653
+ - uid: 1499
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1653
+ - uid: 1500
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 1653
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 1653
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1653
+ - uid: 1505
+ components:
+ - type: Transform
+ pos: 25.5,9.5
+ parent: 1653
+- proto: CableMV
+ entities:
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 1653
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 9.5,42.5
+ parent: 1653
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 10.5,42.5
+ parent: 1653
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 1653
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 12.5,42.5
+ parent: 1653
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 13.5,42.5
+ parent: 1653
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1653
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 1653
+ - uid: 1026
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1653
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1653
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1508
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 1509
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 1653
+- proto: CableTerminal
+ entities:
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 1038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 1518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,7.5
+ parent: 1653
+ - uid: 1519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,7.5
+ parent: 1653
+ - uid: 1520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,7.5
+ parent: 1653
+- proto: CarpetGreen
+ entities:
+ - uid: 1244
+ components:
+ - type: Transform
+ pos: 49.5,4.5
+ parent: 1653
+- proto: CarpetPurple
+ entities:
+ - uid: 850
+ components:
+ - type: Transform
+ pos: 30.5,31.5
+ parent: 1653
+ - uid: 851
+ components:
+ - type: Transform
+ pos: 31.5,31.5
+ parent: 1653
+ - uid: 852
+ components:
+ - type: Transform
+ pos: 32.5,31.5
+ parent: 1653
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 33.5,31.5
+ parent: 1653
+ - uid: 854
+ components:
+ - type: Transform
+ pos: 34.5,31.5
+ parent: 1653
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 35.5,31.5
+ parent: 1653
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 36.5,31.5
+ parent: 1653
+ - uid: 857
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 1653
+ - uid: 858
+ components:
+ - type: Transform
+ pos: 38.5,31.5
+ parent: 1653
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 1653
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 1653
+ - uid: 976
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1653
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 1653
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 8.5,6.5
+ parent: 1653
+ - uid: 979
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1653
+ - uid: 980
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 1653
+ - uid: 981
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 1653
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 10.5,6.5
+ parent: 1653
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1653
+- proto: Catwalk
+ entities:
+ - uid: 560
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 1653
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 10.5,46.5
+ parent: 1653
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 12.5,46.5
+ parent: 1653
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 17.5,45.5
+ parent: 1653
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 18.5,45.5
+ parent: 1653
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 19.5,45.5
+ parent: 1653
+ - uid: 611
+ components:
+ - type: Transform
+ pos: 20.5,45.5
+ parent: 1653
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 21.5,45.5
+ parent: 1653
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 19.5,44.5
+ parent: 1653
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 19.5,43.5
+ parent: 1653
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 1653
+ - uid: 616
+ components:
+ - type: Transform
+ pos: 19.5,47.5
+ parent: 1653
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1653
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 1653
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 1653
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 1653
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 1653
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1653
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: 28.5,7.5
+ parent: 1653
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 1653
+ - uid: 1523
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 1653
+- proto: Chair
+ entities:
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 2.5,40.5
+ parent: 1653
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 4.5,40.5
+ parent: 1653
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 17.5,40.5
+ parent: 1653
+ - uid: 504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,39.5
+ parent: 1653
+ - uid: 505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,39.5
+ parent: 1653
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 18.5,40.5
+ parent: 1653
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 25.5,40.5
+ parent: 1653
+ - uid: 519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,38.5
+ parent: 1653
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 44.5,40.5
+ parent: 1653
+ - uid: 630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,35.5
+ parent: 1653
+ - uid: 638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,35.5
+ parent: 1653
+ - uid: 682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,34.5
+ parent: 1653
+ - uid: 683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,34.5
+ parent: 1653
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 32.5,36.5
+ parent: 1653
+ - uid: 696
+ components:
+ - type: Transform
+ pos: 0.5,32.5
+ parent: 1653
+ - uid: 705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,30.5
+ parent: 1653
+ - uid: 706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,30.5
+ parent: 1653
+ - uid: 779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,32.5
+ parent: 1653
+ - uid: 780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,30.5
+ parent: 1653
+ - uid: 783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,32.5
+ parent: 1653
+ - uid: 784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,30.5
+ parent: 1653
+ - uid: 1004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,21.5
+ parent: 1653
+ - uid: 1005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,19.5
+ parent: 1653
+ - uid: 1008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,19.5
+ parent: 1653
+ - uid: 1009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,21.5
+ parent: 1653
+ - uid: 1264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,0.5
+ parent: 1653
+ - uid: 1265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,0.5
+ parent: 1653
+ - uid: 1266
+ components:
+ - type: Transform
+ pos: 37.5,1.5
+ parent: 1653
+ - uid: 1267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,4.5
+ parent: 1653
+ - uid: 1268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,4.5
+ parent: 1653
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1653
+ - uid: 1325
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 1653
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1653
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 1653
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 1653
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1653
+ - uid: 1330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,3.5
+ parent: 1653
+ - uid: 1331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,3.5
+ parent: 1653
+ - uid: 1332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,3.5
+ parent: 1653
+ - uid: 1333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,3.5
+ parent: 1653
+ - uid: 1334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,3.5
+ parent: 1653
+ - uid: 1335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,3.5
+ parent: 1653
+ - uid: 1347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,0.5
+ parent: 1653
+ - uid: 1348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,1.5
+ parent: 1653
+ - uid: 1349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,4.5
+ parent: 1653
+ - uid: 1587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,15.5
+ parent: 1653
+ - uid: 1588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,14.5
+ parent: 1653
+- proto: ChairFolding
+ entities:
+ - uid: 929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,22.5
+ parent: 1653
+ - uid: 931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,21.5
+ parent: 1653
+- proto: ChairOfficeDark
+ entities:
+ - uid: 697
+ components:
+ - type: Transform
+ pos: 2.5,32.5
+ parent: 1653
+ - uid: 1584
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,12.5
+ parent: 1653
+- proto: ChairOfficeLight
+ entities:
+ - uid: 462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,43.5
+ parent: 1653
+ - uid: 463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,44.5
+ parent: 1653
+ - uid: 1062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,21.5
+ parent: 1653
+ - uid: 1063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,22.5
+ parent: 1653
+ - uid: 1455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,3.5
+ parent: 1653
+ - uid: 1467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,3.5
+ parent: 1653
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 22.5,1.5
+ parent: 1653
+ - uid: 1480
+ components:
+ - type: Transform
+ pos: 30.5,1.5
+ parent: 1653
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: 35.5,15.5
+ parent: 1653
+ - uid: 1623
+ components:
+ - type: Transform
+ pos: 41.5,13.5
+ parent: 1653
+- proto: ChairWood
+ entities:
+ - uid: 1271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,1.5
+ parent: 1653
+ - uid: 1272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,1.5
+ parent: 1653
+- proto: chem_master
+ entities:
+ - uid: 1454
+ components:
+ - type: Transform
+ pos: 29.5,4.5
+ parent: 1653
+- proto: ChemicalPayload
+ entities:
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 6.4166045,15.55332
+ parent: 1653
+- proto: ChessBoard
+ entities:
+ - uid: 1273
+ components:
+ - type: Transform
+ pos: 45.521095,1.5328176
+ parent: 1653
+- proto: ClosetJanitorFilled
+ entities:
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 6.5,27.5
+ parent: 1653
+- proto: ClosetL3JanitorFilled
+ entities:
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 4.5,28.5
+ parent: 1653
+- proto: ClothingHeadHatAnimalHeadslime
+ entities:
+ - uid: 1457
+ components:
+ - type: Transform
+ pos: 20.504282,0.6661904
+ parent: 1653
+- proto: ClothingHeadHatAnimalMonkey
+ entities:
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 17.452066,13.392001
+ parent: 1653
+- proto: ClothingHeadsetMedicalScience
+ entities:
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: 30.475718,12.610211
+ parent: 1653
+- proto: ClothingOuterSuitMonkey
+ entities:
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 21.483316,14.329501
+ parent: 1653
+- proto: ClothingUniformJumpskirtJanimaid
+ entities:
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 4.5678988,24.535187
+ parent: 1653
+- proto: ComfyChair
+ entities:
+ - uid: 774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,31.5
+ parent: 1653
+ - uid: 935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,18.5
+ parent: 1653
+ - uid: 937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,21.5
+ parent: 1653
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 13.5,22.5
+ parent: 1653
+ - uid: 939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,19.5
+ parent: 1653
+ - uid: 986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,6.5
+ parent: 1653
+ - uid: 987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,7.5
+ parent: 1653
+ - uid: 988
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,6.5
+ parent: 1653
+ - uid: 989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1653
+ - uid: 1247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,0.5
+ parent: 1653
+- proto: ComputerAnalysisConsole
+ entities:
+ - uid: 461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,43.5
+ parent: 1653
+- proto: computerBodyScanner
+ entities:
+ - uid: 1546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,12.5
+ parent: 1653
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 1653
+- proto: ComputerBroken
+ entities:
+ - uid: 459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,42.5
+ parent: 1653
+ - uid: 1061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,21.5
+ parent: 1653
+- proto: ComputerResearchAndDevelopment
+ entities:
+ - uid: 1060
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,22.5
+ parent: 1653
+ - uid: 1099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,13.5
+ parent: 1653
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 873
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 1653
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 22.5,34.5
+ parent: 1653
+- proto: CrateScience
+ entities:
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 0.5,44.5
+ parent: 1653
+- proto: CrateServiceJanitorialSupplies
+ entities:
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 6.5,28.5
+ parent: 1653
+- proto: DisposalTrunk
+ entities:
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 1438
+ components:
+ - type: Transform
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 1440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,1.5
+ parent: 1653
+ - uid: 1441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,1.5
+ parent: 1653
+ - uid: 1442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 1443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,1.5
+ parent: 1653
+- proto: DisposalUnit
+ entities:
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 1435
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 1653
+- proto: DrinkCognacBottleFull
+ entities:
+ - uid: 866
+ components:
+ - type: Transform
+ pos: 37.505463,32.677124
+ parent: 1653
+- proto: EmergencyLight
+ entities:
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - type: ActiveEmergencyLight
+ - uid: 1606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,16.5
+ parent: 1653
+ - type: ActiveEmergencyLight
+ - uid: 1607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,44.5
+ parent: 1653
+ - type: ActiveEmergencyLight
+- proto: ExplosivePayload
+ entities:
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 6.4166045,15.92832
+ parent: 1653
+- proto: ExplosivesSignMed
+ entities:
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1653
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: 51.5,1.5
+ parent: 1653
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: 39.5,1.5
+ parent: 1653
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 0.5,42.5
+ parent: 1653
+ - uid: 1279
+ components:
+ - type: Transform
+ pos: 36.5,4.5
+ parent: 1653
+ - uid: 1339
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 1653
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 1653
+- proto: filingCabinetRandom
+ entities:
+ - uid: 1482
+ components:
+ - type: Transform
+ pos: 34.5,0.5
+ parent: 1653
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: 32.5,12.5
+ parent: 1653
+- proto: filingCabinetTallRandom
+ entities:
+ - uid: 1338
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 1653
+- proto: FireExtinguisher
+ entities:
+ - uid: 1565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.272593,12.469586
+ parent: 1653
+- proto: FlashPayload
+ entities:
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 6.6041045,15.74082
+ parent: 1653
+- proto: Floodlight
+ entities:
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 19.496153,34.502384
+ parent: 1653
+- proto: FloorDrain
+ entities:
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 0.5,47.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 4.5,25.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+- proto: FoamedAluminiumMetal
+ entities:
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 16.5,34.5
+ parent: 1653
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 17.5,34.5
+ parent: 1653
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 18.5,34.5
+ parent: 1653
+ - uid: 650
+ components:
+ - type: Transform
+ pos: 16.5,35.5
+ parent: 1653
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 1653
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 18.5,35.5
+ parent: 1653
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 17.5,36.5
+ parent: 1653
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 18.5,36.5
+ parent: 1653
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 16.5,36.5
+ parent: 1653
+- proto: FoamedIronMetal
+ entities:
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 36.5,39.5
+ parent: 1653
+ - uid: 533
+ components:
+ - type: Transform
+ pos: 35.5,40.5
+ parent: 1653
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 36.5,38.5
+ parent: 1653
+- proto: FoodBanana
+ entities:
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: 21.363342,15.717637
+ parent: 1653
+ - uid: 1190
+ components:
+ - type: Transform
+ pos: 21.488342,15.623887
+ parent: 1653
+ - uid: 1191
+ components:
+ - type: Transform
+ pos: 21.644592,15.498887
+ parent: 1653
+- proto: FoodSoupMonkey
+ entities:
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: 19.514566,14.517001
+ parent: 1653
+- proto: GasCanisterBrokenBase
+ entities:
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 4.5,48.5
+ parent: 1653
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: 34.5,18.5
+ parent: 1653
+ - uid: 1648
+ components:
+ - type: Transform
+ pos: 43.5,15.5
+ parent: 1653
+- proto: GasFilter
+ entities:
+ - uid: 1612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,16.5
+ parent: 1653
+- proto: GasMixer
+ entities:
+ - uid: 1613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,16.5
+ parent: 1653
+- proto: GasPassiveVent
+ entities:
+ - uid: 480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,44.5
+ parent: 1653
+ - uid: 481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,44.5
+ parent: 1653
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 33.5,21.5
+ parent: 1653
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 34.5,21.5
+ parent: 1653
+- proto: GasPipeBend
+ entities:
+ - uid: 490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,46.5
+ parent: 1653
+- proto: GasPipeStraight
+ entities:
+ - uid: 482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,45.5
+ parent: 1653
+ - uid: 483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,45.5
+ parent: 1653
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 6.5,46.5
+ parent: 1653
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 1653
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: 34.5,20.5
+ parent: 1653
+- proto: GasPipeTJunction
+ entities:
+ - uid: 488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,46.5
+ parent: 1653
+- proto: GasPort
+ entities:
+ - uid: 486
+ components:
+ - type: Transform
+ pos: 4.5,48.5
+ parent: 1653
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 6.5,48.5
+ parent: 1653
+ - uid: 1074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,18.5
+ parent: 1653
+ - uid: 1075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,18.5
+ parent: 1653
+ - uid: 1614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,16.5
+ parent: 1653
+ - uid: 1615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,15.5
+ parent: 1653
+ - uid: 1616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,15.5
+ parent: 1653
+ - uid: 1617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,16.5
+ parent: 1653
+ - uid: 1651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,15.5
+ parent: 1653
+- proto: GasPressurePump
+ entities:
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 4.5,47.5
+ parent: 1653
+ - uid: 489
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,47.5
+ parent: 1653
+ - uid: 1072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,19.5
+ parent: 1653
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 34.5,19.5
+ parent: 1653
+- proto: GasRecycler
+ entities:
+ - uid: 1649
+ components:
+ - type: Transform
+ pos: 46.5,16.5
+ parent: 1653
+- proto: GasThermoMachineFreezer
+ entities:
+ - uid: 1650
+ components:
+ - type: Transform
+ pos: 45.5,16.5
+ parent: 1653
+- proto: GasThermoMachineHeater
+ entities:
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 5.5,47.5
+ parent: 1653
+- proto: GeneratorRTG
+ entities:
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 1653
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 13.5,47.5
+ parent: 1653
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1653
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 1653
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: 25.5,9.5
+ parent: 1653
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 1653
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 1653
+- proto: Girder
+ entities:
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 14.5,34.5
+ parent: 1653
+- proto: Grille
+ entities:
+ - uid: 742
+ components:
+ - type: Transform
+ pos: 17.5,30.5
+ parent: 1653
+ - uid: 743
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 1653
+- proto: HighSecCaptainLocked
+ entities:
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 1653
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 806
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1653
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+- proto: hydroponicsTray
+ entities:
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: 13.5,7.5
+ parent: 1653
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 1653
+ - uid: 1356
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 1653
+ - uid: 1357
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 1653
+ - uid: 1358
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 1653
+ - uid: 1359
+ components:
+ - type: Transform
+ pos: 15.5,9.5
+ parent: 1653
+ - uid: 1360
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 1653
+ - uid: 1361
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 1653
+ - uid: 1362
+ components:
+ - type: Transform
+ pos: 19.5,9.5
+ parent: 1653
+ - uid: 1363
+ components:
+ - type: Transform
+ pos: 21.5,7.5
+ parent: 1653
+ - uid: 1364
+ components:
+ - type: Transform
+ pos: 21.5,8.5
+ parent: 1653
+ - uid: 1365
+ components:
+ - type: Transform
+ pos: 21.5,9.5
+ parent: 1653
+- proto: Lamp
+ entities:
+ - uid: 769
+ components:
+ - type: Transform
+ pos: 1.4880867,32.68946
+ parent: 1653
+- proto: LampGold
+ entities:
+ - uid: 775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,32.5
+ parent: 1653
+- proto: LandMineExplosive
+ entities:
+ - uid: 1193
+ components:
+ - type: Transform
+ pos: 19.503967,13.342637
+ parent: 1653
+- proto: LockerScienceFilled
+ entities:
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 1653
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 8.5,30.5
+ parent: 1653
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 14.5,25.5
+ parent: 1653
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 14.5,27.5
+ parent: 1653
+ - uid: 1066
+ components:
+ - type: Transform
+ pos: 30.5,18.5
+ parent: 1653
+- proto: MachineAPE
+ entities:
+ - uid: 838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,25.5
+ parent: 1653
+ - uid: 840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,27.5
+ parent: 1653
+- proto: MachineTraversalDistorter
+ entities:
+ - uid: 1058
+ components:
+ - type: Transform
+ pos: 34.5,22.5
+ parent: 1653
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 867
+ components:
+ - type: Transform
+ pos: 39.5,32.5
+ parent: 1653
+ - uid: 868
+ components:
+ - type: Transform
+ pos: 29.5,32.5
+ parent: 1653
+ - uid: 869
+ components:
+ - type: Transform
+ pos: 33.5,30.5
+ parent: 1653
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 35.5,30.5
+ parent: 1653
+ - uid: 1245
+ components:
+ - type: Transform
+ pos: 48.5,4.5
+ parent: 1653
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: 46.5,3.5
+ parent: 1653
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: 30.5,0.5
+ parent: 1653
+- proto: MaterialBiomass
+ entities:
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 24.534355,0.41658816
+ parent: 1653
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 24.569468,13.125836
+ parent: 1653
+- proto: MedicalScanner
+ entities:
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: 25.5,16.5
+ parent: 1653
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 1653
+- proto: Mirror
+ entities:
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1653
+ - uid: 893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,19.5
+ parent: 1653
+- proto: ModularGrenade
+ entities:
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 5.1978545,16.604664
+ parent: 1653
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 5.3228545,16.510914
+ parent: 1653
+- proto: MonkeyCube
+ entities:
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: 26.366343,13.313336
+ parent: 1653
+ - uid: 1564
+ components:
+ - type: Transform
+ pos: 25.631968,12.750836
+ parent: 1653
+- proto: MopBucket
+ entities:
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 4.4881024,27.562542
+ parent: 1653
+- proto: MopItem
+ entities:
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 4.4881024,27.500042
+ parent: 1653
+- proto: PartRodMetal1
+ entities:
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 33.42354,40.437122
+ parent: 1653
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,34.5
+ parent: 1653
+ - uid: 672
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,34.5
+ parent: 1653
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 24.5,36.5
+ parent: 1653
+ - uid: 674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,36.5
+ parent: 1653
+ - uid: 675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,36.5
+ parent: 1653
+ - uid: 677
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,34.5
+ parent: 1653
+ - uid: 678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,34.5
+ parent: 1653
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 34.5,36.5
+ parent: 1653
+- proto: PlushieSharkGrey
+ entities:
+ - uid: 926
+ components:
+ - type: Transform
+ pos: 6.4745436,18.474607
+ parent: 1653
+- proto: PlushieSlime
+ entities:
+ - uid: 1456
+ components:
+ - type: Transform
+ pos: 28.542555,0.5099404
+ parent: 1653
+- proto: PortableGeneratorPacman
+ entities:
+ - uid: 1528
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1653
+ - uid: 1529
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1653
+- proto: PortableScrubber
+ entities:
+ - uid: 836
+ components:
+ - type: Transform
+ pos: 16.5,28.5
+ parent: 1653
+- proto: PosterLegitScience
+ entities:
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 1653
+- proto: PottedPlantRandom
+ entities:
+ - uid: 521
+ components:
+ - type: Transform
+ pos: 24.5,40.5
+ parent: 1653
+ - uid: 1633
+ components:
+ - type: Transform
+ pos: 5.5,40.5
+ parent: 1653
+- proto: PottedPlantRandomPlastic
+ entities:
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 1653
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 12.5,36.5
+ parent: 1653
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 1653
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 7.5,32.5
+ parent: 1653
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 1653
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 1653
+ - uid: 865
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1653
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 11.5,39.5
+ parent: 1653
+- proto: PowerCellRecharger
+ entities:
+ - uid: 807
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 1653
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 1653
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1653
+- proto: Poweredlight
+ entities:
+ - uid: 499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,38.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,38.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,38.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 42.5,40.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 634
+ components:
+ - type: Transform
+ pos: 2.5,36.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,34.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 657
+ components:
+ - type: Transform
+ pos: 14.5,36.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,34.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 27.5,36.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 11.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 770
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 771
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 870
+ components:
+ - type: Transform
+ pos: 30.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 38.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 932
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,19.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,21.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 15.5,22.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,18.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,18.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,18.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,3.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,1.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: 43.5,2.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,2.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,8.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,8.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: 27.5,4.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,15.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,13.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,19.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredlightEmpty
+ entities:
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 28.5,39.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,30.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,34.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredlightExterior
+ entities:
+ - uid: 622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,43.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,2.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,2.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredSmallLight
+ entities:
+ - uid: 465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,42.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 5.5,48.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,42.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,44.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,44.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,48.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 21.5,42.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,25.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,25.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,19.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,22.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 949
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,6.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: 41.5,4.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1261
+ components:
+ - type: Transform
+ pos: 49.5,4.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1595
+ components:
+ - type: Transform
+ pos: 38.5,16.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,25.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,26.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,26.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,12.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,12.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: Rack
+ entities:
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 20.5,36.5
+ parent: 1653
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 21.5,36.5
+ parent: 1653
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 1653
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 12.5,28.5
+ parent: 1653
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 16.5,24.5
+ parent: 1653
+ - uid: 845
+ components:
+ - type: Transform
+ pos: 20.5,24.5
+ parent: 1653
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 1653
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 1653
+ - uid: 930
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 1653
+ - uid: 1047
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1653
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 1653
+ - uid: 1067
+ components:
+ - type: Transform
+ pos: 30.5,19.5
+ parent: 1653
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 1653
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 1653
+ - uid: 1256
+ components:
+ - type: Transform
+ pos: 46.5,3.5
+ parent: 1653
+- proto: Railing
+ entities:
+ - uid: 527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,38.5
+ parent: 1653
+ - uid: 936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,18.5
+ parent: 1653
+ - uid: 940
+ components:
+ - type: Transform
+ pos: 12.5,19.5
+ parent: 1653
+- proto: RailingCornerSmall
+ entities:
+ - uid: 528
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,39.5
+ parent: 1653
+ - uid: 529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,39.5
+ parent: 1653
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 35.5,38.5
+ parent: 1653
+ - uid: 943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,19.5
+ parent: 1653
+- proto: RandomArtifactSpawner
+ entities:
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 5.5,43.5
+ parent: 1653
+ - uid: 1059
+ components:
+ - type: Transform
+ pos: 34.5,22.5
+ parent: 1653
+- proto: RandomInstruments
+ entities:
+ - uid: 934
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 1653
+ - uid: 1248
+ components:
+ - type: Transform
+ pos: 48.5,0.5
+ parent: 1653
+- proto: RandomItem
+ entities:
+ - uid: 1654
+ components:
+ - type: Transform
+ pos: 12.5,21.5
+ parent: 1653
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: 16.5,19.5
+ parent: 1653
+ - uid: 1656
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 1653
+ - uid: 1657
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 1653
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: 20.5,24.5
+ parent: 1653
+ - uid: 1661
+ components:
+ - type: Transform
+ pos: 22.5,32.5
+ parent: 1653
+ - uid: 1662
+ components:
+ - type: Transform
+ pos: 19.5,30.5
+ parent: 1653
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: 5.5,35.5
+ parent: 1653
+ - uid: 1665
+ components:
+ - type: Transform
+ pos: 4.5,40.5
+ parent: 1653
+ - uid: 1666
+ components:
+ - type: Transform
+ pos: 2.5,40.5
+ parent: 1653
+ - uid: 1667
+ components:
+ - type: Transform
+ pos: 2.5,46.5
+ parent: 1653
+ - uid: 1668
+ components:
+ - type: Transform
+ pos: 10.5,47.5
+ parent: 1653
+ - uid: 1669
+ components:
+ - type: Transform
+ pos: 18.5,44.5
+ parent: 1653
+ - uid: 1670
+ components:
+ - type: Transform
+ pos: 30.5,38.5
+ parent: 1653
+ - uid: 1671
+ components:
+ - type: Transform
+ pos: 37.5,40.5
+ parent: 1653
+ - uid: 1672
+ components:
+ - type: Transform
+ pos: 44.5,40.5
+ parent: 1653
+ - uid: 1673
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 1653
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 1653
+ - uid: 1677
+ components:
+ - type: Transform
+ pos: 30.5,12.5
+ parent: 1653
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 1653
+ - uid: 1679
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1653
+ - uid: 1682
+ components:
+ - type: Transform
+ pos: 42.5,4.5
+ parent: 1653
+ - uid: 1683
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 1653
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: 50.5,0.5
+ parent: 1653
+ - uid: 1685
+ components:
+ - type: Transform
+ pos: 53.5,4.5
+ parent: 1653
+- proto: RandomPosterContraband
+ entities:
+ - uid: 1274
+ components:
+ - type: Transform
+ pos: 43.5,4.5
+ parent: 1653
+ - uid: 1275
+ components:
+ - type: Transform
+ pos: 47.5,0.5
+ parent: 1653
+ - uid: 1276
+ components:
+ - type: Transform
+ pos: 39.5,0.5
+ parent: 1653
+- proto: RandomSoap
+ entities:
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1653
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+- proto: RandomSpawner
+ entities:
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 1653
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 5.5,38.5
+ parent: 1653
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 29.5,40.5
+ parent: 1653
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 18.5,38.5
+ parent: 1653
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 37.5,38.5
+ parent: 1653
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 41.5,40.5
+ parent: 1653
+ - uid: 831
+ components:
+ - type: Transform
+ pos: 6.5,45.5
+ parent: 1653
+- proto: Recycler
+ entities:
+ - uid: 832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,24.5
+ parent: 1653
+- proto: ReinforcedWindow
+ entities:
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 17.5,30.5
+ parent: 1653
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 1653
+- proto: SeedExtractor
+ entities:
+ - uid: 1373
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 1653
+- proto: ShardGlass
+ entities:
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 2.445806,46.508026
+ parent: 1653
+- proto: ShardGlassReinforced
+ entities:
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: 34.381138,20.460537
+ parent: 1653
+ - uid: 1561
+ components:
+ - type: Transform
+ pos: 25.506968,14.578961
+ parent: 1653
+- proto: SheetSteel1
+ entities:
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 32.52815,38.437122
+ parent: 1653
+- proto: ShuttersWindow
+ entities:
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 10.5,43.5
+ parent: 1653
+ - type: DeviceLinkSink
+ links:
+ - 583
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+ - type: DeviceLinkSink
+ links:
+ - 583
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 12.5,43.5
+ parent: 1653
+ - type: DeviceLinkSink
+ links:
+ - 583
+- proto: SignalButton
+ entities:
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 9.5,43.5
+ parent: 1653
+ - type: DeviceLinkSource
+ linkedPorts:
+ 580:
+ - Pressed: Toggle
+ 581:
+ - Pressed: Toggle
+ 582:
+ - Pressed: Toggle
+- proto: SignElectricalMed
+ entities:
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 8.5,43.5
+ parent: 1653
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 21.5,47.5
+ parent: 1653
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: 28.5,9.5
+ parent: 1653
+- proto: SignRedFour
+ entities:
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: 48.5,1.5
+ parent: 1653
+- proto: SignRedOne
+ entities:
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: 40.5,3.5
+ parent: 1653
+- proto: SignRedThree
+ entities:
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 48.5,3.5
+ parent: 1653
+- proto: SignRedTwo
+ entities:
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 40.5,1.5
+ parent: 1653
+- proto: SignScience
+ entities:
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: 34.5,16.5
+ parent: 1653
+- proto: SignSecureMed
+ entities:
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 1653
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 1653
+- proto: SignShock
+ entities:
+ - uid: 625
+ components:
+ - type: Transform
+ pos: 17.5,43.5
+ parent: 1653
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 1653
+- proto: SignXenolab
+ entities:
+ - uid: 1461
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 1653
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: 33.5,4.5
+ parent: 1653
+- proto: SinkWide
+ entities:
+ - uid: 471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,47.5
+ parent: 1653
+ - uid: 717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,25.5
+ parent: 1653
+ - uid: 803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,24.5
+ parent: 1653
+ - uid: 804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,28.5
+ parent: 1653
+ - uid: 805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,28.5
+ parent: 1653
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1653
+ - uid: 891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,19.5
+ parent: 1653
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1653
+- proto: SmartFridge
+ entities:
+ - uid: 1458
+ components:
+ - type: Transform
+ pos: 23.5,4.5
+ parent: 1653
+- proto: SMESBasic
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+- proto: SpawnDungeonClutterBeakerEmpty
+ entities:
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 22.287348,4.675832
+ parent: 1653
+ - uid: 591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.36547,13.565901
+ parent: 1653
+ - uid: 617
+ components:
+ - type: Transform
+ pos: 21.115473,4.441457
+ parent: 1653
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 22.709223,4.472707
+ parent: 1653
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 8.461665,3.597707
+ parent: 1653
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 22.474848,0.55083203
+ parent: 1653
+ - uid: 969
+ components:
+ - type: Transform
+ pos: 21.365473,4.769582
+ parent: 1653
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 21.724848,4.457082
+ parent: 1653
+ - uid: 1699
+ components:
+ - type: Transform
+ pos: 8.727577,3.7073417
+ parent: 1653
+- proto: SpawnDungeonClutterMedical
+ entities:
+ - uid: 1688
+ components:
+ - type: Transform
+ pos: 24.561113,15.592649
+ parent: 1653
+- proto: SpawnDungeonLootArmoryGuns
+ entities:
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 31.586124,32.486885
+ parent: 1653
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 4.57791,18.555695
+ parent: 1653
+ - uid: 1700
+ components:
+ - type: Transform
+ pos: 42.576458,0.5552789
+ parent: 1653
+ - uid: 1704
+ components:
+ - type: Transform
+ pos: 36.555485,40.471622
+ parent: 1653
+- proto: SpawnDungeonLootArmoryMelee
+ entities:
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: 10.009466,10.008511
+ parent: 1653
+ - uid: 1635
+ components:
+ - type: Transform
+ pos: 0.6236644,0.5972314
+ parent: 1653
+- proto: SpawnDungeonLootBureaucracy
+ entities:
+ - uid: 619
+ components:
+ - type: Transform
+ pos: 19.528336,32.551476
+ parent: 1653
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 24.357988,16.108274
+ parent: 1653
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 24.54396,31.660852
+ parent: 1653
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 30.51717,13.502149
+ parent: 1653
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 22.51271,30.598352
+ parent: 1653
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: 24.592363,16.514524
+ parent: 1653
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 16.5,25.5
+ parent: 1653
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 6.5,48.5
+ parent: 1653
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 1653
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1653
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 1653
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1653
+- proto: SpawnDungeonLootChemsHydroponics
+ entities:
+ - uid: 1703
+ components:
+ - type: Transform
+ pos: 18.602531,9.773348
+ parent: 1653
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 22.38291,28.488028
+ parent: 1653
+ - uid: 1383
+ components:
+ - type: Transform
+ pos: 22.679785,28.597403
+ parent: 1653
+- proto: SpawnDungeonLootClothesScience
+ entities:
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 12.407462,28.413622
+ parent: 1653
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 12.657462,28.538622
+ parent: 1653
+ - uid: 1694
+ components:
+ - type: Transform
+ pos: 0.41181087,18.659483
+ parent: 1653
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 786
+ components:
+ - type: Transform
+ pos: 6.6116033,16.626543
+ parent: 1653
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 6.3928533,16.376543
+ parent: 1653
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 33.507645,36.598564
+ parent: 1653
+ - uid: 827
+ components:
+ - type: Transform
+ pos: 40.63004,12.862738
+ parent: 1653
+ - uid: 828
+ components:
+ - type: Transform
+ pos: 40.41129,12.612738
+ parent: 1653
+ - uid: 839
+ components:
+ - type: Transform
+ pos: 40.69254,12.612738
+ parent: 1653
+ - uid: 880
+ components:
+ - type: Transform
+ pos: 14.341439,28.738409
+ parent: 1653
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 14.310189,28.457159
+ parent: 1653
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: 5.6730566,16.664314
+ parent: 1653
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 6.0011816,16.71119
+ parent: 1653
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: 40.41129,13.565863
+ parent: 1653
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: 40.583164,13.597113
+ parent: 1653
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 40.44254,13.206488
+ parent: 1653
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 33.191795,13.486207
+ parent: 1653
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: 14.669564,28.613409
+ parent: 1653
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: 33.629295,13.673707
+ parent: 1653
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 36.973045,15.079957
+ parent: 1653
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 41.42337,12.704957
+ parent: 1653
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 41.220245,12.501832
+ parent: 1653
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 41.70462,12.470582
+ parent: 1653
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 42.51712,13.548707
+ parent: 1653
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 36.48867,16.579956
+ parent: 1653
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: 10.367256,7.6852627
+ parent: 1653
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 42.57962,12.751832
+ parent: 1653
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: 37.614346,39.748646
+ parent: 1653
+ - uid: 1603
+ components:
+ - type: Transform
+ pos: 6.6730566,16.039314
+ parent: 1653
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 32.55117,13.658082
+ parent: 1653
+ - uid: 1641
+ components:
+ - type: Transform
+ pos: 35.535545,14.642457
+ parent: 1653
+ - uid: 1680
+ components:
+ - type: Transform
+ pos: 21.462755,36.54628
+ parent: 1653
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: 8.553732,35.58555
+ parent: 1653
+ - uid: 1686
+ components:
+ - type: Transform
+ pos: 10.648506,7.4196377
+ parent: 1653
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: 36.51992,15.923707
+ parent: 1653
+- proto: SpawnDungeonLootClutterKitchen
+ entities:
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 1.5097866,10.419947
+ parent: 1653
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 1.2597866,10.779322
+ parent: 1653
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 1.2129116,10.482447
+ parent: 1653
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 1.6972866,10.716822
+ parent: 1653
+ - uid: 1697
+ components:
+ - type: Transform
+ pos: 2.0410366,10.544947
+ parent: 1653
+ - uid: 1698
+ components:
+ - type: Transform
+ pos: 2.4160366,10.701197
+ parent: 1653
+- proto: SpawnDungeonLootClutterSalvage
+ entities:
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: 36.614346,40.60802
+ parent: 1653
+- proto: SpawnDungeonLootClutterScience
+ entities:
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 30.383333,19.690279
+ parent: 1653
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 1.562161,43.304916
+ parent: 1653
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 31.07698,4.494423
+ parent: 1653
+ - uid: 953
+ components:
+ - type: Transform
+ pos: 30.57698,4.681923
+ parent: 1653
+ - uid: 1631
+ components:
+ - type: Transform
+ pos: 31.748856,4.541298
+ parent: 1653
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: 2.046536,46.47679
+ parent: 1653
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: 30.654924,19.605516
+ parent: 1653
+- proto: SpawnDungeonLootCrateVehicle
+ entities:
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1653
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 0.4160366,9.513697
+ parent: 1653
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 0.5879116,9.919947
+ parent: 1653
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 1.3656492,25.793985
+ parent: 1653
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 1.6937742,25.52836
+ parent: 1653
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 12.461545,22.599348
+ parent: 1653
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 11.53257,30.694124
+ parent: 1653
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 16.47303,18.559921
+ parent: 1653
+- proto: SpawnDungeonLootKitchenTabletop
+ entities:
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+- proto: SpawnDungeonLootLathe
+ entities:
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 32.5,16.5
+ parent: 1653
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 33.5,16.5
+ parent: 1653
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 1653
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: 28.5,4.5
+ parent: 1653
+ - uid: 1642
+ components:
+ - type: Transform
+ pos: 20.5,44.5
+ parent: 1653
+- proto: SpawnDungeonLootLatheEngi
+ entities:
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 1653
+ - uid: 745
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersEngi
+ entities:
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 43.5,40.5
+ parent: 1653
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 14.5,42.5
+ parent: 1653
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 1653
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: 27.5,9.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersGeneral
+ entities:
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1653
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1653
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 44.5,4.5
+ parent: 1653
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1653
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersMed
+ entities:
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 30.5,16.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersProtectiveGear
+ entities:
+ - uid: 468
+ components:
+ - type: Transform
+ pos: 20.5,28.5
+ parent: 1653
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 0.5,48.5
+ parent: 1653
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 1653
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 2.5,48.5
+ parent: 1653
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 1.5,40.5
+ parent: 1653
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1653
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 1.5,48.5
+ parent: 1653
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 54.5,0.5
+ parent: 1653
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 53.5,0.5
+ parent: 1653
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 1653
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1653
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 4.631857,35.58555
+ parent: 1653
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 4.603287,16.547016
+ parent: 1653
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 27.427818,8.406059
+ parent: 1653
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 27.802818,8.281059
+ parent: 1653
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 12.357041,39.463593
+ parent: 1653
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 27.521568,8.671684
+ parent: 1653
+ - uid: 1556
+ components:
+ - type: Transform
+ pos: 0.52582324,16.047016
+ parent: 1653
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 27.802818,8.515434
+ parent: 1653
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 32.50711,4.582082
+ parent: 1653
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 0.55707324,16.547016
+ parent: 1653
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: 7.4517813,6.5602627
+ parent: 1653
+ - uid: 1637
+ components:
+ - type: Transform
+ pos: 6.428732,35.538673
+ parent: 1653
+ - uid: 1643
+ components:
+ - type: Transform
+ pos: 8.631171,28.549417
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableFull
+ entities:
+ - uid: 746
+ components:
+ - type: Transform
+ pos: 0.54144824,15.625142
+ parent: 1653
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 1.496994,27.709425
+ parent: 1653
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 20.545664,34.64003
+ parent: 1653
+ - uid: 1568
+ components:
+ - type: Transform
+ pos: 14.497689,24.666225
+ parent: 1653
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: 15.420664,34.54628
+ parent: 1653
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: 31.551804,8.577934
+ parent: 1653
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: 6.4992156,22.555288
+ parent: 1653
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: 16.536243,24.58135
+ parent: 1653
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 20.468935,4.597707
+ parent: 1653
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 21.514414,34.67128
+ parent: 1653
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 1.496994,27.16255
+ parent: 1653
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 1.434494,26.740675
+ parent: 1653
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: 1.471144,31.615616
+ parent: 1653
+- proto: SpawnDungeonLootMugs
+ entities:
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 20.527668,40.46952
+ parent: 1653
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 20.340168,40.71952
+ parent: 1653
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 20.715168,40.71952
+ parent: 1653
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 0.7518523,3.5126042
+ parent: 1653
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 0.29872727,3.6376042
+ parent: 1653
+- proto: SpawnDungeonLootOresFull
+ entities:
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 10.521796,25.471292
+ parent: 1653
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 1.481369,26.365675
+ parent: 1653
+- proto: SpawnDungeonLootPartsEngi
+ entities:
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: 1.533644,31.990616
+ parent: 1653
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 1.4959452,46.502045
+ parent: 1653
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 2.705519,31.59999
+ parent: 1653
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 27.493414,2.519582
+ parent: 1653
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 46.40493,1.503957
+ parent: 1653
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 31.462164,2.613332
+ parent: 1653
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: 37.55002,0.50395703
+ parent: 1653
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 2.127394,31.50624
+ parent: 1653
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: 23.399664,2.644582
+ parent: 1653
+ - uid: 1692
+ components:
+ - type: Transform
+ pos: 19.55425,2.457082
+ parent: 1653
+- proto: SpawnDungeonLootPowerCell
+ entities:
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 12.660753,45.699017
+ parent: 1653
+ - uid: 1690
+ components:
+ - type: Transform
+ pos: 36.23867,15.001832
+ parent: 1653
+- proto: SpawnDungeonLootRnDDisk
+ entities:
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: 8.5620365,1.5680878
+ parent: 1653
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 32.50315,0.5243919
+ parent: 1653
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 24.390997,16.62883
+ parent: 1653
+ - uid: 1346
+ components:
+ - type: Transform
+ pos: 18.496307,44.463806
+ parent: 1653
+ - uid: 1351
+ components:
+ - type: Transform
+ pos: 36.562843,15.472088
+ parent: 1653
+- proto: SpawnDungeonLootSeed
+ entities:
+ - uid: 494
+ components:
+ - type: Transform
+ pos: 16.4067,7.8727627
+ parent: 1653
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 16.609825,7.6071377
+ parent: 1653
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 16.4067,8.747763
+ parent: 1653
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 4.5460906,18.508413
+ parent: 1653
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 16.62545,8.450888
+ parent: 1653
+ - uid: 841
+ components:
+ - type: Transform
+ pos: 16.391075,9.497763
+ parent: 1653
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 16.62545,9.310263
+ parent: 1653
+- proto: SpawnDungeonLootToolbox
+ entities:
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 36.497677,16.296684
+ parent: 1653
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: 4.4930425,12.593797
+ parent: 1653
+- proto: SpawnDungeonLootToolsAdvancedEngineering
+ entities:
+ - uid: 1380
+ components:
+ - type: Transform
+ pos: 28.450766,21.574556
+ parent: 1653
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 32.564045,15.580274
+ parent: 1653
+- proto: SpawnDungeonLootToolsBasicEngineering
+ entities:
+ - uid: 820
+ components:
+ - type: Transform
+ pos: 10.514916,45.573624
+ parent: 1653
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 20.369005,36.60878
+ parent: 1653
+ - uid: 822
+ components:
+ - type: Transform
+ pos: 20.650255,36.499405
+ parent: 1653
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 2.6024175,12.562547
+ parent: 1653
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 27.580544,22.502699
+ parent: 1653
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: 0.5271952,46.502045
+ parent: 1653
+ - uid: 1543
+ components:
+ - type: Transform
+ pos: 2.3992925,12.703172
+ parent: 1653
+- proto: SpawnDungeonLootToolsHydroponics
+ entities:
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 18.399406,9.695223
+ parent: 1653
+ - uid: 1701
+ components:
+ - type: Transform
+ pos: 18.586906,9.507723
+ parent: 1653
+- proto: SpawnDungeonLootVaultGuns
+ entities:
+ - uid: 1378
+ components:
+ - type: Transform
+ pos: 12.530378,14.475547
+ parent: 1653
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: 10.452253,14.584922
+ parent: 1653
+ - uid: 1647
+ components:
+ - type: Transform
+ pos: 12.436628,14.694297
+ parent: 1653
+- proto: SpawnDungeonVendomatsClothes
+ entities:
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: 46.5,4.5
+ parent: 1653
+- proto: SpawnDungeonVendomatsMed
+ entities:
+ - uid: 1675
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 1653
+- proto: SpawnDungeonVendomatsRecreational
+ entities:
+ - uid: 927
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 1653
+ - uid: 1352
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 1653
+ - uid: 1625
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 1653
+ - uid: 1626
+ components:
+ - type: Transform
+ pos: 7.5,10.5
+ parent: 1653
+ - uid: 1627
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1653
+ - uid: 1644
+ components:
+ - type: Transform
+ pos: 38.5,4.5
+ parent: 1653
+ - uid: 1646
+ components:
+ - type: Transform
+ pos: 29.5,38.5
+ parent: 1653
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 1653
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 1653
+ - uid: 1663
+ components:
+ - type: Transform
+ pos: 37.5,4.5
+ parent: 1653
+ - uid: 1676
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 1653
+- proto: SprayBottleSpaceCleaner
+ entities:
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 4.3731804,24.592852
+ parent: 1653
+- proto: SprayBottleWater
+ entities:
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: 17.482958,14.735751
+ parent: 1653
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: 30.7552,12.830012
+ parent: 1653
+- proto: Stool
+ entities:
+ - uid: 644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,35.5
+ parent: 1653
+ - uid: 701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,32.5
+ parent: 1653
+ - uid: 702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,30.5
+ parent: 1653
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 1653
+ - uid: 788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,30.5
+ parent: 1653
+ - uid: 789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,30.5
+ parent: 1653
+ - uid: 790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,30.5
+ parent: 1653
+ - uid: 813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,25.5
+ parent: 1653
+ - uid: 814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,26.5
+ parent: 1653
+ - uid: 815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,27.5
+ parent: 1653
+ - uid: 846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4773784,6.610151
+ parent: 1653
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 8.5,25.5
+ parent: 1653
+ - uid: 901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,21.5
+ parent: 1653
+ - uid: 902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,21.5
+ parent: 1653
+ - uid: 950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 1653
+ - uid: 951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 1653
+ - uid: 1064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,18.5
+ parent: 1653
+ - uid: 1065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,19.5
+ parent: 1653
+ - uid: 1269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,3.5
+ parent: 1653
+ - uid: 1570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,15.5
+ parent: 1653
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 1653
+ - uid: 1632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4773784,7.641401
+ parent: 1653
+- proto: SubstationBasic
+ entities:
+ - uid: 559
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 1653
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1653
+- proto: SubstationWallBasic
+ entities:
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+- proto: Table
+ entities:
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 0.5,46.5
+ parent: 1653
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 1.5,46.5
+ parent: 1653
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 2.5,46.5
+ parent: 1653
+ - uid: 507
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 1653
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 37.5,39.5
+ parent: 1653
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 37.5,40.5
+ parent: 1653
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 1653
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 1653
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 33.5,36.5
+ parent: 1653
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 2.5,31.5
+ parent: 1653
+ - uid: 694
+ components:
+ - type: Transform
+ pos: 1.5,31.5
+ parent: 1653
+ - uid: 695
+ components:
+ - type: Transform
+ pos: 1.5,32.5
+ parent: 1653
+ - uid: 777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,32.5
+ parent: 1653
+ - uid: 778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,30.5
+ parent: 1653
+ - uid: 781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,32.5
+ parent: 1653
+ - uid: 782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,30.5
+ parent: 1653
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 14.5,24.5
+ parent: 1653
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 1653
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1653
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1653
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1653
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 1653
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1653
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1653
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1653
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 1653
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 1653
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: 6.5,16.5
+ parent: 1653
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 1653
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 1653
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 1653
+ - uid: 1262
+ components:
+ - type: Transform
+ pos: 37.5,0.5
+ parent: 1653
+ - uid: 1263
+ components:
+ - type: Transform
+ pos: 53.5,4.5
+ parent: 1653
+ - uid: 1350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1653
+ - uid: 1428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 1429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,2.5
+ parent: 1653
+ - uid: 1430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,2.5
+ parent: 1653
+ - uid: 1431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,2.5
+ parent: 1653
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: 24.5,15.5
+ parent: 1653
+ - uid: 1551
+ components:
+ - type: Transform
+ pos: 24.5,16.5
+ parent: 1653
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: 30.5,12.5
+ parent: 1653
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: 30.5,13.5
+ parent: 1653
+ - uid: 1577
+ components:
+ - type: Transform
+ pos: 36.5,16.5
+ parent: 1653
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: 36.5,15.5
+ parent: 1653
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1653
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 1653
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: 32.5,13.5
+ parent: 1653
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: 33.5,13.5
+ parent: 1653
+ - uid: 1618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,13.5
+ parent: 1653
+ - uid: 1619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,12.5
+ parent: 1653
+ - uid: 1620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,12.5
+ parent: 1653
+ - uid: 1621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,12.5
+ parent: 1653
+ - uid: 1622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,13.5
+ parent: 1653
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 1653
+- proto: TableCarpet
+ entities:
+ - uid: 859
+ components:
+ - type: Transform
+ pos: 29.5,32.5
+ parent: 1653
+ - uid: 860
+ components:
+ - type: Transform
+ pos: 31.5,32.5
+ parent: 1653
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 39.5,32.5
+ parent: 1653
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 37.5,32.5
+ parent: 1653
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 33.5,30.5
+ parent: 1653
+ - uid: 864
+ components:
+ - type: Transform
+ pos: 35.5,30.5
+ parent: 1653
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 48.5,4.5
+ parent: 1653
+- proto: TableGlass
+ entities:
+ - uid: 627
+ components:
+ - type: Transform
+ pos: 4.5,35.5
+ parent: 1653
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 5.5,35.5
+ parent: 1653
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 6.5,35.5
+ parent: 1653
+ - uid: 707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,30.5
+ parent: 1653
+ - uid: 925
+ components:
+ - type: Transform
+ pos: 6.5,22.5
+ parent: 1653
+ - uid: 941
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 1653
+ - uid: 942
+ components:
+ - type: Transform
+ pos: 16.5,18.5
+ parent: 1653
+ - uid: 1336
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1653
+ - uid: 1337
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1653
+ - uid: 1374
+ components:
+ - type: Transform
+ pos: 18.5,9.5
+ parent: 1653
+ - uid: 1375
+ components:
+ - type: Transform
+ pos: 16.5,7.5
+ parent: 1653
+ - uid: 1376
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 1653
+ - uid: 1377
+ components:
+ - type: Transform
+ pos: 16.5,9.5
+ parent: 1653
+ - uid: 1448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,4.5
+ parent: 1653
+ - uid: 1449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,4.5
+ parent: 1653
+ - uid: 1450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,4.5
+ parent: 1653
+ - uid: 1451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,4.5
+ parent: 1653
+ - uid: 1452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,4.5
+ parent: 1653
+ - uid: 1453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,4.5
+ parent: 1653
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 22.5,0.5
+ parent: 1653
+ - uid: 1478
+ components:
+ - type: Transform
+ pos: 30.5,0.5
+ parent: 1653
+ - uid: 1555
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 1653
+- proto: TableReinforced
+ entities:
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 1653
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 1.5,26.5
+ parent: 1653
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 1.5,27.5
+ parent: 1653
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 1653
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 1653
+- proto: TableReinforcedGlass
+ entities:
+ - uid: 620
+ components:
+ - type: Transform
+ pos: 18.5,44.5
+ parent: 1653
+- proto: TableWood
+ entities:
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 20.5,34.5
+ parent: 1653
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 21.5,34.5
+ parent: 1653
+ - uid: 772
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 1653
+ - uid: 773
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 1653
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1653
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1653
+ - uid: 1186
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 1653
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 1653
+ - uid: 1188
+ components:
+ - type: Transform
+ pos: 21.5,15.5
+ parent: 1653
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: 40.5,0.5
+ parent: 1653
+ - uid: 1270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,1.5
+ parent: 1653
+- proto: ToiletEmpty
+ entities:
+ - uid: 799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 1653
+ - uid: 801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,27.5
+ parent: 1653
+ - uid: 802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,27.5
+ parent: 1653
+ - uid: 889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,18.5
+ parent: 1653
+- proto: ToolboxGoldFilled
+ entities:
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 1.492549,27.312542
+ parent: 1653
+- proto: ToyRubberDuck
+ entities:
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 8.491199,25.423159
+ parent: 1653
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 1653
+- proto: ToySpawner
+ entities:
+ - uid: 1246
+ components:
+ - type: Transform
+ pos: 40.5,0.5
+ parent: 1653
+- proto: TrashBananaPeel
+ entities:
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 19.519592,13.327012
+ parent: 1653
+- proto: UnfinishedMachineFrame
+ entities:
+ - uid: 1341
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 1653
+ - uid: 1602
+ components:
+ - type: Transform
+ pos: 33.5,14.5
+ parent: 1653
+- proto: VariantCubeBox
+ entities:
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 17.514208,15.501376
+ parent: 1653
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: 24.538218,15.750836
+ parent: 1653
+- proto: VehicleJanicartDestroyed
+ entities:
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 6.5,25.5
+ parent: 1653
+- proto: WallmountTelescreen
+ entities:
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1653
+- proto: WallPlastitanium
+ entities:
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 1653
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 11.5,15.5
+ parent: 1653
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 1653
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: 13.5,13.5
+ parent: 1653
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 13.5,15.5
+ parent: 1653
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: 12.5,15.5
+ parent: 1653
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 10.5,15.5
+ parent: 1653
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: 9.5,15.5
+ parent: 1653
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: 13.5,14.5
+ parent: 1653
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 1653
+ - uid: 1134
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 1653
+- proto: WallSolid
+ entities:
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 26.5,38.5
+ parent: 1653
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 26.5,40.5
+ parent: 1653
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 28.5,40.5
+ parent: 1653
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 28.5,38.5
+ parent: 1653
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 8.5,43.5
+ parent: 1653
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 9.5,43.5
+ parent: 1653
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 14.5,43.5
+ parent: 1653
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 17.5,43.5
+ parent: 1653
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 17.5,47.5
+ parent: 1653
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 21.5,47.5
+ parent: 1653
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 21.5,43.5
+ parent: 1653
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 1653
+ - uid: 687
+ components:
+ - type: Transform
+ pos: 9.5,30.5
+ parent: 1653
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1653
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 1.5,22.5
+ parent: 1653
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 1653
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 1653
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1653
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 1653
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 1653
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 1653
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1653
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: 40.5,3.5
+ parent: 1653
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: 39.5,3.5
+ parent: 1653
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: 39.5,4.5
+ parent: 1653
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 42.5,3.5
+ parent: 1653
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: 43.5,3.5
+ parent: 1653
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 43.5,4.5
+ parent: 1653
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: 39.5,0.5
+ parent: 1653
+ - uid: 1204
+ components:
+ - type: Transform
+ pos: 39.5,1.5
+ parent: 1653
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: 40.5,1.5
+ parent: 1653
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 42.5,1.5
+ parent: 1653
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 43.5,1.5
+ parent: 1653
+ - uid: 1208
+ components:
+ - type: Transform
+ pos: 43.5,0.5
+ parent: 1653
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: 47.5,0.5
+ parent: 1653
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: 47.5,1.5
+ parent: 1653
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 48.5,1.5
+ parent: 1653
+ - uid: 1212
+ components:
+ - type: Transform
+ pos: 50.5,1.5
+ parent: 1653
+ - uid: 1213
+ components:
+ - type: Transform
+ pos: 51.5,1.5
+ parent: 1653
+ - uid: 1214
+ components:
+ - type: Transform
+ pos: 51.5,0.5
+ parent: 1653
+ - uid: 1215
+ components:
+ - type: Transform
+ pos: 50.5,3.5
+ parent: 1653
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: 51.5,3.5
+ parent: 1653
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: 51.5,4.5
+ parent: 1653
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: 48.5,3.5
+ parent: 1653
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: 47.5,3.5
+ parent: 1653
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 47.5,4.5
+ parent: 1653
+ - uid: 1322
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1653
+ - uid: 1323
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1653
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 1653
+ - uid: 1460
+ components:
+ - type: Transform
+ pos: 33.5,4.5
+ parent: 1653
+ - uid: 1501
+ components:
+ - type: Transform
+ pos: 28.5,9.5
+ parent: 1653
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 34.5,16.5
+ parent: 1653
+- proto: WaterTankFull
+ entities:
+ - uid: 1372
+ components:
+ - type: Transform
+ pos: 18.5,7.5
+ parent: 1653
+ - uid: 1475
+ components:
+ - type: Transform
+ pos: 24.5,4.5
+ parent: 1653
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 1353
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 1653
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 14.5,44.5
+ parent: 1653
+ - uid: 1387
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1653
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 1653
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1653
+- proto: Windoor
+ entities:
+ - uid: 636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,34.5
+ parent: 1653
+ - uid: 637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,36.5
+ parent: 1653
+ - uid: 639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,34.5
+ parent: 1653
+ - uid: 640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,36.5
+ parent: 1653
+ - uid: 690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,32.5
+ parent: 1653
+ - uid: 691
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,30.5
+ parent: 1653
+ - uid: 877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,25.5
+ parent: 1653
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 1653
+- proto: WindoorSecure
+ entities:
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,44.5
+ parent: 1653
+ - uid: 809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,42.5
+ parent: 1653
+ - uid: 1175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,12.5
+ parent: 1653
+ - uid: 1420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,1.5
+ parent: 1653
+ - uid: 1421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,2.5
+ parent: 1653
+ - uid: 1422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,2.5
+ parent: 1653
+ - uid: 1423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,1.5
+ parent: 1653
+ - uid: 1424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,1.5
+ parent: 1653
+ - uid: 1425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,2.5
+ parent: 1653
+ - uid: 1426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,1.5
+ parent: 1653
+ - uid: 1427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,2.5
+ parent: 1653
+ - uid: 1465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,3.5
+ parent: 1653
+ - uid: 1466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,3.5
+ parent: 1653
+- proto: WindowDirectional
+ entities:
+ - uid: 632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,35.5
+ parent: 1653
+ - uid: 633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,35.5
+ parent: 1653
+ - uid: 1253
+ components:
+ - type: Transform
+ pos: 46.5,3.5
+ parent: 1653
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: 44.5,3.5
+ parent: 1653
+- proto: WindowFrostedDirectional
+ entities:
+ - uid: 473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,48.5
+ parent: 1653
+ - uid: 475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,46.5
+ parent: 1653
+ - uid: 476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,46.5
+ parent: 1653
+ - uid: 500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,39.5
+ parent: 1653
+ - uid: 501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,39.5
+ parent: 1653
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 18.5,43.5
+ parent: 1653
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 20.5,43.5
+ parent: 1653
+ - uid: 598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,44.5
+ parent: 1653
+ - uid: 599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,46.5
+ parent: 1653
+ - uid: 600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,47.5
+ parent: 1653
+ - uid: 601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,47.5
+ parent: 1653
+ - uid: 602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,46.5
+ parent: 1653
+ - uid: 603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,44.5
+ parent: 1653
+ - uid: 604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,45.5
+ parent: 1653
+ - uid: 605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,47.5
+ parent: 1653
+ - uid: 606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,45.5
+ parent: 1653
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 19.5,43.5
+ parent: 1653
+ - uid: 688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,25.5
+ parent: 1653
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 10.5,28.5
+ parent: 1653
+ - uid: 793
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 1653
+ - uid: 794
+ components:
+ - type: Transform
+ pos: 8.5,28.5
+ parent: 1653
+ - uid: 795
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 1653
+ - uid: 797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,25.5
+ parent: 1653
+ - uid: 798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,24.5
+ parent: 1653
+ - uid: 946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 1653
+ - uid: 947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1653
+ - uid: 970
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1653
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1653
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1653
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1653
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,42.5
+ parent: 1653
+ - uid: 451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,43.5
+ parent: 1653
+ - uid: 452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,44.5
+ parent: 1653
+ - uid: 453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,44.5
+ parent: 1653
+ - uid: 454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,44.5
+ parent: 1653
+ - uid: 456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,42.5
+ parent: 1653
+ - uid: 457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,43.5
+ parent: 1653
+ - uid: 458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,44.5
+ parent: 1653
+ - uid: 842
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 1653
+ - uid: 843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,24.5
+ parent: 1653
+ - uid: 908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,20.5
+ parent: 1653
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 1653
+ - uid: 915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,21.5
+ parent: 1653
+ - uid: 916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,20.5
+ parent: 1653
+ - uid: 917
+ components:
+ - type: Transform
+ pos: 9.5,20.5
+ parent: 1653
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 1653
+ - uid: 919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,19.5
+ parent: 1653
+ - uid: 920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,19.5
+ parent: 1653
+ - uid: 921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,21.5
+ parent: 1653
+ - uid: 922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,20.5
+ parent: 1653
+ - uid: 923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,20.5
+ parent: 1653
+ - uid: 924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,21.5
+ parent: 1653
+ - uid: 995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,18.5
+ parent: 1653
+ - uid: 996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,18.5
+ parent: 1653
+ - uid: 997
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,18.5
+ parent: 1653
+ - uid: 998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,18.5
+ parent: 1653
+ - uid: 999
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,22.5
+ parent: 1653
+ - uid: 1000
+ components:
+ - type: Transform
+ pos: 22.5,22.5
+ parent: 1653
+ - uid: 1001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,22.5
+ parent: 1653
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 1653
+ - uid: 1051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,21.5
+ parent: 1653
+ - uid: 1053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,22.5
+ parent: 1653
+ - uid: 1054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,21.5
+ parent: 1653
+ - uid: 1055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,22.5
+ parent: 1653
+ - uid: 1056
+ components:
+ - type: Transform
+ pos: 33.5,21.5
+ parent: 1653
+ - uid: 1170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,13.5
+ parent: 1653
+ - uid: 1171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,14.5
+ parent: 1653
+ - uid: 1172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,15.5
+ parent: 1653
+ - uid: 1173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,12.5
+ parent: 1653
+ - uid: 1174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,12.5
+ parent: 1653
+ - uid: 1176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,12.5
+ parent: 1653
+ - uid: 1177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,12.5
+ parent: 1653
+ - uid: 1178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,13.5
+ parent: 1653
+ - uid: 1179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,14.5
+ parent: 1653
+ - uid: 1180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,15.5
+ parent: 1653
+ - uid: 1181
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 1653
+ - uid: 1182
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 1653
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 1653
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 1653
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 1653
+ - uid: 1303
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 1653
+ - uid: 1304
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1653
+ - uid: 1305
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 1653
+ - uid: 1306
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 1653
+ - uid: 1307
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1653
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1653
+ - uid: 1309
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 1653
+ - uid: 1310
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 1653
+ - uid: 1311
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 1653
+ - uid: 1312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,2.5
+ parent: 1653
+ - uid: 1313
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,2.5
+ parent: 1653
+ - uid: 1314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,2.5
+ parent: 1653
+ - uid: 1315
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,2.5
+ parent: 1653
+ - uid: 1316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,2.5
+ parent: 1653
+ - uid: 1317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,2.5
+ parent: 1653
+ - uid: 1318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,2.5
+ parent: 1653
+ - uid: 1319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,2.5
+ parent: 1653
+ - uid: 1320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,2.5
+ parent: 1653
+ - uid: 1366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,7.5
+ parent: 1653
+ - uid: 1367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,8.5
+ parent: 1653
+ - uid: 1368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,9.5
+ parent: 1653
+ - uid: 1369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,7.5
+ parent: 1653
+ - uid: 1370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,8.5
+ parent: 1653
+ - uid: 1371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,9.5
+ parent: 1653
+ - uid: 1388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,0.5
+ parent: 1653
+ - uid: 1389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,1.5
+ parent: 1653
+ - uid: 1390
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,0.5
+ parent: 1653
+ - uid: 1391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 1392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,0.5
+ parent: 1653
+ - uid: 1393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,1.5
+ parent: 1653
+ - uid: 1394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,0.5
+ parent: 1653
+ - uid: 1395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,1.5
+ parent: 1653
+ - uid: 1396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,0.5
+ parent: 1653
+ - uid: 1397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,1.5
+ parent: 1653
+ - uid: 1398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,0.5
+ parent: 1653
+ - uid: 1399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,1.5
+ parent: 1653
+ - uid: 1400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,0.5
+ parent: 1653
+ - uid: 1401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,1.5
+ parent: 1653
+ - uid: 1402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,0.5
+ parent: 1653
+ - uid: 1403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,1.5
+ parent: 1653
+ - uid: 1404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,1.5
+ parent: 1653
+ - uid: 1405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,1.5
+ parent: 1653
+ - uid: 1406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,1.5
+ parent: 1653
+ - uid: 1407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 1408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,1.5
+ parent: 1653
+ - uid: 1409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,1.5
+ parent: 1653
+ - uid: 1410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,1.5
+ parent: 1653
+ - uid: 1411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,1.5
+ parent: 1653
+ - uid: 1412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,2.5
+ parent: 1653
+ - uid: 1413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 1414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 1415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 1416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 1417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,2.5
+ parent: 1653
+ - uid: 1418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 1419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,2.5
+ parent: 1653
+ - uid: 1463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 1464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 1557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,13.5
+ parent: 1653
+ - uid: 1558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,13.5
+ parent: 1653
+ - uid: 1559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,13.5
+ parent: 1653
+ - uid: 1560
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,12.5
+ parent: 1653
+...
diff --git a/Resources/Maps/_NF/Dungeon/haunted.yml b/Resources/Maps/_NF/Dungeon/haunted.yml
new file mode 100644
index 00000000000..b82a2c4dbdd
--- /dev/null
+++ b/Resources/Maps/_NF/Dungeon/haunted.yml
@@ -0,0 +1,3239 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 22: FloorCave
+ 23: FloorCaveDrought
+ 40: FloorDirt
+ 66: FloorMining
+ 68: FloorMiningLight
+ 71: FloorOldConcreteMono
+ 72: FloorOldConcreteSmooth
+ 82: FloorShuttleOrange
+ 118: FloorWood
+ 121: Plating
+ 124: PlatingDamaged
+entities:
+- proto: ""
+ entities:
+ - uid: 1653
+ components:
+ - type: MetaData
+ - type: Transform
+ - type: Map
+ - type: PhysicsMap
+ - type: Broadphase
+ - type: OccluderTree
+ - type: MapGrid
+ chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: FgAAAAAEFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAEFgAAAAADFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAAFgAAAAACFgAAAAAFFgAAAAACFgAAAAAGFgAAAAADFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAEFgAAAAABFgAAAAAEFgAAAAAGFgAAAAACFgAAAAACFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAACFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAACFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAADFgAAAAAEFgAAAAABFgAAAAACFgAAAAABFgAAAAAAFgAAAAAFFgAAAAAEFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAEFgAAAAABFgAAAAAEFgAAAAACFgAAAAAGFgAAAAAFFgAAAAAAFgAAAAABFgAAAAAFFgAAAAADFgAAAAADFgAAAAAFFgAAAAAFFgAAAAABFgAAAAAFFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAADFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAABFgAAAAABFgAAAAACFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAGFwAAAAAAFwAAAAAAFgAAAAACUgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAEFgAAAAACFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAABFgAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAADUgAAAAAAFgAAAAACFgAAAAAFFgAAAAACFwAAAAAAFgAAAAAGFgAAAAADFwAAAAAAFwAAAAAAFgAAAAAEFgAAAAAAFgAAAAACFgAAAAADFwAAAAAAFgAAAAAAFgAAAAAFUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAABFgAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAFFwAAAAAAFwAAAAAAUgAAAAAAFgAAAAADFgAAAAAGFgAAAAAGFwAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAABFgAAAAAEFgAAAAAEUgAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAEFgAAAAABFgAAAAAEFwAAAAABFwAAAAABFwAAAAAEUgAAAAAAFgAAAAAFFgAAAAABFgAAAAAFFgAAAAADFgAAAAADFgAAAAAEFgAAAAADUgAAAAAAFgAAAAACFgAAAAAEFgAAAAAFFgAAAAABFgAAAAAGFgAAAAAFFwAAAAAEUgAAAAAAFgAAAAAGFgAAAAAGFwAAAAAGFwAAAAADFgAAAAAAFgAAAAADFgAAAAAEUgAAAAAAFgAAAAAGFwAAAAACFgAAAAACFgAAAAABFgAAAAABFgAAAAADFgAAAAAAUgAAAAAAFwAAAAACFgAAAAABFwAAAAAHFgAAAAACFgAAAAAEFwAAAAAEFgAAAAADUgAAAAAAFwAAAAACFgAAAAAGFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAEFwAAAAAEUgAAAAAAFgAAAAABFwAAAAAFFwAAAAAFFgAAAAACFgAAAAABFwAAAAAHFwAAAAAEUgAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: FwAAAAACFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAAUgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGFgAAAAADFgAAAAAGFgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAABUgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFFwAAAAAAFgAAAAAEUgAAAAAAFgAAAAADFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAEFwAAAAABFwAAAAAGFgAAAAAFFgAAAAAEUgAAAAAAFgAAAAACFwAAAAAFFwAAAAADFwAAAAADFgAAAAAFUgAAAAAAFwAAAAACFwAAAAADFwAAAAAEFwAAAAAFFgAAAAAEFwAAAAAGFwAAAAAHFwAAAAADFwAAAAAGUgAAAAAAFwAAAAAHFwAAAAACFgAAAAADFwAAAAADFgAAAAABUgAAAAAAFgAAAAABFgAAAAAGFgAAAAAEFgAAAAAGFgAAAAAFFgAAAAAAFwAAAAACFgAAAAAGFgAAAAABUgAAAAAAFgAAAAAGFwAAAAAGFwAAAAABFwAAAAAAFgAAAAACUgAAAAAAFwAAAAAAFgAAAAAGFwAAAAADFwAAAAAHFgAAAAADFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFwAAAAADUgAAAAAAFgAAAAACFgAAAAAAFgAAAAADFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAGFgAAAAABFgAAAAAFUgAAAAAAFwAAAAAEFgAAAAAAFgAAAAAFUgAAAAAAFwAAAAABFgAAAAAAFgAAAAADUgAAAAAAFgAAAAADFwAAAAAFFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAFUgAAAAAAFgAAAAADFgAAAAAGFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAAUgAAAAAAFwAAAAAAFwAAAAADFwAAAAAHUgAAAAAAFgAAAAABFgAAAAABFgAAAAACUgAAAAAAFgAAAAAFFgAAAAADFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAGUgAAAAAAFwAAAAABFwAAAAAFFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAAFwAAAAAEUgAAAAAAFgAAAAAAFgAAAAAFFgAAAAACUgAAAAAAFgAAAAADFgAAAAAFFgAAAAAEUgAAAAAAFwAAAAACFwAAAAAHFgAAAAADUgAAAAAAFgAAAAACFgAAAAADFgAAAAAGUgAAAAAAFgAAAAADFgAAAAADFgAAAAAAUgAAAAAAFgAAAAACFgAAAAAAFwAAAAABUgAAAAAAFwAAAAAAFgAAAAABFgAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAABFgAAAAADFgAAAAABFgAAAAAGFgAAAAAEFgAAAAADFgAAAAADUgAAAAAAFgAAAAADFgAAAAAFFgAAAAACFgAAAAACFgAAAAAEFgAAAAAGFgAAAAABFgAAAAAFFgAAAAACFgAAAAAGFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAAFgAAAAAFUgAAAAAAFgAAAAADFgAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: FgAAAAACUgAAAAAAFgAAAAACFgAAAAACFgAAAAABFgAAAAADFgAAAAACKAAAAAAAKAAAAAAAKAAAAAAAFgAAAAAGFgAAAAABFgAAAAAEFgAAAAAAFgAAAAAFFgAAAAABFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAAGFgAAAAABFgAAAAADKAAAAAAAFgAAAAADFgAAAAAEFgAAAAAAFgAAAAAFFgAAAAABFgAAAAAAKAAAAAAAFgAAAAAEUgAAAAAAKAAAAAAAKAAAAAAAFgAAAAAAFgAAAAADKAAAAAAAFgAAAAADFgAAAAACFgAAAAAFKAAAAAAAKAAAAAAAKAAAAAAAFgAAAAAGKAAAAAAAKAAAAAAAFgAAAAACUgAAAAAAKAAAAAAAKAAAAAAAFgAAAAAGFgAAAAACFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAGFgAAAAABFgAAAAADFgAAAAAGFgAAAAADFgAAAAABKAAAAAAAFgAAAAAGUgAAAAAAKAAAAAAAFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAGFgAAAAABFgAAAAAGFgAAAAACFgAAAAACFgAAAAAAFgAAAAABKAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAADFgAAAAAAFgAAAAAEFgAAAAADUgAAAAAAFgAAAAACFgAAAAAFFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAADFgAAAAABFgAAAAAEFwAAAAAAFgAAAAADFwAAAAAAFwAAAAAAFgAAAAAGFgAAAAADFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAACFgAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAADFgAAAAAFFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAGFwAAAAAAFwAAAAAAFgAAAAAGFgAAAAAGFgAAAAACUgAAAAAAFgAAAAAFFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAABFgAAAAAFFgAAAAABUgAAAAAAFgAAAAAEFgAAAAABFgAAAAAFFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAEFwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAEFgAAAAACUgAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAAFFgAAAAABFgAAAAABFgAAAAACUgAAAAAAFgAAAAACFwAAAAAAFwAAAAACFwAAAAAEFwAAAAACFgAAAAACFgAAAAAFUgAAAAAAFgAAAAACFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAGFgAAAAABFgAAAAACUgAAAAAAFgAAAAAGFgAAAAAFFwAAAAAHFwAAAAADFwAAAAAAFwAAAAACFgAAAAAAUgAAAAAAFgAAAAABFgAAAAAFFgAAAAABFgAAAAADFgAAAAAFFgAAAAAFFgAAAAAGUgAAAAAAFgAAAAADFgAAAAABFwAAAAAHFwAAAAAAFwAAAAAEFgAAAAADFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAABFgAAAAACFgAAAAAAFgAAAAAFFgAAAAADFgAAAAADUgAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: FgAAAAAAFgAAAAAAFgAAAAAFFgAAAAADFgAAAAAEFgAAAAAEFgAAAAAGUgAAAAAAFgAAAAABFgAAAAABFgAAAAAAFgAAAAABFgAAAAACFgAAAAAFFgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAAUgAAAAAAFgAAAAADFgAAAAAAFgAAAAABFgAAAAAGFgAAAAADUgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAFUgAAAAAAFgAAAAABFgAAAAACFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAGUgAAAAAAFgAAAAADFwAAAAADFwAAAAABFgAAAAACFgAAAAAFUgAAAAAAFgAAAAAEdgAAAAADFgAAAAAFUgAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAABFgAAAAABUgAAAAAAFgAAAAAGFwAAAAAEFwAAAAACFwAAAAAHFgAAAAACUgAAAAAAFgAAAAACdgAAAAABFwAAAAADUgAAAAAAFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAFFgAAAAADUgAAAAAAFgAAAAACFgAAAAACFwAAAAAHFwAAAAAAFgAAAAABUgAAAAAAFgAAAAAAdgAAAAACFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAADFgAAAAAAFgAAAAAFFgAAAAAAUgAAAAAAFgAAAAACFgAAAAAFFgAAAAABFgAAAAADFgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAEFwAAAAAFFwAAAAAGUgAAAAAAFgAAAAAGFwAAAAAFFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAADFgAAAAACFgAAAAAEUgAAAAAAFgAAAAAGFgAAAAABFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAACFwAAAAAGFwAAAAAAUgAAAAAAFgAAAAAGFgAAAAAFFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAABFgAAAAAGFwAAAAADUgAAAAAAFwAAAAACFgAAAAAEFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFwAAAAAEFwAAAAABUgAAAAAAFgAAAAAGFgAAAAAFFwAAAAAHUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAGFgAAAAACFgAAAAAFFgAAAAAFFgAAAAADFgAAAAACFgAAAAAGFgAAAAAFFwAAAAAGFwAAAAAFFwAAAAAAUgAAAAAAFgAAAAAAFwAAAAADFwAAAAADFwAAAAADFwAAAAAEFgAAAAAEFwAAAAAHFwAAAAAGFgAAAAADFgAAAAACFgAAAAADFwAAAAAEFwAAAAABFwAAAAABFwAAAAAHUgAAAAAAFgAAAAAAFgAAAAAFFgAAAAADFgAAAAAE
+ version: 6
+ -1,2:
+ ind: -1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAA
+ version: 6
+ -1,3:
+ ind: -1,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: FgAAAAAAFgAAAAACFgAAAAAEFgAAAAADFgAAAAACFgAAAAAGFgAAAAAFFgAAAAACFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAFFgAAAAABUgAAAAAAFgAAAAAFFgAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAACFgAAAAAEFwAAAAAAFgAAAAACFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAGFwAAAAAEUgAAAAAAFgAAAAAEFgAAAAADFgAAAAAAFgAAAAADFwAAAAAFFwAAAAACFgAAAAAFFgAAAAACFgAAAAAFFgAAAAAFFgAAAAAEFwAAAAAAFgAAAAAGFgAAAAAAFgAAAAACUgAAAAAAFgAAAAABFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAACFgAAAAAEFwAAAAAHFgAAAAAGFgAAAAAFFgAAAAAFFgAAAAAGFgAAAAAAFgAAAAACUgAAAAAAFgAAAAAEFgAAAAAAFgAAAAABFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAGFgAAAAABFgAAAAAGFgAAAAADFgAAAAABFgAAAAAAFgAAAAAEUgAAAAAAFgAAAAADFgAAAAABFgAAAAAFFgAAAAAAFgAAAAAEFgAAAAADFgAAAAAFUgAAAAAAFgAAAAAEFgAAAAACFgAAAAABFgAAAAADFgAAAAAEFgAAAAACFgAAAAABUgAAAAAAFgAAAAAEFgAAAAAAFgAAAAAGFgAAAAABFgAAAAAAFgAAAAAEFgAAAAAGUgAAAAAAFgAAAAAEFgAAAAAGFgAAAAABFgAAAAABFgAAAAADFgAAAAACFgAAAAAEUgAAAAAAFgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAAAFgAAAAADFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAACFgAAAAABFgAAAAAFFgAAAAABFgAAAAABFgAAAAAAFgAAAAAEUgAAAAAAFgAAAAAEFgAAAAAFFgAAAAACFgAAAAAEFgAAAAADFgAAAAAAFgAAAAAGUgAAAAAAFgAAAAAAFgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAFFgAAAAAGUgAAAAAAFgAAAAADFgAAAAABQgAAAAAAFgAAAAAEfAAAAAAAFgAAAAACFgAAAAAAUgAAAAAAFgAAAAAAQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAEUgAAAAAAFgAAAAAAQgAAAAAAfAAAAAABRAAAAAAAeQAAAAAAFgAAAAAAFgAAAAABUgAAAAAAFgAAAAAFQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAAUgAAAAAAFgAAAAAFQgAAAAAARAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAACUgAAAAAAFgAAAAABQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAGUgAAAAAAFgAAAAAFQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAABUgAAAAAAFgAAAAABFgAAAAACQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAGFgAAAAAEUgAAAAAAFgAAAAAEFgAAAAACQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAABFgAAAAABUgAAAAAA
+ version: 6
+ 0,3:
+ ind: 0,3
+ tiles: FgAAAAADFgAAAAAGFgAAAAAGFgAAAAAFFgAAAAAGFgAAAAAFFgAAAAAFUgAAAAAAFgAAAAADFgAAAAACFgAAAAAFFgAAAAAGFgAAAAAEFgAAAAAAFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: FgAAAAACFgAAAAAFFgAAAAADFgAAAAAEFgAAAAACFwAAAAACFwAAAAADFwAAAAAAFwAAAAAGFwAAAAAHFwAAAAAEUgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAFFgAAAAACFgAAAAAEFgAAAAAAFgAAAAAAFgAAAAADFgAAAAABUgAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAFFgAAAAACFgAAAAAEFgAAAAACFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAFFgAAAAAGUgAAAAAAFgAAAAABFgAAAAACFgAAAAAFFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAADFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAADFgAAAAAFFgAAAAAAFgAAAAAFFgAAAAAEUgAAAAAAFgAAAAAEFgAAAAABFgAAAAAEFgAAAAAEFgAAAAAAFgAAAAAGFgAAAAAGFgAAAAABUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAACFgAAAAACFgAAAAAAFgAAAAADFgAAAAAEFgAAAAAEFgAAAAAFUgAAAAAAFgAAAAABFgAAAAAEFgAAAAABFgAAAAAAFgAAAAAFFgAAAAACFgAAAAAAUgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAEFgAAAAAGFgAAAAAEFgAAAAACFgAAAAAEUgAAAAAAFgAAAAAAFgAAAAACFgAAAAAGFgAAAAAAFgAAAAAGFgAAAAACFgAAAAADUgAAAAAAFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAACUgAAAAAAFgAAAAAEFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAFFgAAAAACFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAFFgAAAAABFgAAAAABFgAAAAAAFgAAAAAFFgAAAAAGUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAFFgAAAAACUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAFUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAEQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAEUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABQgAAAAAAQgAAAAAARAAAAAAAQgAAAAAAQgAAAAAAFgAAAAAEUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAEQgAAAAAAQgAAAAAAQgAAAAAAFgAAAAAFFgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,3:
+ ind: 1,3
+ tiles: FgAAAAAEFgAAAAACFgAAAAAFFgAAAAAGFgAAAAACFgAAAAACFgAAAAAFUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: FgAAAAABFgAAAAABFgAAAAACUgAAAAAAFwAAAAAAFgAAAAAFFgAAAAAFFgAAAAADFgAAAAAEFgAAAAACFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAADFgAAAAADFgAAAAAGFgAAAAAGFgAAAAAFKAAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFgAAAAAFFgAAAAACFgAAAAABFgAAAAACFgAAAAAGFgAAAAAGFgAAAAAGFgAAAAAAFgAAAAABFgAAAAACFgAAAAAGFgAAAAAEKAAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAEFgAAAAAGFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAGKAAAAAAAKAAAAAAAKAAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAACFgAAAAAFFgAAAAAAFgAAAAACFgAAAAABFgAAAAAAFgAAAAADFgAAAAAGKAAAAAAAKAAAAAAAFgAAAAAFUgAAAAAAFgAAAAADFgAAAAADFwAAAAAAFgAAAAABFgAAAAADFgAAAAACFgAAAAAEFgAAAAADFgAAAAADFgAAAAAFFgAAAAABFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFgAAAAAEFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAFFgAAAAABFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAFFgAAAAAFFgAAAAAEFgAAAAADFgAAAAAEFgAAAAAAFgAAAAAFUgAAAAAAFgAAAAAGFgAAAAACFgAAAAAAFgAAAAAFFgAAAAADFgAAAAAFFgAAAAAGUgAAAAAAFgAAAAABRwAAAAADRwAAAAABSAAAAAAARwAAAAADFgAAAAAFFgAAAAAFUgAAAAAAFgAAAAACFgAAAAAEFgAAAAADFgAAAAAGFgAAAAAFFgAAAAABFgAAAAAAUgAAAAAAFgAAAAABFgAAAAACSAAAAAACSAAAAAADRwAAAAADSAAAAAAAFgAAAAADUgAAAAAAFgAAAAADFgAAAAADFgAAAAADFgAAAAAFFgAAAAABFgAAAAAEFgAAAAAAUgAAAAAAFgAAAAAGRwAAAAABSAAAAAACSAAAAAAASAAAAAACRwAAAAADFgAAAAAGUgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAFFgAAAAACFgAAAAAEFgAAAAACFgAAAAAGUgAAAAAA
+ version: 6
+ 3,0:
+ ind: 3,0
+ tiles: FgAAAAADFgAAAAACFgAAAAAEFgAAAAAEFgAAAAADFwAAAAAAFgAAAAAEUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAAEFgAAAAAGFgAAAAADFgAAAAAFFgAAAAADFwAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAABFgAAAAAAFgAAAAABFgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAGFgAAAAABFgAAAAAGFgAAAAAAFgAAAAAFFgAAAAADFgAAAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,-1:
+ ind: 2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA
+ version: 6
+ 3,-1:
+ ind: 3,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,1:
+ ind: 3,1
+ tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,2:
+ ind: 3,2
+ tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: FgAAAAAAFgAAAAAFFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAGFwAAAAACFwAAAAABFgAAAAAFUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAAGFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAFFgAAAAAEFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAEFgAAAAABFgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAAAFgAAAAABFgAAAAAGFgAAAAAFFgAAAAACFgAAAAACFgAAAAAEUgAAAAAAFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAADFgAAAAACFgAAAAAEFgAAAAAGUgAAAAAAFgAAAAABFgAAAAACFgAAAAAEFgAAAAACFgAAAAABFgAAAAAAFgAAAAAFUgAAAAAAFgAAAAACFgAAAAADFgAAAAAGFgAAAAADFgAAAAACFgAAAAAFFgAAAAAEUgAAAAAAFgAAAAAEFgAAAAABFgAAAAAEFgAAAAACFgAAAAACFgAAAAABFgAAAAAGUgAAAAAAFgAAAAAEFgAAAAABFgAAAAACFgAAAAADFgAAAAABFgAAAAABFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: FgAAAAAAFgAAAAAGFgAAAAAEFgAAAAACFgAAAAAGFgAAAAAEFgAAAAADUgAAAAAAFgAAAAACFgAAAAAEFgAAAAAAFgAAAAAGFgAAAAADFgAAAAADFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAAFFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdgAAAAAAdgAAAAABFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdgAAAAADdgAAAAABFgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAdgAAAAAAdgAAAAAAFgAAAAAEUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFgAAAAADFgAAAAAAFgAAAAAGUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAAFFwAAAAAHFwAAAAAGFwAAAAABFwAAAAAFFgAAAAAFFgAAAAAEFgAAAAAEFgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAFwAAAAADFwAAAAABFwAAAAAGFgAAAAAAFgAAAAACFgAAAAAEFgAAAAACFgAAAAABFwAAAAAHUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA
+ version: 6
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt1
+ decals:
+ 8: 6.955441,21.068565
+ 69: 5.569477,24.342073
+ 73: 21.493462,30.781818
+ 87: 16.244232,47.723083
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt2
+ decals:
+ 72: 21.571587,25.092073
+ 75: 38.670036,30.328693
+ 76: 32.59149,34.61899
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt3
+ decals:
+ 68: 2.0071354,12.534689
+ 77: 28.294615,35.52524
+ 83: 1.8725519,39.603367
+ 92: 40.1997,39.904606
+ 93: 37.775063,38.35773
+ 94: 27.454536,18.497276
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt4
+ decals:
+ 71: 14.05264,26.857698
+ 84: 8.417587,42.316833
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt5
+ decals:
+ 12: 7.0134563,30.499578
+ 67: 8.765746,13.144064
+ 78: 24.413132,39.478367
+ 85: 13.773578,47.660583
+ 90: 12.267979,34.57054
+ 91: 44.902824,38.38898
+ 95: 24.313911,21.591026
+ 96: 21.396156,20.325401
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt6
+ decals:
+ 7: 0.908566,19.95919
+ 79: 20.816694,39.134617
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt7
+ decals:
+ 5: 10,18
+ 80: 12.790198,39.33774
+ 86: 21.884857,42.17621
+ 97: 18.589165,18.387901
+ 98: 34.005077,18.028526
+ 99: 4.6335278,15.488716
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt8
+ decals:
+ 6: 7.1637583,18.068565
+ 81: 8.813416,38.415867
+ 88: 0.46817493,47.80121
+ 89: 8.544811,34.586166
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt9
+ decals:
+ 9: 13.433517,19.162315
+ 70: 0.6944771,26.826448
+ 74: 30.17049,31.359943
+ 82: 5.810052,38.259617
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 0: 9,45
+ 1: 13,42
+ 2: 10,42
+ 3: 13,45
+ 4: 10,32
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock06
+ decals:
+ 10: 2.1520143,30.343328
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock07
+ decals:
+ 11: 10.29961,31.483953
+ - node:
+ color: '#DE3A3A96'
+ id: rune6
+ decals:
+ 66: 8.952158,26.184813
+ - node:
+ color: '#79150031'
+ id: splatter
+ decals:
+ 13: 10.903494,45.563152
+ 14: 10.950369,45.969402
+ 15: 11.184744,45.906902
+ 16: 11.590994,45.422527
+ 17: 11.590994,45.422527
+ 18: 10.965994,45.610027
+ 19: 10.997244,44.969402
+ 20: 11.231619,45.047527
+ 21: 11.356619,45.344402
+ 22: 10.825369,45.656902
+ 23: 11.184744,45.922527
+ 24: 11.231619,45.891277
+ 25: 10.512869,45.563152
+ 26: 11.684744,44.078777
+ 27: 11.747244,43.797527
+ 28: 12.044119,43.328777
+ 29: 11.778494,43.281902
+ 30: 11.887869,43.688152
+ 31: 12.200369,43.735027
+ 32: 12.137869,44.141277
+ 33: 11.669119,43.656902
+ 34: 10.637869,43.781902
+ 35: 10.544119,43.781902
+ 36: 10.669119,43.453777
+ 37: 10.590994,43.485027
+ 38: 11.419119,45.797527
+ 39: 11.825369,45.813152
+ 40: 11.950369,46.219402
+ 41: 11.200369,45.672527
+ 42: 11.247244,45.922527
+ 43: 10.590994,46.125652
+ 44: 11.481619,45.422527
+ 45: 11.684744,45.672527
+ 46: 11.512869,45.141277
+ 47: 11.825369,45.281902
+ 48: 11.684744,45.438152
+ 49: 10.950369,45.735027
+ 50: 10.262869,45.797527
+ 51: 10.028494,44.891277
+ 52: 9.903494,44.891277
+ 53: 9.887869,45.500652
+ 54: 10.153494,45.344402
+ 55: 10.809744,45.391277
+ 56: 10.934744,45.422527
+ 57: 11.262869,45.531902
+ 58: 11.184744,46.031902
+ 59: 10.872244,45.813152
+ 60: 11.090994,45.563152
+ 61: 10.731619,46.031902
+ 62: 10.075369,44.000652
+ 63: 9.856619,43.703777
+ 64: 10.059744,44.281902
+ 65: 10.419119,43.813152
+ - node:
+ cleanable: True
+ color: '#79150031'
+ id: splatter
+ decals:
+ 108: 35.155014,12.447503
+ 109: 34.811264,12.353753
+ 110: 34.85814,12.744378
+ 111: 35.342514,12.463128
+ 112: 35.155014,12.228753
+ 113: 34.42064,12.572503
+ 114: 34.123764,13.025628
+ 115: 34.17064,13.322503
+ 116: 34.342514,12.900628
+ 117: 33.85814,12.994378
+ 118: 33.79564,13.338128
+ 119: 33.63939,13.838128
+ 120: 33.70189,13.603753
+ 121: 33.311264,13.900628
+ 122: 33.717514,14.306878
+ 123: 34.10814,14.650628
+ 124: 33.936264,15.135003
+ 125: 34.405014,14.947503
+ 126: 33.79564,14.510003
+ 127: 33.70189,14.088128
+ 128: 34.29564,14.541253
+ 129: 34.623764,15.010003
+ 130: 35.26439,15.072503
+ 131: 35.405014,14.931878
+ 132: 34.623764,15.338128
+ 133: 35.592514,14.994378
+ 134: 35.79564,14.447503
+ 135: 36.13939,15.025628
+ 136: 36.436264,14.181878
+ 137: 36.592514,13.869378
+ 138: 35.780014,14.697503
+ 139: 36.467514,14.072503
+ 140: 35.748764,14.588128
+ 141: 36.07689,13.963128
+ 142: 36.092514,13.291253
+ 143: 35.57689,13.103753
+ 144: 35.70189,13.088128
+ 145: 35.38939,12.478753
+ 146: 35.92064,13.260003
+ 147: 36.061264,13.666253
+ 148: 36.217514,12.822503
+ 149: 35.48314,12.650628
+ 150: 35.98314,12.353753
+ 151: 34.842514,12.744378
+ 152: 34.23314,12.853753
+ 153: 34.04564,13.447503
+ 154: 33.51439,13.650628
+ - node:
+ cleanable: True
+ color: '#DE3A3A28'
+ id: splatter
+ decals:
+ 100: 34.151947,12.931878
+ 101: 33.542572,13.775628
+ 102: 34.089447,14.588128
+ 103: 34.886322,15.025628
+ 104: 35.714447,14.681878
+ 105: 36.214447,14.119378
+ 106: 35.933197,13.228753
+ 107: 35.026947,12.447503
+ - type: RadiationGridResistance
+ - type: LoadedMap
+ - type: SpreaderGrid
+ - type: GridTree
+ - type: MovedGrids
+ - type: GridPathfinding
+- proto: AirlockMining
+ entities:
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+- proto: AirlockMiningGlassLocked
+ entities:
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 19.5,43.5
+ parent: 1653
+- proto: AirlockMiningLocked
+ entities:
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 3.5,43.5
+ parent: 1653
+- proto: AltarFangs
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 1653
+- proto: BananiumOre1
+ entities:
+ - uid: 436
+ components:
+ - type: Transform
+ parent: 435
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: Barricade
+ entities:
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 14.5,12.5
+ parent: 1653
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 1653
+ - uid: 369
+ components:
+ - type: Transform
+ pos: 51.5,0.5
+ parent: 1653
+- proto: BikeHorn
+ entities:
+ - uid: 201
+ components:
+ - type: Transform
+ parent: 200
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CandleRedSmallInfinite
+ entities:
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 10.514658,25.137938
+ parent: 1653
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 10.655283,25.247313
+ parent: 1653
+ - uid: 126
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 9.436043,27.291958
+ parent: 1653
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 9.83762,26.231688
+ parent: 1653
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 9.009495,26.278563
+ parent: 1653
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 10.467783,25.325438
+ parent: 1653
+ - uid: 212
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 9.976189,27.010708
+ parent: 1653
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 8.86887,27.028563
+ parent: 1653
+- proto: Chair
+ entities:
+ - uid: 399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,34.5
+ parent: 1653
+- proto: ChairPilotSeat
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,44.5
+ parent: 1653
+ - uid: 466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,44.5
+ parent: 1653
+- proto: ChairRitual
+ entities:
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 9.5,28.5
+ parent: 1653
+- proto: CigaretteCapsaicinOil
+ entities:
+ - uid: 322
+ components:
+ - type: Transform
+ pos: 31.649122,18.823664
+ parent: 1653
+- proto: ClothingHeadHatFlowerWreath
+ entities:
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 27.441708,39.437607
+ parent: 1653
+- proto: ClothingHeadHatGladiator
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ parent: 6
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingNeckCloakTrans
+ entities:
+ - uid: 332
+ components:
+ - type: Transform
+ parent: 331
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesClown
+ entities:
+ - uid: 202
+ components:
+ - type: Transform
+ parent: 200
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitGladiator
+ entities:
+ - uid: 215
+ components:
+ - type: Transform
+ parent: 214
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitMonasticRobeDark
+ entities:
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 36.46349,13.791253
+ parent: 1653
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 36.27599,15.338128
+ parent: 1653
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 35.46349,15.619378
+ parent: 1653
+ - uid: 272
+ components:
+ - type: Transform
+ pos: 34.05724,14.385003
+ parent: 1653
+ - uid: 273
+ components:
+ - type: Transform
+ pos: 34.58849,15.213128
+ parent: 1653
+ - uid: 357
+ components:
+ - type: Transform
+ pos: 35.58849,13.213128
+ parent: 1653
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 34.697865,13.588128
+ parent: 1653
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 36.80724,14.744378
+ parent: 1653
+- proto: Cobweb1
+ entities:
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 24.5,10.5
+ parent: 1653
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 32.5,16.5
+ parent: 1653
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 0.5,36.5
+ parent: 1653
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 28.5,32.5
+ parent: 1653
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 1653
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 0.5,40.5
+ parent: 1653
+ - uid: 458
+ components:
+ - type: Transform
+ pos: 2.5,46.5
+ parent: 1653
+- proto: Cobweb2
+ entities:
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 1653
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 26.5,32.5
+ parent: 1653
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 34.5,3.5
+ parent: 1653
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 22.5,10.5
+ parent: 1653
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 14.5,40.5
+ parent: 1653
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 1653
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 24.5,2.5
+ parent: 1653
+- proto: ComfyChair
+ entities:
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 13.5,27.5
+ parent: 1653
+- proto: ConveyorBelt
+ entities:
+ - uid: 101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,10.5
+ parent: 1653
+ - uid: 102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,10.5
+ parent: 1653
+ - uid: 103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,10.5
+ parent: 1653
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,10.5
+ parent: 1653
+ - uid: 105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,10.5
+ parent: 1653
+ - uid: 106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,10.5
+ parent: 1653
+- proto: CrateCoffin
+ entities:
+ - uid: 331
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 1653
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 332
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 22.5,32.5
+ parent: 1653
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 436
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 23.5,32.5
+ parent: 1653
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - invalid
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 20.5,30.5
+ parent: 1653
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 442
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrateEmptySpawner
+ entities:
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 4.5,40.5
+ parent: 1653
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1653
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 1653
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 13.5,36.5
+ parent: 1653
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+- proto: CrateWoodenGrave
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 27.5,39.5
+ parent: 1653
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 7
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 42.5,39.5
+ parent: 1653
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 202
+ - 201
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 28.5,39.5
+ parent: 1653
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 215
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 26.5,39.5
+ parent: 1653
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 232
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrystalSpawner
+ entities:
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1653
+ - uid: 131
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 1653
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 30.5,35.5
+ parent: 1653
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 19.5,21.5
+ parent: 1653
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 20.5,20.5
+ parent: 1653
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 13.5,38.5
+ parent: 1653
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 9.5,40.5
+ parent: 1653
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 30.5,36.5
+ parent: 1653
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 31.5,36.5
+ parent: 1653
+- proto: DoubleEmergencyNitrogenTankFilled
+ entities:
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 21.254128,38.485172
+ parent: 1653
+- proto: DresserFilled
+ entities:
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 20.5,44.5
+ parent: 1653
+- proto: FenceMetalCorner
+ entities:
+ - uid: 321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,35.5
+ parent: 1653
+ - uid: 477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,35.5
+ parent: 1653
+- proto: FenceMetalGate
+ entities:
+ - uid: 268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,35.5
+ parent: 1653
+- proto: FenceMetalStraight
+ entities:
+ - uid: 267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,35.5
+ parent: 1653
+ - uid: 293
+ components:
+ - type: Transform
+ pos: 14.5,36.5
+ parent: 1653
+ - uid: 476
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,35.5
+ parent: 1653
+ - uid: 478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,35.5
+ parent: 1653
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 20.5,34.5
+ parent: 1653
+ - uid: 480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,35.5
+ parent: 1653
+- proto: FireBombFuel
+ entities:
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 36.443645,31.673359
+ parent: 1653
+- proto: FloorWaterEntity
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 1653
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 1653
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 1653
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 1653
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 29.5,14.5
+ parent: 1653
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 1653
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 1653
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1653
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 41.5,1.5
+ parent: 1653
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 44.5,1.5
+ parent: 1653
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 45.5,1.5
+ parent: 1653
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 44.5,0.5
+ parent: 1653
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 45.5,0.5
+ parent: 1653
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 47.5,0.5
+ parent: 1653
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 48.5,0.5
+ parent: 1653
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 1653
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 30.5,13.5
+ parent: 1653
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 29.5,13.5
+ parent: 1653
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 28.5,12.5
+ parent: 1653
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 27.5,16.5
+ parent: 1653
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 1653
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 1653
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 1653
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 1653
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 14.5,1.5
+ parent: 1653
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 1653
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 1653
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 1653
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 1653
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 1653
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 46.5,1.5
+ parent: 1653
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 46.5,0.5
+ parent: 1653
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 24.5,15.5
+ parent: 1653
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 14.5,4.5
+ parent: 1653
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 27.5,12.5
+ parent: 1653
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 1653
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1653
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1653
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 1653
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 1653
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 1653
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 1653
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 1653
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 1653
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 26.5,15.5
+ parent: 1653
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 1653
+ - uid: 235
+ components:
+ - type: Transform
+ pos: 49.5,0.5
+ parent: 1653
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1653
+ - uid: 242
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1653
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1653
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 1653
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1653
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 40.5,2.5
+ parent: 1653
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1653
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 1653
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1653
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 42.5,2.5
+ parent: 1653
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 42.5,1.5
+ parent: 1653
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1653
+ - uid: 359
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 1653
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 15.5,0.5
+ parent: 1653
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1653
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 43.5,2.5
+ parent: 1653
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 1653
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1653
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 43.5,1.5
+ parent: 1653
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 41.5,2.5
+ parent: 1653
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 1653
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 1653
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 1653
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 27.5,15.5
+ parent: 1653
+ - uid: 446
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 1653
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 25.5,15.5
+ parent: 1653
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 1653
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1653
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1653
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 44.5,2.5
+ parent: 1653
+ - uid: 468
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1653
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 1653
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1653
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 1653
+- proto: FloraRockSolid01
+ entities:
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 1.4643247,15.527116
+ parent: 1653
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 25.553497,34.710487
+ parent: 1653
+ - uid: 281
+ components:
+ - type: Transform
+ pos: 7.4866443,6.552367
+ parent: 1653
+ - uid: 295
+ components:
+ - type: Transform
+ pos: 0.911531,32.452705
+ parent: 1653
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 21.638557,19.381065
+ parent: 1653
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 3.5664039,19.498943
+ parent: 1653
+- proto: FloraRockSolid02
+ entities:
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 11.966135,14.804356
+ parent: 1653
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 8.535091,20.608318
+ parent: 1653
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 12.087021,32.358955
+ parent: 1653
+- proto: FloraRockSolid03
+ entities:
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 23.53006,1.5159609
+ parent: 1653
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 1.9101539,21.811443
+ parent: 1653
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 44.689724,39.621048
+ parent: 1653
+ - uid: 243
+ components:
+ - type: Transform
+ pos: 21.468937,26.614876
+ parent: 1653
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 9.355139,30.733953
+ parent: 1653
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 35.552525,31.574036
+ parent: 1653
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 5.433075,13.527116
+ parent: 1653
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 1.5647693,8.536742
+ parent: 1653
+- proto: FoodCornTrash
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ pos: 26.81556,20.415936
+ parent: 1653
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 27.367641,20.311768
+ parent: 1653
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 27.388475,19.988852
+ parent: 1653
+ - uid: 249
+ components:
+ - type: Transform
+ pos: 27.638475,20.843018
+ parent: 1653
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 28.055141,20.301352
+ parent: 1653
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 27.482225,20.530518
+ parent: 1653
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 26.930141,20.728436
+ parent: 1653
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 27.84681,20.634686
+ parent: 1653
+- proto: Girder
+ entities:
+ - uid: 351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,45.5
+ parent: 1653
+- proto: hydroponicsSoil
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 1653
+ - uid: 423
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+- proto: LampGold
+ entities:
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 13.291822,27.041958
+ parent: 1653
+- proto: MaintenancePlantSpawner
+ entities:
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 1653
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 1653
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 1653
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 22.5,12.5
+ parent: 1653
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 16.5,13.5
+ parent: 1653
+- proto: MaintenanceToolSpawner
+ entities:
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 39.5,0.5
+ parent: 1653
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 51.5,1.5
+ parent: 1653
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 7.5,32.5
+ parent: 1653
+- proto: MaintenanceWeaponSpawner
+ entities:
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 22.5,0.5
+ parent: 1653
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1653
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 1653
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 34.5,31.5
+ parent: 1653
+ - uid: 320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,7.5
+ parent: 1653
+- proto: MaterialWoodPlank
+ entities:
+ - uid: 442
+ components:
+ - type: Transform
+ parent: 441
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: MiningWindow
+ entities:
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 19.5,47.5
+ parent: 1653
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 3.5,47.5
+ parent: 1653
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+- proto: OreBox
+ entities:
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 2.5,24.5
+ parent: 1653
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 37.5,4.5
+ parent: 1653
+ - uid: 283
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 1653
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 29.496475,8.499265
+ parent: 1653
+ - type: Physics
+ fixedRotation: False
+- proto: OreProcessor
+ entities:
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 24.5,10.5
+ parent: 1653
+- proto: OrganHumanAppendix
+ entities:
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 10.481619,44.360027
+ parent: 1653
+- proto: OrganHumanHeart
+ entities:
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 9.478245,26.669188
+ parent: 1653
+- proto: PaintingSadClown
+ entities:
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 43.5,39.5
+ parent: 1653
+- proto: PaintingSkeletonCigarette
+ entities:
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 1653
+- proto: PlushieLizard
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 35.503193,14.666253
+ parent: 1653
+- proto: PlushiePenguin
+ entities:
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 13.526197,27.541958
+ parent: 1653
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 1653
+- proto: PottedPlantRandom
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 44.5,14.5
+ parent: 1653
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 45.5,14.5
+ parent: 1653
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 42.5,14.5
+ parent: 1653
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 41.5,14.5
+ parent: 1653
+- proto: PoweredSmallLight
+ entities:
+ - uid: 156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,45.5
+ parent: 1653
+- proto: PuddleVomit
+ entities:
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 3.5,45.5
+ parent: 1653
+- proto: Rack
+ entities:
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 18.5,45.5
+ parent: 1653
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 20.5,45.5
+ parent: 1653
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 21.5,34.5
+ parent: 1653
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 10.5,46.5
+ parent: 1653
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 4.5,45.5
+ parent: 1653
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 22.5,34.5
+ parent: 1653
+- proto: Railing
+ entities:
+ - uid: 260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,9.5
+ parent: 1653
+ - uid: 261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,9.5
+ parent: 1653
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,9.5
+ parent: 1653
+ - uid: 327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,9.5
+ parent: 1653
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,9.5
+ parent: 1653
+- proto: RailingCornerSmall
+ entities:
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 1653
+- proto: RandomArtifactSpawner
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 43.5,14.5
+ parent: 1653
+- proto: RandomCargoCorpseSpawner
+ entities:
+ - uid: 274
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+- proto: RandomServiceCorpseSpawner
+ entities:
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 19.5,45.5
+ parent: 1653
+- proto: SalvageMaterialCrateSpawner
+ entities:
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 1653
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+- proto: ShadowTree03
+ entities:
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 19.477606,14.337568
+ parent: 1653
+- proto: SheetSteel1
+ entities:
+ - uid: 457
+ components:
+ - type: Transform
+ pos: 13.481619,44.391277
+ parent: 1653
+- proto: Shovel
+ entities:
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 33.425346,4.383849
+ parent: 1653
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 31.844257,31.05841
+ parent: 1653
+- proto: SignNTMine
+ entities:
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 4.5,43.5
+ parent: 1653
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 20.5,43.5
+ parent: 1653
+- proto: SmallLight
+ entities:
+ - uid: 336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,45.5
+ parent: 1653
+ - uid: 434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,45.5
+ parent: 1653
+- proto: SpawnDungeonLootArmoryClutter
+ entities:
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 21.872705,34.623493
+ parent: 1653
+- proto: SpawnDungeonLootArmoryGuns
+ entities:
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 21.341455,34.654743
+ parent: 1653
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 20.514772,45.54097
+ parent: 1653
+- proto: SpawnDungeonLootArmoryMelee
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 2.6439443,45.462845
+ parent: 1653
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 12.112694,46.119095
+ parent: 1653
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 20.5,38.5
+ parent: 1653
+- proto: SpawnDungeonLootClothesSalvage
+ entities:
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 4.38971,45.707054
+ parent: 1653
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 4.780335,45.425804
+ parent: 1653
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 4.311585,45.28518
+ parent: 1653
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 10.373032,46.62893
+ parent: 1653
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 18.668245,45.62893
+ parent: 1653
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 36.64347,31.557724
+ parent: 1653
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 16.473904,32.216118
+ parent: 1653
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 15.356223,19.703928
+ parent: 1653
+ - uid: 486
+ components:
+ - type: Transform
+ pos: 15.996848,19.969553
+ parent: 1653
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 19.28439,13.351238
+ parent: 1653
+ - uid: 489
+ components:
+ - type: Transform
+ pos: 51.3111,1.6247389
+ parent: 1653
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 39.409256,0.68723893
+ parent: 1653
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 13.68438,26.592575
+ parent: 1653
+- proto: SpawnDungeonLootClutterSalvage
+ entities:
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 38.56884,2.5570703
+ parent: 1653
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 38.75634,2.2445703
+ parent: 1653
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 52.990715,4.2133203
+ parent: 1653
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 51.25634,2.8383203
+ parent: 1653
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 19.488459,3.7289453
+ parent: 1653
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 10.945346,1.4789453
+ parent: 1653
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 42.24788,39.248783
+ parent: 1653
+- proto: SpawnDungeonLootCrateArmoryWeapon
+ entities:
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 15.5,36.5
+ parent: 1653
+- proto: SpawnDungeonLootCrateVehicle
+ entities:
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 13.5,35.5
+ parent: 1653
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 2.3120408,27.839163
+ parent: 1653
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 34.779854,40.54048
+ parent: 1653
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 36.498604,40.587357
+ parent: 1653
+ - uid: 81
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.28539,12.663635
+ parent: 1653
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 34.38923,40.66548
+ parent: 1653
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 27.944347,18.860542
+ parent: 1653
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 25.741222,21.704292
+ parent: 1653
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 25.538097,21.407417
+ parent: 1653
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 26.006847,21.001167
+ parent: 1653
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 0.7339158,25.464163
+ parent: 1653
+- proto: SpawnDungeonLootKitchenTabletop
+ entities:
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 35.5,40.5
+ parent: 1653
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 1653
+- proto: SpawnDungeonLootKitsFirstAid
+ entities:
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 18.627281,40.22798
+ parent: 1653
+- proto: SpawnDungeonLootLatheSalvage
+ entities:
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 3.5,46.5
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableFull
+ entities:
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 20.441277,46.503345
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableSingle
+ entities:
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 10.446371,26.320509
+ parent: 1653
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 9.461996,27.133009
+ parent: 1653
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 8.899496,27.914259
+ parent: 1653
+- proto: SpawnDungeonLootOresFull
+ entities:
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 25.42526,10.603435
+ parent: 1653
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 27.01901,10.68156
+ parent: 1653
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 28.722136,10.68156
+ parent: 1653
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 30.565886,10.68156
+ parent: 1653
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 4.481456,46.63472
+ parent: 1653
+ - uid: 420
+ components:
+ - type: Transform
+ pos: 26.11276,10.447185
+ parent: 1653
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 27.940886,10.415935
+ parent: 1653
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 29.534636,10.40031
+ parent: 1653
+- proto: SpawnDungeonLootOresSingle
+ entities:
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 9.774496,25.508009
+ parent: 1653
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 8.461996,24.742384
+ parent: 1653
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 8.665121,26.117384
+ parent: 1653
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 9.649496,24.539259
+ parent: 1653
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 10.196371,28.008009
+ parent: 1653
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 27.159636,10.27531
+ parent: 1653
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 28.92526,10.30656
+ parent: 1653
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 30.61276,10.322185
+ parent: 1653
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 27.815886,10.71281
+ parent: 1653
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 29.58151,10.74406
+ parent: 1653
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 26.159636,10.728435
+ parent: 1653
+- proto: SpawnDungeonLootPowerCell
+ entities:
+ - uid: 256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.526463,2.5598226
+ parent: 1653
+- proto: SpawnDungeonLootToolsBasicEngineering
+ entities:
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 2.5283308,44.462845
+ parent: 1653
+- proto: SpawnDungeonLootToolsHydroponics
+ entities:
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 28.261398,14.083584
+ parent: 1653
+- proto: SpawnDungeonLootToolsSalvage
+ entities:
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 10.903201,14.442305
+ parent: 1653
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 12.346031,38.88423
+ parent: 1653
+ - uid: 145
+ components:
+ - type: Transform
+ pos: 22.278955,34.623493
+ parent: 1653
+ - uid: 147
+ components:
+ - type: Transform
+ pos: 4.497081,44.525345
+ parent: 1653
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 2.4552736,32.306767
+ parent: 1653
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 26.944347,18.829292
+ parent: 1653
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 10.502149,30.884892
+ parent: 1653
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 21.38833,34.51412
+ parent: 1653
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 22.497705,34.529743
+ parent: 1653
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 20.474266,21.641792
+ parent: 1653
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 22.685205,34.70162
+ parent: 1653
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 21.943016,22.001167
+ parent: 1653
+ - uid: 318
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.74088,0.59107256
+ parent: 1653
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 16.397093,3.6919494
+ parent: 1653
+ - uid: 339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.754223,0.48169756
+ parent: 1653
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 7.4202504,20.83849
+ parent: 1653
+ - uid: 379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.3682,4.3254476
+ parent: 1653
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 5.2736635,40.501125
+ parent: 1653
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 5.6799135,40.688625
+ parent: 1653
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 10.575206,46.494095
+ parent: 1653
+- proto: SpawnMobFrog
+ entities:
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 18.5,44.5
+ parent: 1653
+- proto: SpearBone
+ entities:
+ - uid: 232
+ components:
+ - type: Transform
+ parent: 231
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: SteelBench
+ entities:
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 19.5,13.5
+ parent: 1653
+- proto: TableCarpet
+ entities:
+ - uid: 465
+ components:
+ - type: Transform
+ pos: 13.5,26.5
+ parent: 1653
+- proto: TableReinforced
+ entities:
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 4.5,46.5
+ parent: 1653
+- proto: TableWood
+ entities:
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 39.5,0.5
+ parent: 1653
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 51.5,1.5
+ parent: 1653
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 34.5,40.5
+ parent: 1653
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 5.5,40.5
+ parent: 1653
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 20.5,21.5
+ parent: 1653
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 36.5,40.5
+ parent: 1653
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 35.5,40.5
+ parent: 1653
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 36.5,31.5
+ parent: 1653
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 1653
+- proto: TorsoSkeleton
+ entities:
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 32.5085,20.620539
+ parent: 1653
+- proto: TrashBakedBananaPeel
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 5.484687,26.403563
+ parent: 1653
+- proto: WallMining
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 13.5,46.5
+ parent: 1653
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 18.5,43.5
+ parent: 1653
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 17.5,44.5
+ parent: 1653
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 17.5,46.5
+ parent: 1653
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 18.5,47.5
+ parent: 1653
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 20.5,47.5
+ parent: 1653
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 17.5,45.5
+ parent: 1653
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 4.5,47.5
+ parent: 1653
+ - uid: 160
+ components:
+ - type: Transform
+ pos: 2.5,47.5
+ parent: 1653
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 1.5,44.5
+ parent: 1653
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 5.5,45.5
+ parent: 1653
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 1.5,46.5
+ parent: 1653
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 1.5,45.5
+ parent: 1653
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 10.5,47.5
+ parent: 1653
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 21.5,46.5
+ parent: 1653
+ - uid: 329
+ components:
+ - type: Transform
+ pos: 20.5,43.5
+ parent: 1653
+ - uid: 353
+ components:
+ - type: Transform
+ pos: 9.5,46.5
+ parent: 1653
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 5.5,44.5
+ parent: 1653
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 5.5,46.5
+ parent: 1653
+ - uid: 402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,43.5
+ parent: 1653
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 21.5,45.5
+ parent: 1653
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 21.5,44.5
+ parent: 1653
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 9.5,44.5
+ parent: 1653
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 9.5,45.5
+ parent: 1653
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 12.5,47.5
+ parent: 1653
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 2.5,43.5
+ parent: 1653
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 4.5,43.5
+ parent: 1653
+- proto: WallMiningDiagonal
+ entities:
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 1.5,47.5
+ parent: 1653
+ - uid: 167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,47.5
+ parent: 1653
+ - uid: 168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,43.5
+ parent: 1653
+ - uid: 169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,43.5
+ parent: 1653
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 1653
+ - uid: 275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,47.5
+ parent: 1653
+ - uid: 397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,43.5
+ parent: 1653
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 17.5,47.5
+ parent: 1653
+ - uid: 493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,47.5
+ parent: 1653
+ - uid: 494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,43.5
+ parent: 1653
+ - uid: 495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,43.5
+ parent: 1653
+- proto: WallWood
+ entities:
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 31.5,19.5
+ parent: 1653
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 43.5,39.5
+ parent: 1653
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 31.5,21.5
+ parent: 1653
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 1653
+ - uid: 324
+ components:
+ - type: Transform
+ pos: 33.5,21.5
+ parent: 1653
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 33.5,19.5
+ parent: 1653
+ - uid: 408
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 1653
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 1653
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 1653
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 2.5,46.5
+ parent: 1653
+- proto: WoodDoor
+ entities:
+ - uid: 407
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 1653
+- proto: WoodenSign
+ entities:
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 1.5555744,26.347673
+ parent: 1653
+- proto: WoodenSignRight
+ entities:
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 11.898959,14.345065
+ parent: 1653
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 9.503841,22.358318
+ parent: 1653
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 25.205534,32.33467
+ parent: 1653
+ - uid: 451
+ components:
+ - type: Transform
+ pos: 5.5491443,7.271117
+ parent: 1653
+- proto: WoodenSupport
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 10.5,10.5
+ parent: 1653
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 38.5,16.5
+ parent: 1653
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 8.5,32.5
+ parent: 1653
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 1.5,36.5
+ parent: 1653
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 34.5,6.5
+ parent: 1653
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 24.5,6.5
+ parent: 1653
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 13.5,22.5
+ parent: 1653
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 2.5,28.5
+ parent: 1653
+ - uid: 207
+ components:
+ - type: Transform
+ pos: 0.5,28.5
+ parent: 1653
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 20.5,24.5
+ parent: 1653
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 12.5,10.5
+ parent: 1653
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 22.5,10.5
+ parent: 1653
+ - uid: 422
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 1653
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 22.5,40.5
+ parent: 1653
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+ - uid: 462
+ components:
+ - type: Transform
+ pos: 53.5,4.5
+ parent: 1653
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 36.5,4.5
+ parent: 1653
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 8.5,36.5
+ parent: 1653
+- proto: WoodenSupportBeam
+ entities:
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 29.5,1.5
+ parent: 1653
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 33.5,10.5
+ parent: 1653
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 1653
+ - uid: 307
+ components:
+ - type: Transform
+ pos: 14.5,20.5
+ parent: 1653
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 17.5,27.5
+ parent: 1653
+- proto: WoodenSupportWall
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 34.5,4.5
+ parent: 1653
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 27.5,1.5
+ parent: 1653
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 28.5,1.5
+ parent: 1653
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 32.5,2.5
+ parent: 1653
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 32.5,3.5
+ parent: 1653
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 30.5,1.5
+ parent: 1653
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 32.5,0.5
+ parent: 1653
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1653
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1653
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1653
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 1653
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 1653
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 32.5,1.5
+ parent: 1653
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 31.5,3.5
+ parent: 1653
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 1653
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 38.5,40.5
+ parent: 1653
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 34.5,10.5
+ parent: 1653
+ - uid: 142
+ components:
+ - type: Transform
+ pos: 34.5,9.5
+ parent: 1653
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 12.5,20.5
+ parent: 1653
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 15.5,20.5
+ parent: 1653
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 32.5,40.5
+ parent: 1653
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 50.5,0.5
+ parent: 1653
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 30.5,3.5
+ parent: 1653
+ - uid: 237
+ components:
+ - type: Transform
+ pos: 25.5,3.5
+ parent: 1653
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 25.5,4.5
+ parent: 1653
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 18.5,1.5
+ parent: 1653
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 29.5,3.5
+ parent: 1653
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 13.5,6.5
+ parent: 1653
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 21.5,6.5
+ parent: 1653
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 1653
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 6.5,40.5
+ parent: 1653
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 0.5,38.5
+ parent: 1653
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 14.5,30.5
+ parent: 1653
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1653
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 26.5,30.5
+ parent: 1653
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 22.5,3.5
+ parent: 1653
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 21.5,3.5
+ parent: 1653
+ - uid: 344
+ components:
+ - type: Transform
+ pos: 23.5,3.5
+ parent: 1653
+ - uid: 345
+ components:
+ - type: Transform
+ pos: 24.5,3.5
+ parent: 1653
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 20.5,1.5
+ parent: 1653
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 21.5,1.5
+ parent: 1653
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 28.5,3.5
+ parent: 1653
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 26.5,1.5
+ parent: 1653
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 19.5,1.5
+ parent: 1653
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 26.5,32.5
+ parent: 1653
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 54.5,4.5
+ parent: 1653
+- proto: WoodenSupportWallBroken
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 27.5,3.5
+ parent: 1653
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 1653
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1653
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 1653
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 20.5,3.5
+ parent: 1653
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 39.5,2.5
+ parent: 1653
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 50.5,1.5
+ parent: 1653
+...
diff --git a/Resources/Maps/_NF/Dungeon/lava_brig.yml b/Resources/Maps/_NF/Dungeon/lava_brig.yml
new file mode 100644
index 00000000000..7c95ca09250
--- /dev/null
+++ b/Resources/Maps/_NF/Dungeon/lava_brig.yml
@@ -0,0 +1,13213 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 15: FloorBasalt
+ 30: FloorDark
+ 34: FloorDarkMini
+ 35: FloorDarkMono
+ 43: FloorElevatorShaft
+ 55: FloorGreenCircuit
+ 63: FloorLino
+ 78: FloorReinforced
+ 85: FloorShuttleOrange
+ 92: FloorSteel
+ 102: FloorSteelMini
+ 103: FloorSteelMono
+ 107: FloorTechMaint
+ 111: FloorWhite
+ 115: FloorWhiteMini
+ 121: FloorWood
+ 125: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 588
+ components:
+ - type: MetaData
+ - type: Transform
+ - type: Map
+ - type: PhysicsMap
+ - type: Broadphase
+ - type: OccluderTree
+ - type: MapGrid
+ chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: XAAAAAADXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABfQAAAAAADwAAAAAAHgAAAAABDwAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAADawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAAHgAAAAACDwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABVQAAAAAAZwAAAAACXAAAAAAAZwAAAAACfQAAAAAAHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAACHgAAAAACVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAfQAAAAAAHgAAAAABIwAAAAACfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABHgAAAAADVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAXAAAAAACHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAHgAAAAABVQAAAAAAZgAAAAADZgAAAAABZgAAAAABfQAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAZwAAAAABXAAAAAABZwAAAAACfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABfQAAAAAAHgAAAAADfQAAAAAAHgAAAAADHgAAAAADVQAAAAAAawAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAADeQAAAAAAeQAAAAADVQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAACeQAAAAACVQAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAADeQAAAAADeQAAAAACeQAAAAADVQAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAeQAAAAABVQAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: HgAAAAAAHgAAAAADfQAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAeQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAXAAAAAABawAAAAAAHgAAAAACfQAAAAAADwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAXAAAAAADZgAAAAAAZgAAAAABZgAAAAADXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAACZgAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAHgAAAAAAfQAAAAAADwAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAABZgAAAAABZgAAAAABZgAAAAABXAAAAAADVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAABVQAAAAAAXAAAAAADXAAAAAADZwAAAAAAVQAAAAAAHgAAAAAADwAAAAAAHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAACcwAAAAADVQAAAAAAXAAAAAAAXAAAAAABZwAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAADcwAAAAABVQAAAAAAZwAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAADHgAAAAACHgAAAAADVQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAADVQAAAAAAZwAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACVQAAAAAAXAAAAAABXAAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: XAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADXAAAAAADVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABXAAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAZwAAAAAAXAAAAAABZwAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAABVQAAAAAATgAAAAAAfQAAAAAAIwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADZgAAAAADZgAAAAAAZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAKwAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAZgAAAAACZgAAAAABZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfQAAAAAAZwAAAAADXAAAAAABZwAAAAACVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAABZgAAAAACZgAAAAACZgAAAAAAZgAAAAADZgAAAAACXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAADZgAAAAABZgAAAAACZgAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAABZgAAAAADZgAAAAAAZgAAAAABXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: XAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACawAAAAAAVQAAAAAAXAAAAAADZgAAAAACZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAADZgAAAAADZgAAAAADZgAAAAADXAAAAAABVQAAAAAAfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABXAAAAAADVQAAAAAAXAAAAAAAZgAAAAAAZgAAAAACZgAAAAACXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAACVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACZwAAAAACVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADZwAAAAABVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAZwAAAAADXAAAAAACZwAAAAADVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAZwAAAAAAXAAAAAADXAAAAAACVQAAAAAAZwAAAAABXAAAAAABZwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAZwAAAAADXAAAAAADXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
+ version: 6
+ -1,2:
+ ind: -1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
+ version: 6
+ -1,3:
+ ind: -1,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAVQAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACVQAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAABVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAABbwAAAAABfQAAAAAAbwAAAAAAfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAABIwAAAAABIwAAAAACawAAAAAAIwAAAAADIwAAAAACIwAAAAABVQAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAABawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAACawAAAAAAIwAAAAAAIwAAAAACIwAAAAADVQAAAAAA
+ version: 6
+ 0,3:
+ ind: 0,3
+ tiles: DwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAAAawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: awAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZgAAAAABfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAACZgAAAAAAZgAAAAABXAAAAAACawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAADZgAAAAADZgAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAACZgAAAAABZgAAAAADZgAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACZgAAAAAAZgAAAAADZgAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADZgAAAAABZgAAAAABZgAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACZgAAAAADZgAAAAABZgAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACawAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADVQAAAAAAawAAAAAAXAAAAAABawAAAAAAawAAAAAAawAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACIgAAAAABIgAAAAADXAAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABIgAAAAAAIgAAAAABXAAAAAABVQAAAAAA
+ version: 6
+ 1,3:
+ ind: 1,3
+ tiles: awAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,-1:
+ ind: 2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: HgAAAAAAHgAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAACXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAADZgAAAAABXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,3:
+ ind: 2,3
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#52B4E996'
+ id: BotGreyscale
+ decals:
+ 680: 30,25
+ 681: 30,24
+ 682: 28,27
+ 683: 28,27
+ 684: 28,28
+ 685: 28,28
+ 686: 30,25
+ 687: 30,24
+ - node:
+ color: '#DE3A3A96'
+ id: BotGreyscale
+ decals:
+ 478: 32,25
+ 479: 32,24
+ 480: 34,25
+ 481: 34,24
+ 482: 16,28
+ 483: 18,28
+ 484: 18,27
+ 485: 16,27
+ 486: 14,25
+ 487: 14,24
+ 488: 12,27
+ 489: 12,28
+ 748: 26,7
+ 749: 32,7
+ 750: 29,9
+ 836: 6,2
+ 837: 10,2
+ 940: 1,9
+ 941: 1,8
+ 942: 1,7
+ 943: 9,9
+ 944: 9,8
+ 945: 9,7
+ 946: 20,10
+ 947: 14,10
+ 948: 14,6
+ 949: 20,6
+ 950: 22,6
+ 951: 22,10
+ 952: 12,10
+ 953: 12,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 194: 21,4
+ 250: 10,44
+ 525: 12,32
+ 543: 4,22
+ 585: 6,40
+ 659: 34,36
+ 675: 30,28
+ 703: 6,16
+ 757: 10,10
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 191: 18,4
+ 251: 12,44
+ 519: 0,32
+ 542: 0,22
+ 582: 0,40
+ 633: 24,36
+ 702: 0,16
+ 754: 0,10
+ 853: 23,4
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 192: 21,0
+ 238: 10,46
+ 272: 14,42
+ 524: 12,30
+ 537: 4,18
+ 584: 6,38
+ 658: 34,34
+ 701: 6,12
+ 755: 10,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSw
+ decals:
+ 193: 18,0
+ 241: 12,46
+ 270: 8,42
+ 518: 0,30
+ 534: 0,18
+ 583: 0,38
+ 632: 24,34
+ 672: 28,24
+ 700: 0,12
+ 756: 0,6
+ 852: 23,0
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineE
+ decals:
+ 202: 21,1
+ 203: 21,2
+ 204: 21,3
+ 239: 10,47
+ 240: 10,48
+ 273: 14,43
+ 501: 0,25
+ 502: 0,26
+ 503: 0,27
+ 535: 4,19
+ 536: 4,21
+ 592: 14,38
+ 593: 14,40
+ 674: 30,27
+ 706: 6,15
+ 707: 6,13
+ 758: 10,9
+ 759: 10,7
+ 926: 5,45
+ 929: 33,36
+ 930: 33,34
+ 931: 10,31
+ 935: 8,10
+ 936: 8,6
+ 937: 7,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineN
+ decals:
+ 197: 19,4
+ 198: 20,4
+ 248: 8,44
+ 249: 9,44
+ 252: 13,44
+ 253: 14,44
+ 506: 0,28
+ 507: 2,28
+ 520: 1,32
+ 523: 11,32
+ 540: 1,22
+ 541: 3,22
+ 634: 25,36
+ 635: 26,36
+ 704: 1,16
+ 705: 5,16
+ 762: 1,10
+ 765: 9,10
+ 846: 24,4
+ 847: 25,4
+ 848: 27,4
+ 849: 28,4
+ 850: 29,4
+ 851: 30,4
+ 927: 3,47
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineS
+ decals:
+ 195: 20,0
+ 196: 19,0
+ 244: 8,46
+ 245: 9,46
+ 246: 13,46
+ 247: 14,46
+ 274: 9,42
+ 275: 10,42
+ 276: 13,42
+ 277: 12,42
+ 504: 0,24
+ 505: 2,24
+ 521: 1,30
+ 522: 11,30
+ 538: 3,18
+ 539: 1,18
+ 636: 25,34
+ 637: 26,34
+ 710: 1,12
+ 711: 5,12
+ 763: 1,6
+ 764: 9,6
+ 840: 25,0
+ 841: 24,0
+ 842: 27,0
+ 843: 28,0
+ 844: 29,0
+ 845: 30,0
+ 928: 3,43
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineW
+ decals:
+ 199: 18,3
+ 200: 18,2
+ 201: 18,1
+ 242: 12,47
+ 243: 12,48
+ 271: 8,43
+ 498: 2,27
+ 499: 2,26
+ 500: 2,25
+ 544: 0,19
+ 545: 0,21
+ 590: 8,40
+ 591: 8,38
+ 673: 28,25
+ 708: 0,13
+ 709: 0,15
+ 760: 0,7
+ 761: 0,9
+ 854: 23,3
+ 855: 23,1
+ 925: 1,45
+ 932: 2,31
+ 933: 2,10
+ 934: 2,6
+ 938: 9,2
+ 939: 30,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 84: 18,36
+ 104: 16,25
+ 336: 9,21
+ 337: 10,22
+ 364: 16,22
+ 374: 21,15
+ 375: 22,16
+ 415: 21,21
+ 421: 22,22
+ 446: 33,21
+ 447: 34,22
+ 490: 12,25
+ 554: 22,9
+ 568: 14,9
+ 610: 22,40
+ 2025: 30,48
+ 2039: 30,44
+ 2058: 29,47
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 85: 16,36
+ 103: 18,25
+ 338: 7,21
+ 339: 6,22
+ 376: 17,15
+ 377: 16,16
+ 414: 19,21
+ 420: 18,22
+ 448: 31,21
+ 449: 30,22
+ 555: 20,9
+ 569: 12,9
+ 611: 16,40
+ 2040: 28,44
+ 2059: 28,47
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 83: 18,34
+ 308: 26,30
+ 332: 9,19
+ 335: 10,18
+ 372: 21,13
+ 373: 22,12
+ 418: 21,19
+ 419: 22,18
+ 452: 33,19
+ 453: 34,18
+ 561: 22,7
+ 562: 14,7
+ 609: 22,38
+ 778: 16,0
+ 779: 5,0
+ 2038: 30,42
+ 2056: 29,46
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 81: 16,34
+ 82: 3,35
+ 309: 14,30
+ 333: 7,19
+ 334: 6,18
+ 370: 17,13
+ 371: 16,12
+ 416: 18,18
+ 417: 19,19
+ 450: 31,19
+ 451: 30,18
+ 493: 14,27
+ 558: 20,7
+ 567: 12,7
+ 608: 16,38
+ 780: 0,0
+ 781: 11,0
+ 2037: 28,42
+ 2057: 28,46
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelEndE
+ decals:
+ 73: 21,39
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelEndW
+ decals:
+ 74: 17,39
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileSteelLineE
+ decals:
+ 1330: 32,2
+ 1332: 31,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 87: 18,35
+ 93: 14,34
+ 94: 14,35
+ 95: 14,36
+ 105: 16,24
+ 286: 17,45
+ 287: 17,46
+ 288: 17,47
+ 323: 27,20
+ 349: 9,20
+ 350: 10,21
+ 351: 10,19
+ 365: 16,21
+ 378: 21,14
+ 379: 22,13
+ 380: 22,15
+ 425: 21,20
+ 426: 22,19
+ 427: 22,21
+ 454: 34,19
+ 455: 34,21
+ 462: 33,20
+ 491: 12,24
+ 559: 22,8
+ 566: 14,8
+ 802: 16,1
+ 806: 5,1
+ 872: 34,0
+ 873: 34,1
+ 874: 34,3
+ 875: 34,4
+ 1328: 33,2
+ 2023: 30,46
+ 2024: 30,47
+ 2041: 30,43
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 75: 18,39
+ 76: 19,39
+ 77: 20,39
+ 86: 17,36
+ 340: 8,21
+ 341: 9,22
+ 342: 7,22
+ 366: 15,22
+ 391: 18,15
+ 392: 19,15
+ 393: 20,15
+ 394: 21,16
+ 395: 20,16
+ 396: 18,16
+ 397: 17,16
+ 422: 20,21
+ 423: 19,22
+ 424: 21,22
+ 458: 31,22
+ 459: 33,22
+ 460: 32,21
+ 556: 21,9
+ 564: 13,9
+ 572: 16,10
+ 573: 18,10
+ 612: 17,40
+ 613: 18,40
+ 614: 21,40
+ 615: 20,40
+ 2026: 29,48
+ 2027: 28,48
+ 2044: 29,44
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineS
+ decals:
+ 78: 18,39
+ 79: 19,39
+ 80: 20,39
+ 89: 17,34
+ 298: 15,30
+ 299: 16,30
+ 300: 17,30
+ 301: 18,30
+ 302: 19,30
+ 303: 21,30
+ 304: 22,30
+ 305: 23,30
+ 306: 24,30
+ 307: 25,30
+ 346: 8,19
+ 347: 7,18
+ 348: 9,18
+ 384: 18,13
+ 385: 19,13
+ 386: 20,13
+ 387: 20,12
+ 388: 21,12
+ 389: 18,12
+ 390: 17,12
+ 431: 20,19
+ 432: 19,18
+ 433: 21,18
+ 463: 32,19
+ 464: 31,18
+ 465: 33,18
+ 557: 21,7
+ 563: 13,7
+ 570: 16,6
+ 571: 18,6
+ 616: 17,38
+ 617: 18,38
+ 618: 21,38
+ 619: 20,38
+ 782: 1,0
+ 783: 2,0
+ 784: 3,0
+ 785: 4,0
+ 786: 0,3
+ 787: 1,3
+ 788: 2,3
+ 789: 3,3
+ 790: 4,3
+ 791: 5,3
+ 792: 12,0
+ 793: 13,0
+ 794: 14,0
+ 795: 15,0
+ 796: 11,3
+ 797: 12,3
+ 798: 13,3
+ 799: 14,3
+ 800: 15,3
+ 801: 16,3
+ 2043: 29,42
+ - node:
+ color: '#D4D4D496'
+ id: BrickTileSteelLineW
+ decals:
+ 1329: 33,2
+ 1331: 32,2
+ 1333: 31,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 88: 16,35
+ 90: 20,34
+ 91: 20,35
+ 92: 20,36
+ 102: 18,24
+ 289: 21,45
+ 290: 21,46
+ 291: 21,47
+ 322: 25,20
+ 326: 29,15
+ 327: 29,14
+ 328: 29,13
+ 343: 7,20
+ 344: 6,21
+ 345: 6,19
+ 381: 17,14
+ 382: 16,15
+ 383: 16,13
+ 428: 19,20
+ 429: 18,19
+ 430: 18,21
+ 456: 30,19
+ 457: 30,21
+ 461: 31,20
+ 492: 14,28
+ 560: 20,8
+ 565: 12,8
+ 803: 0,1
+ 805: 11,1
+ 2021: 24,44
+ 2022: 24,46
+ 2042: 28,43
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 264: 10,44
+ 679: 30,28
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 109: 16,25
+ 362: 10,22
+ 367: 16,22
+ 413: 22,16
+ 438: 22,22
+ 475: 34,22
+ 494: 12,25
+ 527: 12,32
+ 580: 4,22
+ 587: 6,40
+ 630: 22,40
+ 660: 34,36
+ 715: 6,16
+ 777: 10,10
+ 2045: 30,48
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 689: 10,28
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 265: 12,44
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 108: 18,25
+ 363: 6,22
+ 412: 16,16
+ 442: 18,22
+ 476: 30,22
+ 532: 0,32
+ 579: 0,22
+ 588: 0,40
+ 629: 16,40
+ 639: 24,36
+ 714: 0,16
+ 772: 0,10
+ 858: 23,4
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 688: 8,28
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 263: 10,46
+ 279: 14,42
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 361: 10,18
+ 411: 22,12
+ 443: 22,18
+ 477: 34,18
+ 526: 12,30
+ 581: 4,18
+ 586: 6,38
+ 628: 22,38
+ 661: 34,34
+ 713: 6,12
+ 771: 10,6
+ 809: 5,0
+ 810: 16,0
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 311: 26,30
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 690: 10,24
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 262: 12,46
+ 278: 8,42
+ 676: 28,24
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 360: 6,18
+ 406: 16,12
+ 439: 18,18
+ 474: 30,18
+ 496: 14,27
+ 533: 0,30
+ 578: 0,18
+ 589: 0,38
+ 631: 16,38
+ 638: 24,34
+ 712: 0,12
+ 770: 0,6
+ 807: 0,0
+ 808: 11,0
+ 859: 23,0
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 310: 14,30
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 691: 8,24
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineE
+ decals:
+ 258: 10,47
+ 259: 10,48
+ 280: 14,43
+ 678: 30,27
+ - node:
+ color: '#D4D4D419'
+ id: BrickTileWhiteLineE
+ decals:
+ 895: 2,6
+ 896: 2,10
+ 900: 9,2
+ 901: 30,2
+ 906: 1,45
+ 908: 2,31
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineE
+ decals:
+ 96: 14,36
+ 97: 14,35
+ 98: 14,34
+ 106: 16,24
+ 356: 10,19
+ 357: 10,21
+ 368: 16,21
+ 409: 22,15
+ 410: 22,13
+ 444: 22,19
+ 445: 22,21
+ 470: 34,21
+ 471: 34,19
+ 495: 12,24
+ 511: 0,25
+ 512: 0,26
+ 513: 0,27
+ 548: 4,19
+ 549: 4,21
+ 596: 14,38
+ 597: 14,40
+ 716: 6,15
+ 717: 6,13
+ 768: 10,9
+ 769: 10,7
+ 811: 5,1
+ 812: 16,1
+ 876: 34,0
+ 877: 34,1
+ 878: 34,3
+ 879: 34,4
+ 2048: 30,47
+ 2049: 30,46
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineE
+ decals:
+ 292: 17,45
+ 293: 17,46
+ 294: 17,47
+ 324: 27,20
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 693: 10,27
+ 694: 10,26
+ 695: 10,25
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineN
+ decals:
+ 266: 9,44
+ 267: 8,44
+ 268: 13,44
+ 269: 14,44
+ - node:
+ color: '#D4D4D419'
+ id: BrickTileWhiteLineN
+ decals:
+ 907: 3,43
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineN
+ decals:
+ 358: 9,22
+ 359: 7,22
+ 369: 15,22
+ 398: 18,16
+ 399: 17,16
+ 400: 21,16
+ 401: 20,16
+ 436: 19,22
+ 437: 21,22
+ 468: 31,22
+ 469: 33,22
+ 516: 0,28
+ 517: 2,28
+ 528: 11,32
+ 531: 1,32
+ 552: 1,22
+ 553: 3,22
+ 574: 16,10
+ 575: 18,10
+ 620: 18,40
+ 621: 17,40
+ 622: 20,40
+ 623: 21,40
+ 642: 25,36
+ 643: 26,36
+ 722: 1,16
+ 723: 5,16
+ 773: 1,10
+ 774: 9,10
+ 866: 24,4
+ 867: 25,4
+ 868: 27,4
+ 869: 28,4
+ 870: 30,4
+ 871: 29,4
+ 2046: 28,48
+ 2047: 29,48
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 692: 9,28
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineS
+ decals:
+ 254: 8,46
+ 255: 9,46
+ 256: 13,46
+ 257: 14,46
+ 282: 9,42
+ 283: 10,42
+ 284: 12,42
+ 285: 13,42
+ - node:
+ color: '#D4D4D419'
+ id: BrickTileWhiteLineS
+ decals:
+ 905: 3,47
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineS
+ decals:
+ 352: 7,18
+ 353: 9,18
+ 402: 17,12
+ 403: 18,12
+ 404: 20,12
+ 405: 21,12
+ 434: 19,18
+ 435: 21,18
+ 466: 33,18
+ 467: 31,18
+ 514: 0,24
+ 515: 2,24
+ 529: 11,30
+ 530: 1,30
+ 550: 1,18
+ 551: 3,18
+ 576: 16,6
+ 577: 18,6
+ 624: 17,38
+ 625: 18,38
+ 626: 20,38
+ 627: 21,38
+ 640: 25,34
+ 641: 26,34
+ 718: 5,12
+ 719: 1,12
+ 775: 1,6
+ 776: 9,6
+ 813: 12,0
+ 814: 13,0
+ 815: 14,0
+ 816: 15,0
+ 817: 16,3
+ 818: 15,3
+ 819: 13,3
+ 820: 14,3
+ 821: 11,3
+ 822: 12,3
+ 823: 0,3
+ 824: 1,3
+ 825: 2,3
+ 826: 3,3
+ 827: 4,3
+ 828: 5,3
+ 829: 4,0
+ 830: 3,0
+ 831: 2,0
+ 832: 1,0
+ 860: 24,0
+ 861: 25,0
+ 862: 27,0
+ 863: 28,0
+ 864: 29,0
+ 865: 30,0
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineS
+ decals:
+ 312: 15,30
+ 313: 16,30
+ 314: 17,30
+ 315: 18,30
+ 316: 19,30
+ 317: 21,30
+ 318: 22,30
+ 319: 23,30
+ 320: 24,30
+ 321: 25,30
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 696: 9,24
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineW
+ decals:
+ 260: 12,47
+ 261: 12,48
+ 281: 8,43
+ 677: 28,25
+ - node:
+ color: '#D4D4D419'
+ id: BrickTileWhiteLineW
+ decals:
+ 897: 8,10
+ 898: 8,6
+ 899: 7,2
+ 902: 33,36
+ 903: 33,34
+ 904: 5,45
+ 909: 10,31
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineW
+ decals:
+ 99: 20,36
+ 100: 20,35
+ 101: 20,34
+ 107: 18,24
+ 354: 6,19
+ 355: 6,21
+ 407: 16,13
+ 408: 16,15
+ 440: 18,19
+ 441: 18,21
+ 472: 30,19
+ 473: 30,21
+ 497: 14,28
+ 508: 2,25
+ 509: 2,26
+ 510: 2,27
+ 546: 0,19
+ 547: 0,21
+ 594: 8,38
+ 595: 8,40
+ 720: 0,13
+ 721: 0,15
+ 766: 0,7
+ 767: 0,9
+ 804: 0,1
+ 833: 11,1
+ 856: 23,1
+ 857: 23,3
+ 2050: 24,44
+ 2051: 24,46
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineW
+ decals:
+ 295: 21,45
+ 296: 21,46
+ 297: 21,47
+ 325: 25,20
+ 329: 29,13
+ 330: 29,14
+ 331: 29,15
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 697: 8,25
+ 698: 8,26
+ 699: 8,27
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#B02E269B'
+ id: Clandestine
+ decals:
+ 2136: 3.132535,34.09553
+ - node:
+ color: '#A4610696'
+ id: Dirt
+ decals:
+ 1334: 31,2
+ 1335: 32,2
+ 1336: 33,2
+ 1337: 30,2
+ 1338: 34,2
+ 1339: 33,3
+ 1340: 31,4
+ 1341: 32,3
+ 1342: 32,1
+ 1343: 31,1
+ 1344: 31,0
+ 1345: 33,0
+ 1346: 32,0
+ 1347: 33,3
+ 1348: 33,4
+ 1349: 32,4
+ 1350: 31,3
+ 1351: 32,1
+ 1352: 33,1
+ - node:
+ cleanable: True
+ color: '#A4610696'
+ id: Dirt
+ decals:
+ 954: 0,45
+ 955: 3,47
+ 956: 3,48
+ 957: 6,45
+ 958: 3,42
+ 959: 3,43
+ 960: 5,45
+ 961: 1,45
+ 962: 13,45
+ 963: 12,45
+ 964: 11,47
+ 965: 9,45
+ 966: 8,45
+ 967: 8,46
+ 968: 10,47
+ 969: 13,47
+ 970: 14,46
+ 971: 11,43
+ 972: 11,42
+ 973: 9,42
+ 974: 10,42
+ 975: 13,42
+ 976: 12,42
+ 977: 13,43
+ 978: 9,43
+ 979: 11,44
+ 980: 11,45
+ 981: 11,47
+ 982: 9,46
+ 983: 11,46
+ 984: 16,45
+ 985: 16,46
+ 986: 16,47
+ 987: 16,44
+ 988: 17,45
+ 989: 17,46
+ 990: 21,45
+ 991: 22,45
+ 992: 22,44
+ 993: 22,43
+ 994: 22,46
+ 995: 21,45
+ 996: 21,46
+ 997: 22,47
+ 998: 24,39
+ 999: 24,38
+ 1000: 24,40
+ 1001: 27,39
+ 1002: 27,39
+ 1003: 30,40
+ 1004: 30,39
+ 1005: 30,38
+ 1006: 30,39
+ 1007: 34,35
+ 1008: 33,34
+ 1009: 33,36
+ 1010: 24,35
+ 1011: 22,35
+ 1012: 20,35
+ 1013: 21,35
+ 1014: 20,34
+ 1015: 14,35
+ 1016: 13,35
+ 1017: 12,35
+ 1018: 14,36
+ 1019: 17,36
+ 1020: 17,35
+ 1021: 17,34
+ 1022: 16,35
+ 1023: 18,35
+ 1024: 18,36
+ 1025: 18,34
+ 1026: 16,34
+ 1027: 16,36
+ 1028: 16,30
+ 1029: 16,30
+ 1030: 18,30
+ 1031: 19,30
+ 1032: 22,30
+ 1033: 24,30
+ 1034: 25,30
+ 1035: 26,30
+ 1036: 20,30
+ 1037: 20,30
+ 1038: 15,30
+ 1039: 14,30
+ 1040: 14,31
+ 1041: 26,31
+ 1042: 10,31
+ 1043: 2,31
+ 1044: 0,31
+ 1045: 12,31
+ 1046: 5,35
+ 1047: 6,36
+ 1048: 4,34
+ 1049: 9,35
+ 1050: 9,35
+ 1051: 10,35
+ 1052: 10,34
+ 1053: 0,35
+ 1054: 0,36
+ 1055: 0,35
+ 1056: 5,36
+ 1057: 6,36
+ 1058: 6,39
+ 1059: 0,39
+ 1060: 8,39
+ 1061: 8,40
+ 1062: 8,38
+ 1063: 9,39
+ 1064: 11,38
+ 1065: 9,38
+ 1066: 11,40
+ 1067: 10,40
+ 1068: 13,39
+ 1069: 14,39
+ 1070: 14,40
+ 1071: 14,38
+ 1072: 13,39
+ 1073: 13,40
+ 1074: 16,39
+ 1075: 18,40
+ 1076: 19,40
+ 1077: 19,39
+ 1078: 18,39
+ 1079: 17,39
+ 1080: 20,39
+ 1081: 21,39
+ 1082: 19,38
+ 1083: 22,39
+ 1084: 21,38
+ 1085: 24,39
+ 1086: 24,38
+ 1087: 24,40
+ 1088: 17,32
+ 1089: 24,32
+ 1090: 23,32
+ 1091: 34,26
+ 1092: 33,26
+ 1093: 33,28
+ 1094: 32,28
+ 1095: 32,27
+ 1096: 34,27
+ 1097: 34,28
+ 1098: 32,25
+ 1099: 33,24
+ 1100: 33,25
+ 1101: 32,26
+ 1102: 29,24
+ 1103: 30,26
+ 1104: 28,26
+ 1105: 29,28
+ 1106: 29,27
+ 1107: 29,25
+ 1108: 25,26
+ 1109: 24,26
+ 1110: 26,26
+ 1111: 25,27
+ 1112: 24,28
+ 1113: 25,28
+ 1114: 24,27
+ 1115: 24,24
+ 1116: 25,25
+ 1117: 25,24
+ 1118: 26,25
+ 1119: 22,26
+ 1120: 24,26
+ 1121: 26,26
+ 1122: 20,26
+ 1123: 21,25
+ 1124: 21,24
+ 1125: 21,28
+ 1126: 21,27
+ 1127: 18,26
+ 1128: 16,26
+ 1129: 17,27
+ 1130: 17,28
+ 1131: 17,25
+ 1132: 17,24
+ 1133: 17,26
+ 1134: 13,28
+ 1135: 13,27
+ 1136: 13,26
+ 1137: 13,25
+ 1138: 13,24
+ 1139: 12,26
+ 1140: 14,26
+ 1141: 9,26
+ 1142: 9,27
+ 1143: 9,28
+ 1144: 8,28
+ 1145: 8,27
+ 1146: 8,26
+ 1147: 9,25
+ 1148: 8,25
+ 1149: 8,24
+ 1150: 9,24
+ 1151: 10,24
+ 1152: 10,25
+ 1153: 10,26
+ 1154: 10,27
+ 1155: 10,28
+ 1156: 5,28
+ 1157: 5,28
+ 1158: 5,24
+ 1159: 5,24
+ 1160: 0,26
+ 1161: 2,26
+ 1162: 2,28
+ 1163: 1,24
+ 1164: 2,24
+ 1165: 2,22
+ 1166: 4,20
+ 1167: 2,18
+ 1168: 1,19
+ 1169: 0,20
+ 1170: 0,17
+ 1171: 0,18
+ 1172: 4,18
+ 1173: 4,19
+ 1174: 4,22
+ 1175: 0,22
+ 1176: 6,20
+ 1177: 7,20
+ 1178: 8,20
+ 1179: 9,20
+ 1180: 10,20
+ 1181: 8,21
+ 1182: 8,22
+ 1183: 8,19
+ 1184: 8,18
+ 1185: 6,18
+ 1186: 7,19
+ 1187: 7,18
+ 1188: 9,20
+ 1189: 10,21
+ 1190: 9,21
+ 1191: 9,22
+ 1192: 9,19
+ 1193: 7,21
+ 1194: 8,13
+ 1195: 8,13
+ 1196: 11,16
+ 1197: 11,16
+ 1198: 10,16
+ 1199: 9,16
+ 1200: 8,15
+ 1201: 8,14
+ 1202: 8,16
+ 1203: 10,16
+ 1204: 9,16
+ 1205: 12,14
+ 1206: 11,14
+ 1207: 11,12
+ 1208: 10,12
+ 1209: 14,12
+ 1210: 14,14
+ 1211: 14,15
+ 1212: 13,14
+ 1213: 12,14
+ 1214: 11,14
+ 1215: 11,13
+ 1216: 6,14
+ 1217: 0,14
+ 1218: 3,16
+ 1219: 3,12
+ 1220: 3,13
+ 1221: 2,13
+ 1222: 4,13
+ 1223: 3,15
+ 1224: 2,15
+ 1225: 4,15
+ 1226: 5,14
+ 1227: 1,14
+ 1228: 1,15
+ 1229: 1,13
+ 1230: 5,15
+ 1231: 5,13
+ 1232: 0,8
+ 1233: 2,10
+ 1234: 2,6
+ 1235: 8,6
+ 1236: 8,10
+ 1237: 0,8
+ 1238: 10,8
+ 1239: 10,10
+ 1240: 10,7
+ 1241: 10,6
+ 1242: 9,6
+ 1243: 9,10
+ 1244: 1,10
+ 1245: 0,7
+ 1246: 0,6
+ 1247: 0,3
+ 1248: 1,3
+ 1249: 1,3
+ 1250: 2,3
+ 1251: 3,3
+ 1252: 4,3
+ 1253: 4,3
+ 1254: 5,3
+ 1255: 7,2
+ 1256: 9,2
+ 1257: 4,0
+ 1258: 4,1
+ 1259: 2,1
+ 1260: 1,1
+ 1261: 0,2
+ 1262: 1,2
+ 1263: 2,2
+ 1264: 5,2
+ 1265: 4,2
+ 1266: 3,2
+ 1267: 4,1
+ 1268: 3,1
+ 1269: 11,2
+ 1270: 12,3
+ 1271: 11,3
+ 1272: 14,3
+ 1273: 14,3
+ 1274: 15,3
+ 1275: 16,3
+ 1276: 13,3
+ 1277: 11,3
+ 1278: 12,2
+ 1279: 11,1
+ 1280: 13,1
+ 1281: 16,2
+ 1282: 16,1
+ 1283: 14,1
+ 1284: 13,2
+ 1285: 14,2
+ 1286: 18,2
+ 1287: 19,2
+ 1288: 20,2
+ 1289: 21,2
+ 1290: 19,3
+ 1291: 18,3
+ 1292: 20,3
+ 1293: 20,1
+ 1294: 21,1
+ 1295: 19,1
+ 1296: 23,2
+ 1297: 28,2
+ 1298: 29,2
+ 1299: 30,2
+ 1300: 28,4
+ 1301: 29,4
+ 1302: 26,4
+ 1303: 26,2
+ 1304: 26,1
+ 1305: 26,0
+ 1306: 24,2
+ 1307: 25,2
+ 1308: 27,2
+ 1309: 24,4
+ 1310: 23,3
+ 1311: 24,3
+ 1312: 23,4
+ 1469: 14,8
+ 1470: 12,8
+ 1471: 12,7
+ 1472: 13,7
+ 1473: 13,6
+ 1474: 13,10
+ 1475: 12,9
+ 1476: 14,9
+ 1477: 17,10
+ 1478: 17,9
+ 1479: 18,9
+ 1480: 18,8
+ 1481: 17,7
+ 1482: 17,7
+ 1483: 17,6
+ 1484: 17,8
+ 1485: 16,7
+ 1486: 18,7
+ 1487: 20,9
+ 1488: 20,8
+ 1489: 21,10
+ 1490: 21,9
+ 1491: 21,7
+ 1492: 21,6
+ 1493: 20,7
+ 1494: 22,7
+ 1495: 22,8
+ 1534: 19,16
+ 1535: 18,15
+ 1536: 19,13
+ 1537: 19,12
+ 1538: 22,14
+ 1539: 22,14
+ 1540: 22,15
+ 1541: 21,16
+ 1542: 21,15
+ 1543: 21,13
+ 1544: 16,14
+ 1545: 17,13
+ 1546: 17,15
+ 1556: 30,20
+ 1557: 32,22
+ 1558: 31,22
+ 1559: 31,21
+ 1560: 32,19
+ 1561: 32,18
+ 1562: 34,20
+ 1563: 34,19
+ 1564: 34,18
+ 1565: 34,21
+ 1566: 34,22
+ 2060: 24,45
+ 2061: 25,45
+ 2062: 27,48
+ 2063: 27,42
+ 2064: 30,45
+ 2065: 28,43
+ 2066: 29,43
+ 2067: 30,43
+ 2068: 24,42
+ 2069: 25,43
+ 2070: 26,42
+ 2071: 25,42
+ 2072: 26,48
+ 2073: 25,47
+ 2074: 26,47
+ 2075: 25,47
+ 2076: 25,48
+ 2077: 27,47
+ 2078: 27,45
+ 2079: 27,46
+ 2080: 26,45
+ 2081: 28,45
+ 2082: 26,44
+ 2083: 27,44
+ 2084: 25,46
+ 2085: 26,46
+ 2086: 29,45
+ - node:
+ color: '#A4610696'
+ id: DirtHeavy
+ decals:
+ 1353: 11,31
+ 1354: 1,31
+ 1355: 0,39
+ 1356: 6,39
+ 1357: 5,45
+ 1358: 14,39
+ 1359: 16,39
+ 1360: 19,38
+ - node:
+ cleanable: True
+ color: '#A4610696'
+ id: DirtHeavy
+ decals:
+ 1361: 22,39
+ 1362: 19,40
+ 1363: 30,39
+ 1364: 25,35
+ 1365: 24,36
+ 1366: 20,30
+ 1367: 14,30
+ 1368: 18,30
+ 1369: 22,30
+ 1370: 26,31
+ 1371: 22,26
+ 1372: 24,26
+ 1373: 26,26
+ 1374: 28,26
+ 1375: 29,27
+ 1376: 33,25
+ 1377: 33,28
+ 1378: 32,28
+ 1379: 14,26
+ 1380: 12,26
+ 1381: 9,26
+ 1382: 9,28
+ 1383: 8,28
+ 1384: 8,24
+ 1385: 10,25
+ 1386: 5,24
+ 1387: 5,28
+ 1388: 0,26
+ 1389: 0,27
+ 1390: 2,24
+ 1391: 2,25
+ 1392: 0,35
+ 1393: 0,36
+ 1394: 7,36
+ 1395: 5,35
+ 1396: 4,34
+ 1397: 10,35
+ 1398: 9,35
+ 1399: 8,39
+ 1400: 14,39
+ 1401: 14,38
+ 1402: 8,45
+ 1403: 11,48
+ 1404: 11,44
+ 1405: 14,45
+ 1406: 11,42
+ 1407: 9,42
+ 1408: 13,43
+ 1409: 3,47
+ 1410: 4,20
+ 1411: 3,22
+ 1412: 2,18
+ 1413: 0,19
+ 1414: 6,20
+ 1415: 8,20
+ 1416: 8,18
+ 1417: 10,20
+ 1418: 8,22
+ 1419: 14,20
+ 1420: 15,21
+ 1421: 16,20
+ 1422: 12,20
+ 1423: 12,21
+ 1424: 13,22
+ 1425: 13,21
+ 1426: 13,19
+ 1427: 16,19
+ 1428: 16,19
+ 1429: 15,20
+ 1430: 14,18
+ 1431: 12,20
+ 1432: 14,22
+ 1433: 20,20
+ 1434: 20,22
+ 1435: 18,20
+ 1436: 22,21
+ 1437: 19,21
+ 1438: 20,18
+ 1439: 22,20
+ 1440: 27,22
+ 1441: 25,22
+ 1442: 26,18
+ 1443: 27,18
+ 1444: 31,18
+ 1445: 32,18
+ 1446: 31,20
+ 1447: 32,21
+ 1448: 34,22
+ 1449: 34,20
+ 1450: 32,19
+ 1451: 29,14
+ 1452: 24,14
+ 1453: 24,13
+ 1454: 30,14
+ 1455: 29,13
+ 1456: 34,2
+ 1457: 32,3
+ 1458: 30,1
+ 1459: 26,1
+ 1460: 23,3
+ 1461: 24,4
+ 1462: 29,4
+ 1463: 26,0
+ 1464: 26,1
+ 1465: 18,2
+ 1466: 22,8
+ 1467: 20,8
+ 1468: 16,8
+ 1496: 17,6
+ 1497: 16,8
+ 1498: 18,8
+ 1499: 17,10
+ 1500: 14,8
+ 1501: 12,8
+ 1502: 13,6
+ 1503: 13,10
+ 1504: 21,10
+ 1505: 21,9
+ 1506: 21,8
+ 1507: 21,7
+ 1508: 21,6
+ 1509: 10,8
+ 1510: 9,10
+ 1511: 9,6
+ 1512: 2,6
+ 1513: 0,7
+ 1514: 0,9
+ 1515: 1,10
+ 1516: 8,10
+ 1517: 0,14
+ 1518: 5,14
+ 1519: 4,15
+ 1520: 3,16
+ 1521: 1,18
+ 1522: 5,15
+ 1523: 6,14
+ 1524: 11,16
+ 1525: 8,13
+ 1526: 11,12
+ 1527: 10,13
+ 1528: 16,14
+ 1529: 19,16
+ 1530: 19,13
+ 1531: 18,13
+ 1532: 18,15
+ 1533: 16,15
+ 1547: 19,16
+ 1548: 16,14
+ 1549: 17,15
+ 1550: 18,14
+ 1551: 19,13
+ 1552: 21,13
+ 1553: 22,14
+ 1554: 29,15
+ 1555: 29,13
+ 2095: 24,45
+ 2096: 27,48
+ 2097: 27,42
+ 2098: 25,44
+ 2099: 29,45
+ 2100: 29,46
+ 2101: 29,47
+ 2102: 25,45
+ - node:
+ cleanable: True
+ color: '#A4610696'
+ id: DirtLight
+ decals:
+ 1567: 0,2
+ 1568: 5,2
+ 1569: 4,1
+ 1570: 5,2
+ 1571: 2,1
+ 1572: 7,2
+ 1573: 9,2
+ 1574: 11,2
+ 1575: 14,2
+ 1576: 13,3
+ 1577: 10,3
+ 1578: 11,3
+ 1579: 12,3
+ 1580: 16,3
+ 1581: 15,3
+ 1582: 16,2
+ 1583: 16,1
+ 1584: 14,1
+ 1585: 15,1
+ 1586: 1,3
+ 1587: 3,3
+ 1588: 5,3
+ 1589: 5,3
+ 1590: 1,1
+ 1591: 23,2
+ 1592: 26,2
+ 1593: 28,2
+ 1594: 28,4
+ 1595: 30,2
+ 1596: 31,1
+ 1597: 34,1
+ 1598: 33,0
+ 1599: 34,3
+ 1600: 21,9
+ 1601: 20,8
+ 1602: 22,8
+ 1603: 16,8
+ 1604: 17,9
+ 1605: 17,10
+ 1606: 17,6
+ 1607: 12,8
+ 1608: 14,9
+ 1609: 14,8
+ 1610: 13,6
+ 1611: 10,8
+ 1612: 8,10
+ 1613: 2,10
+ 1614: 0,8
+ 1615: 0,9
+ 1616: 2,6
+ 1617: 0,14
+ 1618: 3,12
+ 1619: 1,14
+ 1620: 3,15
+ 1621: 5,14
+ 1622: 5,15
+ 1623: 6,14
+ 1624: 3,13
+ 1625: 3,12
+ 1626: 8,13
+ 1627: 10,16
+ 1628: 11,16
+ 1629: 17,14
+ 1630: 17,13
+ 1631: 16,15
+ 1632: 19,16
+ 1633: 22,14
+ 1634: 21,14
+ 1635: 21,13
+ 1636: 19,13
+ 1637: 20,12
+ 1638: 20,13
+ 1639: 21,15
+ 1640: 29,14
+ 1641: 29,15
+ 1642: 34,20
+ 1643: 32,18
+ 1644: 34,18
+ 1645: 34,21
+ 1646: 32,22
+ 1647: 30,20
+ 1648: 30,21
+ 1649: 32,19
+ 1650: 32,21
+ 1651: 32,20
+ 1652: 30,18
+ 1653: 26,22
+ 1654: 25,22
+ 1655: 25,20
+ 1656: 27,20
+ 1657: 27,22
+ 1658: 25,20
+ 1659: 27,20
+ 1660: 26,18
+ 1661: 27,18
+ 1662: 25,18
+ 1663: 22,20
+ 1664: 18,20
+ 1665: 20,22
+ 1666: 20,20
+ 1667: 19,19
+ 1668: 20,19
+ 1669: 20,21
+ 1670: 21,20
+ 1671: 16,20
+ 1672: 16,21
+ 1673: 12,20
+ 1674: 13,21
+ 1675: 13,22
+ 1676: 13,19
+ 1677: 13,19
+ 1678: 14,20
+ 1679: 14,18
+ 1680: 10,20
+ 1681: 10,21
+ 1682: 8,22
+ 1683: 6,21
+ 1684: 6,20
+ 1685: 7,20
+ 1686: 7,19
+ 1687: 8,20
+ 1688: 9,20
+ 1689: 4,20
+ 1690: 3,18
+ 1691: 2,18
+ 1692: 1,18
+ 1693: 0,21
+ 1694: 1,22
+ 1695: 0,20
+ 1696: 2,22
+ 1697: 1,24
+ 1698: 0,26
+ 1699: 0,25
+ 1700: 2,25
+ 1701: 2,27
+ 1702: 5,28
+ 1703: 5,24
+ 1704: 9,26
+ 1705: 9,27
+ 1706: 9,24
+ 1707: 8,24
+ 1708: 10,24
+ 1709: 10,26
+ 1710: 13,26
+ 1711: 12,26
+ 1712: 13,28
+ 1713: 12,28
+ 1714: 13,24
+ 1715: 14,26
+ 1716: 13,25
+ 1717: 18,26
+ 1718: 16,26
+ 1719: 17,28
+ 1720: 17,25
+ 1721: 17,24
+ 1722: 20,26
+ 1723: 22,26
+ 1724: 21,26
+ 1725: 21,27
+ 1726: 21,24
+ 1727: 21,25
+ 1728: 25,26
+ 1729: 26,26
+ 1730: 25,26
+ 1731: 25,26
+ 1732: 25,24
+ 1733: 25,24
+ 1734: 26,25
+ 1735: 24,27
+ 1736: 29,26
+ 1737: 29,27
+ 1738: 30,26
+ 1739: 29,24
+ 1740: 33,26
+ 1741: 33,24
+ 1742: 34,26
+ 1743: 32,26
+ 1744: 34,28
+ 1745: 34,28
+ 1746: 33,28
+ 1747: 32,28
+ 1748: 26,31
+ 1749: 21,30
+ 1750: 20,30
+ 1751: 17,30
+ 1752: 15,30
+ 1753: 14,31
+ 1754: 10,31
+ 1755: 2,31
+ 1756: 11,30
+ 1757: 12,31
+ 1758: 0,32
+ 1759: 1,32
+ 1760: 0,31
+ 1761: -1,35
+ 1762: 0,36
+ 1763: 0,35
+ 1764: 4,34
+ 1765: 5,35
+ 1766: 3,34
+ 1767: 10,34
+ 1768: 10,35
+ 1769: 6,39
+ 1770: 0,39
+ 1771: 0,45
+ 1772: 3,43
+ 1773: 3,47
+ 1774: 4,45
+ 1775: 5,45
+ 1776: 8,45
+ 1777: 11,46
+ 1778: 11,45
+ 1779: 11,42
+ 1780: 13,42
+ 1781: 9,42
+ 1782: 14,45
+ 1783: 10,44
+ 1784: 11,44
+ 1785: 11,45
+ 1786: 16,47
+ 1787: 16,45
+ 1788: 17,45
+ 1789: 21,45
+ 1790: 16,48
+ 1791: 16,43
+ 1792: 23,43
+ 1793: 22,42
+ 1794: 30,38
+ 1795: 30,40
+ 1796: 24,38
+ 1797: 22,39
+ 1798: 19,38
+ 1799: 19,39
+ 1800: 18,39
+ 1801: 16,39
+ 1802: 18,38
+ 1803: 17,38
+ 1804: 14,38
+ 1805: 14,40
+ 1806: 9,39
+ 1807: 10,40
+ 1808: 12,38
+ 1809: 10,38
+ 1810: 10,38
+ 1811: 6,39
+ 1812: 0,39
+ 2103: 24,45
+ 2104: 30,45
+ 2105: 26,44
+ 2106: 27,43
+ 2107: 30,43
+ 2108: 29,42
+ 2109: 28,47
+ - node:
+ cleanable: True
+ color: '#A4610696'
+ id: DirtMedium
+ decals:
+ 1813: 0,35
+ 1814: 0,39
+ 1815: 6,39
+ 1816: 3,43
+ 1817: 1,45
+ 1818: 11,45
+ 1819: 11,42
+ 1820: 14,45
+ 1821: 16,45
+ 1822: 21,45
+ 1823: 22,45
+ 1824: 21,38
+ 1825: 20,38
+ 1826: 20,38
+ 1827: 24,38
+ 1828: 30,39
+ 1829: 34,35
+ 1830: 33,36
+ 1831: 33,34
+ 1832: 24,34
+ 1833: 20,34
+ 1834: 22,35
+ 1835: 17,35
+ 1836: 16,34
+ 1837: 17,36
+ 1838: 12,35
+ 1839: 10,35
+ 1840: 5,35
+ 1841: 0,35
+ 1842: 1,31
+ 1843: 2,31
+ 1844: 11,31
+ 1845: 9,26
+ 1846: 8,26
+ 1847: 9,27
+ 1848: 9,28
+ 1849: 10,26
+ 1850: 10,25
+ 1851: 9,25
+ 1852: 13,26
+ 1853: 12,26
+ 1854: 13,28
+ 1855: 14,26
+ 1856: 17,24
+ 1857: 18,26
+ 1858: 17,28
+ 1859: 16,26
+ 1860: 22,26
+ 1861: 20,26
+ 1862: 25,27
+ 1863: 24,27
+ 1864: 24,28
+ 1865: 24,25
+ 1866: 25,25
+ 1867: 25,24
+ 1868: 24,24
+ 1869: 26,25
+ 1870: 26,26
+ 1871: 25,26
+ 1872: 24,26
+ 1873: 24,26
+ 1874: 25,26
+ 1875: 25,26
+ 1876: 28,26
+ 1877: 30,26
+ 1878: 29,27
+ 1879: 29,25
+ 1880: 33,26
+ 1881: 34,26
+ 1882: 34,28
+ 1883: 32,28
+ 1884: 34,28
+ 1885: 32,20
+ 1886: 31,20
+ 1887: 30,20
+ 1888: 30,18
+ 1889: 34,18
+ 1890: 34,21
+ 1891: 25,18
+ 1892: 26,18
+ 1893: 25,18
+ 1894: 27,20
+ 1895: 27,22
+ 1896: 29,15
+ 1897: 30,14
+ 1898: 29,12
+ 1899: 24,14
+ 1900: 24,15
+ 1901: 24,16
+ 1902: 20,20
+ 1903: 17,20
+ 1904: 19,21
+ 1905: 18,20
+ 1906: 21,22
+ 1907: 22,20
+ 1908: 22,21
+ 1909: 20,19
+ 1910: 15,20
+ 1911: 14,21
+ 1912: 15,21
+ 1913: 16,21
+ 1914: 14,22
+ 1915: 12,20
+ 1916: 14,18
+ 1917: 15,18
+ 1918: 16,19
+ 1919: 16,19
+ 1920: 13,19
+ 1921: 12,19
+ 1922: 12,19
+ 1923: 12,18
+ 1924: 14,18
+ 1925: 15,18
+ 1926: 15,18
+ 1927: 10,20
+ 1928: 8,22
+ 1929: 7,20
+ 1930: 9,21
+ 1931: 7,19
+ 1932: 10,19
+ 1933: 10,21
+ 1934: 7,18
+ 1935: 4,20
+ 1936: 4,21
+ 1937: 2,22
+ 1938: 1,22
+ 1939: 0,19
+ 1940: 1,18
+ 1941: 1,18
+ 1942: 3,18
+ 1943: 0,14
+ 1944: 2,13
+ 1945: 3,13
+ 1946: 5,13
+ 1947: 3,12
+ 1948: 8,15
+ 1949: 8,16
+ 1950: 9,16
+ 1951: 9,16
+ 1952: 18,14
+ 1953: 19,16
+ 1954: 19,14
+ 1955: 20,13
+ 1956: 18,16
+ 1957: 17,13
+ 1958: 20,12
+ 1959: 22,13
+ 1960: 24,13
+ 1961: 30,12
+ 1962: 30,14
+ 1963: 29,16
+ 1964: 24,16
+ 1965: 24,16
+ 1966: 25,6
+ 1967: 24,7
+ 1968: 26,9
+ 1969: 27,10
+ 1970: 28,10
+ 1971: 34,10
+ 1972: 34,8
+ 1973: 34,7
+ 1974: 33,6
+ 1975: 30,6
+ 1976: 27,6
+ 1977: 21,8
+ 1978: 16,8
+ 1979: 17,10
+ 1980: 18,8
+ 1981: 17,6
+ 1982: 13,7
+ 1983: 13,9
+ 1984: 13,8
+ 1985: 14,7
+ 1986: 10,6
+ 1987: 8,10
+ 1988: 2,6
+ 1989: 0,7
+ 1990: 1,1
+ 1991: 0,1
+ 1992: 4,1
+ 1993: 5,2
+ 1994: 3,1
+ 1995: 3,0
+ 1996: 7,2
+ 1997: 9,2
+ 1998: 11,2
+ 1999: 13,1
+ 2000: 15,1
+ 2001: 16,2
+ 2002: 16,1
+ 2003: 23,2
+ 2004: 26,2
+ 2005: 29,3
+ 2006: 30,2
+ 2007: 33,2
+ 2008: 33,3
+ 2009: 34,2
+ 2010: 34,0
+ 2011: 34,1
+ 2012: 31,1
+ 2013: 29,0
+ 2014: 26,0
+ 2015: 23,3
+ 2016: 28,4
+ 2087: 27,42
+ 2088: 27,48
+ 2089: 24,45
+ 2090: 30,45
+ 2091: 28,45
+ 2092: 26,45
+ 2093: 28,47
+ 2094: 27,44
+ 2110: 24,45
+ 2111: 27,48
+ 2112: 27,45
+ 2113: 26,46
+ 2114: 26,42
+ 2115: 25,42
+ 2116: 25,47
+ 2117: 25,47
+ 2118: 26,48
+ 2119: 26,47
+ 2120: 26,47
+ 2121: 26,43
+ 2122: 26,43
+ 2123: 27,43
+ 2124: 6,1
+ 2125: 10,3
+ - node:
+ color: '#D4D4D41B'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1313: 31,4
+ 1314: 31,3
+ 1315: 31,2
+ 1316: 31,1
+ 1317: 31,0
+ - node:
+ color: '#D4D4D433'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1318: 32,0
+ 1319: 32,1
+ 1320: 32,2
+ 1321: 32,3
+ 1322: 32,4
+ - node:
+ color: '#D4D4D44C'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1323: 33,0
+ 1324: 33,1
+ 1325: 33,2
+ 1326: 33,3
+ 1327: 33,4
+ - node:
+ color: '#D4D4D40C'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 923: 3,47
+ - node:
+ color: '#D4D4D419'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 893: 3,43
+ - node:
+ color: '#D4D4D40C'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 924: 3,43
+ - node:
+ color: '#D4D4D419'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 894: 3,47
+ - node:
+ color: '#D4D4D40C'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 910: 30,2
+ 911: 9,2
+ 914: 2,6
+ 915: 2,10
+ 918: 2,31
+ 922: 1,45
+ - node:
+ color: '#D4D4D419'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 882: 7,2
+ 883: 8,6
+ 884: 8,10
+ 888: 10,31
+ 889: 33,34
+ 890: 33,36
+ 891: 5,45
+ - node:
+ color: '#D4D4D40C'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 912: 7,2
+ 913: 8,6
+ 916: 8,10
+ 917: 10,31
+ 919: 33,34
+ 920: 33,36
+ 921: 5,45
+ - node:
+ color: '#D4D4D419'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 880: 30,2
+ 881: 9,2
+ 885: 2,6
+ 886: 2,10
+ 887: 2,31
+ 892: 1,45
+ - node:
+ color: '#9FED5896'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 2028: 28,42
+ 2029: 29,42
+ 2030: 30,42
+ 2031: 28,43
+ 2032: 29,43
+ 2033: 30,43
+ 2034: 28,44
+ 2035: 29,44
+ 2036: 30,44
+ - node:
+ color: '#DE3A3A96'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 0: 7,19
+ 1: 8,19
+ 2: 9,19
+ 3: 9,20
+ 4: 8,20
+ 5: 7,20
+ 6: 7,21
+ 7: 8,21
+ 8: 9,21
+ 9: 19,19
+ 10: 20,19
+ 11: 21,19
+ 12: 21,20
+ 13: 20,20
+ 14: 19,20
+ 15: 19,21
+ 16: 20,21
+ 17: 21,21
+ 18: 17,15
+ 19: 17,14
+ 20: 17,13
+ 21: 18,13
+ 22: 19,13
+ 23: 20,13
+ 24: 21,13
+ 25: 21,14
+ 26: 21,15
+ 27: 20,15
+ 28: 19,15
+ 29: 18,15
+ 30: 18,14
+ 31: 19,14
+ 32: 20,9
+ 33: 21,9
+ 34: 22,9
+ 35: 22,8
+ 36: 22,7
+ 37: 21,7
+ 38: 21,8
+ 39: 20,8
+ 40: 20,7
+ 41: 12,7
+ 42: 13,7
+ 43: 14,7
+ 44: 14,8
+ 45: 13,8
+ 46: 12,8
+ 47: 12,9
+ 48: 13,9
+ 49: 14,9
+ 59: 17,39
+ 60: 18,39
+ 61: 19,39
+ 62: 20,39
+ 63: 21,39
+ 64: 16,36
+ 65: 16,35
+ 66: 16,34
+ 67: 17,34
+ 68: 18,34
+ 69: 18,35
+ 70: 17,35
+ 71: 17,36
+ 72: 18,36
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 2052: 28,46
+ 2053: 28,47
+ 2054: 29,47
+ 2055: 29,46
+ - node:
+ color: '#9FED5896'
+ id: MiniTileCheckerBOverlay
+ decals:
+ 50: 31,21
+ 51: 31,20
+ 52: 31,19
+ 53: 33,21
+ 54: 33,20
+ 55: 33,19
+ - node:
+ color: '#DE3A3A96'
+ id: MiniTileCheckerBOverlay
+ decals:
+ 56: 32,21
+ 57: 32,20
+ 58: 32,19
+ - node:
+ color: '#DE3A3A96'
+ id: StandClearGreyscale
+ decals:
+ 751: 26,7
+ 752: 32,7
+ 753: 29,9
+ 838: 6,2
+ 839: 10,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 605: 13,40
+ 747: 34,10
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 606: 9,40
+ 741: 24,10
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 604: 13,38
+ 746: 34,6
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 598: 9,38
+ 740: 24,6
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnFull
+ decals:
+ 657: 32,35
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 607: 13,39
+ 644: 26,34
+ 645: 26,35
+ 646: 26,36
+ 744: 34,7
+ 745: 34,9
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleE
+ decals:
+ 112: 18,26
+ 117: 14,26
+ 118: 22,26
+ 121: 22,35
+ 122: 22,39
+ 128: 14,39
+ 131: 6,39
+ 132: 12,31
+ 135: 26,31
+ 140: 26,26
+ 145: 30,26
+ 146: 34,26
+ 153: 2,26
+ 159: 4,20
+ 160: 10,20
+ 166: 16,20
+ 170: 22,20
+ 175: 34,20
+ 176: 22,14
+ 183: 6,14
+ 184: 10,8
+ 188: 16,2
+ 190: 34,2
+ 205: 21,2
+ 213: 34,8
+ 214: 30,14
+ 219: 34,35
+ 223: 30,39
+ 224: 22,45
+ 227: 14,45
+ 230: 6,45
+ 235: 10,35
+ 834: 5,2
+ 2018: 30,45
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleN
+ decals:
+ 111: 17,28
+ 116: 13,28
+ 125: 19,40
+ 126: 11,40
+ 138: 21,28
+ 144: 29,28
+ 154: 1,28
+ 158: 2,22
+ 161: 8,22
+ 165: 14,22
+ 171: 20,22
+ 173: 32,22
+ 179: 19,16
+ 180: 3,16
+ 186: 17,10
+ 209: 26,4
+ 210: 29,10
+ 217: 26,22
+ 220: 29,36
+ 228: 11,48
+ 233: 3,48
+ 237: 5,28
+ 2020: 27,48
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 667: 27,35
+ 668: 28,35
+ 669: 29,35
+ 670: 30,35
+ 671: 31,35
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleS
+ decals:
+ 110: 17,24
+ 115: 13,24
+ 124: 19,38
+ 127: 11,38
+ 136: 20,30
+ 137: 21,24
+ 139: 25,24
+ 143: 29,24
+ 148: 33,24
+ 149: 32,28
+ 150: 33,28
+ 151: 34,28
+ 152: 1,24
+ 157: 2,18
+ 163: 8,18
+ 164: 14,18
+ 169: 20,18
+ 172: 32,18
+ 177: 19,12
+ 181: 3,12
+ 187: 17,6
+ 208: 26,0
+ 211: 29,6
+ 216: 26,18
+ 221: 29,34
+ 229: 11,42
+ 231: 3,42
+ 236: 5,24
+ 2019: 27,42
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 662: 27,35
+ 663: 28,35
+ 664: 29,35
+ 665: 30,35
+ 666: 31,35
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleW
+ decals:
+ 113: 16,26
+ 114: 12,26
+ 119: 20,26
+ 120: 12,35
+ 123: 16,39
+ 129: 8,39
+ 130: 0,39
+ 133: 0,31
+ 134: 14,31
+ 141: 24,26
+ 142: 28,26
+ 147: 32,26
+ 155: 0,26
+ 156: 0,20
+ 162: 6,20
+ 167: 12,20
+ 168: 18,20
+ 174: 30,20
+ 178: 16,14
+ 182: 0,14
+ 185: 0,8
+ 189: 0,2
+ 206: 18,2
+ 207: 23,2
+ 212: 24,8
+ 215: 24,14
+ 218: 24,35
+ 222: 24,39
+ 225: 16,45
+ 226: 8,45
+ 232: 0,45
+ 234: 0,35
+ 835: 11,2
+ 2017: 24,45
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 601: 10,38
+ 602: 12,38
+ 647: 27,34
+ 648: 28,34
+ 649: 30,34
+ 650: 31,34
+ 651: 32,34
+ 732: 28,6
+ 733: 27,6
+ 734: 26,6
+ 735: 25,6
+ 736: 30,6
+ 737: 31,6
+ 738: 32,6
+ 739: 33,6
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 603: 9,39
+ 742: 24,7
+ 743: 24,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 599: 10,40
+ 600: 12,40
+ 652: 27,36
+ 653: 28,36
+ 654: 30,36
+ 655: 31,36
+ 656: 32,36
+ 724: 25,10
+ 725: 26,10
+ 726: 28,10
+ 727: 27,10
+ 728: 30,10
+ 729: 31,10
+ 730: 32,10
+ 731: 33,10
+ - node:
+ cleanable: True
+ color: '#80C71F7F'
+ id: revolution
+ decals:
+ 2138: 14.060958,20.754644
+ 2139: 13.607299,19.803425
+ - node:
+ cleanable: True
+ color: '#B02E60A3'
+ id: revolution
+ decals:
+ 2137: 25.02975,25.438416
+ - node:
+ cleanable: True
+ angle: -1.5707963267948966 rad
+ color: '#B02E2644'
+ id: splatter
+ decals:
+ 2131: 27.967218,24.104916
+ - node:
+ cleanable: True
+ color: '#B02E2666'
+ id: splatter
+ decals:
+ 2126: 8.891183,43.065514
+ - node:
+ cleanable: True
+ angle: -1.5707963267948966 rad
+ color: '#B02E266F'
+ id: splatter
+ decals:
+ 2132: 28.36234,24.163452
+ 2133: 32.200607,35.087025
+ 2134: 13.24002,46.473877
+ 2135: 24.497486,47.84553
+ - node:
+ cleanable: True
+ angle: -4.71238898038469 rad
+ color: '#B02E26B4'
+ id: splatter
+ decals:
+ 2128: 8.788744,42.524048
+ 2129: 15.538555,20.953827
+ 2130: 24.864944,27.488853
+ - node:
+ cleanable: True
+ angle: -3.141592653589793 rad
+ color: '#B02E26B4'
+ id: splatter
+ decals:
+ 2127: 9.110695,42.81673
+ - type: RadiationGridResistance
+ - type: LoadedMap
+ - type: SpreaderGrid
+ - type: GridTree
+ - type: MovedGrids
+ - type: GridPathfinding
+- proto: AirlockBrigGlassLocked
+ entities:
+ - uid: 1245
+ components:
+ - type: Transform
+ pos: 15.5,35.5
+ parent: 588
+ - uid: 1246
+ components:
+ - type: Transform
+ pos: 19.5,35.5
+ parent: 588
+ - uid: 1625
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 588
+- proto: AirlockEngineering
+ entities:
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: 19.5,43.5
+ parent: 588
+- proto: AirlockSecurityGlassLocked
+ entities:
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: 11.5,15.5
+ parent: 588
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 588
+ - uid: 1610
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 588
+ - uid: 1623
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 588
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 588
+- proto: AmmoTechFabCircuitboard
+ entities:
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 32.527435,8.568153
+ parent: 588
+- proto: APCBasic
+ entities:
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 588
+ - uid: 773
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 588
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 21.5,32.5
+ parent: 588
+ - uid: 1509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,47.5
+ parent: 588
+- proto: BannerSecurity
+ entities:
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: 18.5,10.5
+ parent: 588
+ - uid: 1620
+ components:
+ - type: Transform
+ pos: 16.5,6.5
+ parent: 588
+- proto: BasaltFive
+ entities:
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 588
+ - uid: 647
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,21.5
+ parent: 588
+ - uid: 899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,30.5
+ parent: 588
+ - uid: 1264
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 588
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 5.5,48.5
+ parent: 588
+ - uid: 1386
+ components:
+ - type: Transform
+ pos: 0.5,47.5
+ parent: 588
+ - uid: 1387
+ components:
+ - type: Transform
+ pos: 0.5,42.5
+ parent: 588
+ - uid: 1388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,42.5
+ parent: 588
+- proto: BasaltFour
+ entities:
+ - uid: 900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,32.5
+ parent: 588
+ - uid: 904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,40.5
+ parent: 588
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: 1.5,44.5
+ parent: 588
+ - uid: 1385
+ components:
+ - type: Transform
+ pos: 6.5,48.5
+ parent: 588
+- proto: BasaltOne
+ entities:
+ - uid: 813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,27.5
+ parent: 588
+ - uid: 897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,30.5
+ parent: 588
+ - uid: 901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,32.5
+ parent: 588
+ - uid: 903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,38.5
+ parent: 588
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: 1.5,48.5
+ parent: 588
+- proto: BasaltRandom
+ entities:
+ - uid: 613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,14.5
+ parent: 588
+ - uid: 615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,7.5
+ parent: 588
+- proto: BasaltThree
+ entities:
+ - uid: 616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 588
+ - uid: 644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,20.5
+ parent: 588
+ - uid: 898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,30.5
+ parent: 588
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 4.5,38.5
+ parent: 588
+ - uid: 1265
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 588
+ - uid: 1266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,3.5
+ parent: 588
+ - uid: 1383
+ components:
+ - type: Transform
+ pos: 6.5,47.5
+ parent: 588
+- proto: BasaltTwo
+ entities:
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 588
+ - uid: 617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,9.5
+ parent: 588
+ - uid: 618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,8.5
+ parent: 588
+ - uid: 646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,19.5
+ parent: 588
+ - uid: 814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,26.5
+ parent: 588
+ - uid: 896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,32.5
+ parent: 588
+ - uid: 902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,38.5
+ parent: 588
+ - uid: 1263
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 588
+ - uid: 1380
+ components:
+ - type: Transform
+ pos: 1.5,43.5
+ parent: 588
+- proto: Bed
+ entities:
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 588
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 588
+ - uid: 293
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 588
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 588
+ - uid: 295
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 588
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 588
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 588
+ - uid: 701
+ components:
+ - type: Transform
+ pos: 16.5,18.5
+ parent: 588
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 20.5,28.5
+ parent: 588
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 22.5,24.5
+ parent: 588
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: 24.5,28.5
+ parent: 588
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 20.5,36.5
+ parent: 588
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 14.5,34.5
+ parent: 588
+ - uid: 1763
+ components:
+ - type: Transform
+ pos: 24.5,48.5
+ parent: 588
+ - uid: 1764
+ components:
+ - type: Transform
+ pos: 24.5,42.5
+ parent: 588
+- proto: BedsheetMedical
+ entities:
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 28.5,24.5
+ parent: 588
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 28.5,25.5
+ parent: 588
+- proto: BedsheetOrange
+ entities:
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 588
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 588
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 588
+ - uid: 1765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,42.5
+ parent: 588
+- proto: BedsheetSpawner
+ entities:
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 588
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 20.5,28.5
+ parent: 588
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: 14.5,34.5
+ parent: 588
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: 20.5,36.5
+ parent: 588
+- proto: BedsheetSyndie
+ entities:
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 22.5,24.5
+ parent: 588
+ - uid: 1766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,48.5
+ parent: 588
+- proto: BlastDoor
+ entities:
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: 26.5,7.5
+ parent: 588
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 588
+ - uid: 1602
+ components:
+ - type: Transform
+ pos: 32.5,7.5
+ parent: 588
+- proto: BookRandom
+ entities:
+ - uid: 1835
+ components:
+ - type: Transform
+ pos: 24.420084,44.539436
+ parent: 588
+- proto: BriefcaseBrownFilled
+ entities:
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 19.413612,4.6972914
+ parent: 588
+- proto: BrokenBottle
+ entities:
+ - uid: 1691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.063513,27.520548
+ parent: 588
+- proto: CableApcExtension
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 588
+ - uid: 2
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 588
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 588
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 588
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 588
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 588
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 588
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 588
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 588
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 588
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 588
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 588
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 588
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 588
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 14.5,2.5
+ parent: 588
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 15.5,2.5
+ parent: 588
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 16.5,2.5
+ parent: 588
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 588
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 588
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 588
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 588
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 18.5,2.5
+ parent: 588
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 19.5,2.5
+ parent: 588
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 20.5,2.5
+ parent: 588
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 588
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 588
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 23.5,2.5
+ parent: 588
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 24.5,2.5
+ parent: 588
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 588
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 26.5,2.5
+ parent: 588
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 27.5,2.5
+ parent: 588
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 28.5,2.5
+ parent: 588
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 29.5,2.5
+ parent: 588
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 30.5,2.5
+ parent: 588
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 31.5,2.5
+ parent: 588
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 32.5,2.5
+ parent: 588
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 588
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 34.5,2.5
+ parent: 588
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 588
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 26.5,3.5
+ parent: 588
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 26.5,1.5
+ parent: 588
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 26.5,0.5
+ parent: 588
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 588
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 588
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 588
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 588
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 588
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 588
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 17.5,6.5
+ parent: 588
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 588
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 588
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 588
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 588
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 588
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 588
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 588
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 588
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 588
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 588
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 588
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 588
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 21.5,8.5
+ parent: 588
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 22.5,8.5
+ parent: 588
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 22.5,14.5
+ parent: 588
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 588
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 588
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 19.5,14.5
+ parent: 588
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 18.5,14.5
+ parent: 588
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 588
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 16.5,14.5
+ parent: 588
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 19.5,13.5
+ parent: 588
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 19.5,12.5
+ parent: 588
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 19.5,15.5
+ parent: 588
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 588
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 14.5,14.5
+ parent: 588
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 13.5,14.5
+ parent: 588
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 588
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 588
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 588
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 588
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 588
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 588
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 588
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 11.5,15.5
+ parent: 588
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 11.5,16.5
+ parent: 588
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 588
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 588
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 588
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 588
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 0.5,14.5
+ parent: 588
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 588
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 588
+ - uid: 104
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 588
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 588
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 14.5,18.5
+ parent: 588
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 14.5,19.5
+ parent: 588
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 14.5,20.5
+ parent: 588
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 14.5,21.5
+ parent: 588
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 14.5,22.5
+ parent: 588
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 15.5,20.5
+ parent: 588
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 16.5,20.5
+ parent: 588
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 13.5,20.5
+ parent: 588
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 12.5,20.5
+ parent: 588
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 588
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 588
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 588
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 588
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 8.5,22.5
+ parent: 588
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 9.5,20.5
+ parent: 588
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 10.5,20.5
+ parent: 588
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 588
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 588
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 588
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 4.5,21.5
+ parent: 588
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 588
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 588
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 588
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 588
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 588
+ - uid: 131
+ components:
+ - type: Transform
+ pos: 4.5,18.5
+ parent: 588
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 588
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 588
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 2.5,25.5
+ parent: 588
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 0.5,24.5
+ parent: 588
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 2.5,24.5
+ parent: 588
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 1.5,28.5
+ parent: 588
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 0.5,26.5
+ parent: 588
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 2.5,26.5
+ parent: 588
+ - uid: 147
+ components:
+ - type: Transform
+ pos: 9.5,28.5
+ parent: 588
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 588
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 9.5,26.5
+ parent: 588
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 9.5,25.5
+ parent: 588
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 588
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 588
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 588
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 588
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 13.5,27.5
+ parent: 588
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 13.5,26.5
+ parent: 588
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 13.5,25.5
+ parent: 588
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 13.5,24.5
+ parent: 588
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 12.5,26.5
+ parent: 588
+ - uid: 160
+ components:
+ - type: Transform
+ pos: 14.5,26.5
+ parent: 588
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 0.5,31.5
+ parent: 588
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 1.5,31.5
+ parent: 588
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 2.5,31.5
+ parent: 588
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 588
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 588
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 5.5,31.5
+ parent: 588
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 6.5,31.5
+ parent: 588
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 588
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 8.5,31.5
+ parent: 588
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 9.5,31.5
+ parent: 588
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 10.5,31.5
+ parent: 588
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 11.5,31.5
+ parent: 588
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 12.5,31.5
+ parent: 588
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 588
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 6.5,32.5
+ parent: 588
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 26.5,31.5
+ parent: 588
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 588
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 588
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 588
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 22.5,31.5
+ parent: 588
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 21.5,31.5
+ parent: 588
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 20.5,31.5
+ parent: 588
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 19.5,31.5
+ parent: 588
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 18.5,31.5
+ parent: 588
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 588
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 16.5,31.5
+ parent: 588
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 15.5,31.5
+ parent: 588
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 14.5,31.5
+ parent: 588
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 20.5,32.5
+ parent: 588
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 20.5,30.5
+ parent: 588
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 22.5,35.5
+ parent: 588
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 21.5,35.5
+ parent: 588
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 20.5,35.5
+ parent: 588
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 19.5,35.5
+ parent: 588
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 18.5,35.5
+ parent: 588
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 588
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 16.5,35.5
+ parent: 588
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 15.5,35.5
+ parent: 588
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 14.5,35.5
+ parent: 588
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 13.5,35.5
+ parent: 588
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 12.5,35.5
+ parent: 588
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 17.5,36.5
+ parent: 588
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 17.5,34.5
+ parent: 588
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 10.5,35.5
+ parent: 588
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 5.5,36.5
+ parent: 588
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 5.5,34.5
+ parent: 588
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 0.5,39.5
+ parent: 588
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 1.5,39.5
+ parent: 588
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 2.5,39.5
+ parent: 588
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 3.5,39.5
+ parent: 588
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 4.5,39.5
+ parent: 588
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 5.5,39.5
+ parent: 588
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 6.5,39.5
+ parent: 588
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 3.5,38.5
+ parent: 588
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 3.5,40.5
+ parent: 588
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 8.5,39.5
+ parent: 588
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 9.5,39.5
+ parent: 588
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 10.5,39.5
+ parent: 588
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 11.5,39.5
+ parent: 588
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 12.5,39.5
+ parent: 588
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 13.5,39.5
+ parent: 588
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 14.5,39.5
+ parent: 588
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 11.5,38.5
+ parent: 588
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 11.5,40.5
+ parent: 588
+ - uid: 235
+ components:
+ - type: Transform
+ pos: 16.5,39.5
+ parent: 588
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 17.5,39.5
+ parent: 588
+ - uid: 237
+ components:
+ - type: Transform
+ pos: 18.5,39.5
+ parent: 588
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 19.5,39.5
+ parent: 588
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 20.5,39.5
+ parent: 588
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 588
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 22.5,39.5
+ parent: 588
+ - uid: 242
+ components:
+ - type: Transform
+ pos: 19.5,40.5
+ parent: 588
+ - uid: 243
+ components:
+ - type: Transform
+ pos: 19.5,38.5
+ parent: 588
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 29.5,26.5
+ parent: 588
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 28.5,26.5
+ parent: 588
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 588
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 588
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 588
+ - uid: 442
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 588
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 588
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 588
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 588
+ - uid: 446
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 588
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 588
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 588
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 588
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 588
+ - uid: 451
+ components:
+ - type: Transform
+ pos: 8.5,6.5
+ parent: 588
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 588
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 588
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 588
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 588
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 588
+ - uid: 457
+ components:
+ - type: Transform
+ pos: 7.5,10.5
+ parent: 588
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 29.5,14.5
+ parent: 588
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 24.5,13.5
+ parent: 588
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 30.5,14.5
+ parent: 588
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 588
+ - uid: 494
+ components:
+ - type: Transform
+ pos: 25.5,12.5
+ parent: 588
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 26.5,12.5
+ parent: 588
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 27.5,12.5
+ parent: 588
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 28.5,12.5
+ parent: 588
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 588
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 24.5,12.5
+ parent: 588
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 24.5,14.5
+ parent: 588
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 24.5,15.5
+ parent: 588
+ - uid: 504
+ components:
+ - type: Transform
+ pos: 24.5,16.5
+ parent: 588
+ - uid: 505
+ components:
+ - type: Transform
+ pos: 25.5,16.5
+ parent: 588
+ - uid: 506
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 588
+ - uid: 507
+ components:
+ - type: Transform
+ pos: 27.5,16.5
+ parent: 588
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 588
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 588
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 29.5,13.5
+ parent: 588
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 29.5,15.5
+ parent: 588
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 1.5,22.5
+ parent: 588
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 588
+ - uid: 640
+ components:
+ - type: Transform
+ pos: 0.5,21.5
+ parent: 588
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 0.5,19.5
+ parent: 588
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 588
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 1.5,18.5
+ parent: 588
+ - uid: 657
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 588
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 1.5,15.5
+ parent: 588
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 588
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 588
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 588
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 588
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 5.5,15.5
+ parent: 588
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 588
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 29.5,10.5
+ parent: 588
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 28.5,10.5
+ parent: 588
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 27.5,10.5
+ parent: 588
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 26.5,10.5
+ parent: 588
+ - uid: 672
+ components:
+ - type: Transform
+ pos: 25.5,10.5
+ parent: 588
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 24.5,10.5
+ parent: 588
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 24.5,9.5
+ parent: 588
+ - uid: 675
+ components:
+ - type: Transform
+ pos: 24.5,8.5
+ parent: 588
+ - uid: 676
+ components:
+ - type: Transform
+ pos: 24.5,7.5
+ parent: 588
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 24.5,6.5
+ parent: 588
+ - uid: 678
+ components:
+ - type: Transform
+ pos: 25.5,6.5
+ parent: 588
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 26.5,6.5
+ parent: 588
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 27.5,6.5
+ parent: 588
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 28.5,6.5
+ parent: 588
+ - uid: 682
+ components:
+ - type: Transform
+ pos: 29.5,6.5
+ parent: 588
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 30.5,6.5
+ parent: 588
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 31.5,6.5
+ parent: 588
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 32.5,6.5
+ parent: 588
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 33.5,6.5
+ parent: 588
+ - uid: 687
+ components:
+ - type: Transform
+ pos: 34.5,6.5
+ parent: 588
+ - uid: 688
+ components:
+ - type: Transform
+ pos: 34.5,7.5
+ parent: 588
+ - uid: 689
+ components:
+ - type: Transform
+ pos: 34.5,8.5
+ parent: 588
+ - uid: 690
+ components:
+ - type: Transform
+ pos: 34.5,9.5
+ parent: 588
+ - uid: 691
+ components:
+ - type: Transform
+ pos: 34.5,10.5
+ parent: 588
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 33.5,10.5
+ parent: 588
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 32.5,10.5
+ parent: 588
+ - uid: 694
+ components:
+ - type: Transform
+ pos: 31.5,10.5
+ parent: 588
+ - uid: 695
+ components:
+ - type: Transform
+ pos: 30.5,10.5
+ parent: 588
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 20.5,18.5
+ parent: 588
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 20.5,19.5
+ parent: 588
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 20.5,20.5
+ parent: 588
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 20.5,21.5
+ parent: 588
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 20.5,22.5
+ parent: 588
+ - uid: 738
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 588
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 22.5,20.5
+ parent: 588
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 19.5,20.5
+ parent: 588
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 18.5,20.5
+ parent: 588
+ - uid: 751
+ components:
+ - type: Transform
+ pos: 32.5,22.5
+ parent: 588
+ - uid: 752
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 588
+ - uid: 753
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 588
+ - uid: 754
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 588
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 32.5,18.5
+ parent: 588
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 588
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 30.5,20.5
+ parent: 588
+ - uid: 758
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 588
+ - uid: 759
+ components:
+ - type: Transform
+ pos: 34.5,20.5
+ parent: 588
+ - uid: 779
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 588
+ - uid: 780
+ components:
+ - type: Transform
+ pos: 25.5,18.5
+ parent: 588
+ - uid: 781
+ components:
+ - type: Transform
+ pos: 24.5,18.5
+ parent: 588
+ - uid: 782
+ components:
+ - type: Transform
+ pos: 24.5,19.5
+ parent: 588
+ - uid: 783
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 588
+ - uid: 784
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 588
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 24.5,22.5
+ parent: 588
+ - uid: 786
+ components:
+ - type: Transform
+ pos: 25.5,22.5
+ parent: 588
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 26.5,22.5
+ parent: 588
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 588
+ - uid: 789
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 588
+ - uid: 790
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 588
+ - uid: 791
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 588
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 588
+ - uid: 793
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 588
+ - uid: 794
+ components:
+ - type: Transform
+ pos: 27.5,18.5
+ parent: 588
+ - uid: 795
+ components:
+ - type: Transform
+ pos: 26.5,18.5
+ parent: 588
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 0.5,25.5
+ parent: 588
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 0.5,27.5
+ parent: 588
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 0.5,28.5
+ parent: 588
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 2.5,28.5
+ parent: 588
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 2.5,27.5
+ parent: 588
+ - uid: 869
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 588
+ - uid: 870
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 588
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 6.5,25.5
+ parent: 588
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 6.5,26.5
+ parent: 588
+ - uid: 873
+ components:
+ - type: Transform
+ pos: 6.5,27.5
+ parent: 588
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 6.5,28.5
+ parent: 588
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 5.5,28.5
+ parent: 588
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 4.5,28.5
+ parent: 588
+ - uid: 877
+ components:
+ - type: Transform
+ pos: 4.5,27.5
+ parent: 588
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 4.5,26.5
+ parent: 588
+ - uid: 912
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 588
+ - uid: 927
+ components:
+ - type: Transform
+ pos: 34.5,36.5
+ parent: 588
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 32.5,36.5
+ parent: 588
+ - uid: 996
+ components:
+ - type: Transform
+ pos: 21.5,32.5
+ parent: 588
+ - uid: 1079
+ components:
+ - type: Transform
+ pos: 32.5,35.5
+ parent: 588
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 31.5,35.5
+ parent: 588
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: 32.5,34.5
+ parent: 588
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 588
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: 24.5,35.5
+ parent: 588
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 588
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 588
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 28.5,35.5
+ parent: 588
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: 4.5,36.5
+ parent: 588
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: 33.5,34.5
+ parent: 588
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: 5.5,35.5
+ parent: 588
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: 29.5,36.5
+ parent: 588
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: 34.5,34.5
+ parent: 588
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: 34.5,35.5
+ parent: 588
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: 26.5,35.5
+ parent: 588
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 25.5,35.5
+ parent: 588
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: 33.5,36.5
+ parent: 588
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 30.5,35.5
+ parent: 588
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 16.5,26.5
+ parent: 588
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: 17.5,26.5
+ parent: 588
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 588
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: 17.5,27.5
+ parent: 588
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 17.5,28.5
+ parent: 588
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 588
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 588
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 20.5,26.5
+ parent: 588
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: 21.5,26.5
+ parent: 588
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 22.5,26.5
+ parent: 588
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: 21.5,27.5
+ parent: 588
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: 21.5,28.5
+ parent: 588
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 588
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 588
+ - uid: 1134
+ components:
+ - type: Transform
+ pos: 24.5,26.5
+ parent: 588
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: 25.5,26.5
+ parent: 588
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 26.5,26.5
+ parent: 588
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 25.5,27.5
+ parent: 588
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 588
+ - uid: 1139
+ components:
+ - type: Transform
+ pos: 25.5,25.5
+ parent: 588
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 25.5,24.5
+ parent: 588
+ - uid: 1170
+ components:
+ - type: Transform
+ pos: 3.5,36.5
+ parent: 588
+ - uid: 1171
+ components:
+ - type: Transform
+ pos: 2.5,36.5
+ parent: 588
+ - uid: 1172
+ components:
+ - type: Transform
+ pos: 1.5,36.5
+ parent: 588
+ - uid: 1173
+ components:
+ - type: Transform
+ pos: 0.5,36.5
+ parent: 588
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 588
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: 6.5,34.5
+ parent: 588
+ - uid: 1176
+ components:
+ - type: Transform
+ pos: 7.5,34.5
+ parent: 588
+ - uid: 1177
+ components:
+ - type: Transform
+ pos: 8.5,34.5
+ parent: 588
+ - uid: 1178
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 588
+ - uid: 1179
+ components:
+ - type: Transform
+ pos: 10.5,34.5
+ parent: 588
+ - uid: 1268
+ components:
+ - type: Transform
+ pos: 30.5,26.5
+ parent: 588
+ - uid: 1269
+ components:
+ - type: Transform
+ pos: 29.5,27.5
+ parent: 588
+ - uid: 1270
+ components:
+ - type: Transform
+ pos: 29.5,28.5
+ parent: 588
+ - uid: 1271
+ components:
+ - type: Transform
+ pos: 29.5,25.5
+ parent: 588
+ - uid: 1272
+ components:
+ - type: Transform
+ pos: 29.5,24.5
+ parent: 588
+ - uid: 1273
+ components:
+ - type: Transform
+ pos: 32.5,26.5
+ parent: 588
+ - uid: 1274
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 588
+ - uid: 1275
+ components:
+ - type: Transform
+ pos: 34.5,26.5
+ parent: 588
+ - uid: 1276
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 588
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 588
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: 33.5,25.5
+ parent: 588
+ - uid: 1279
+ components:
+ - type: Transform
+ pos: 33.5,24.5
+ parent: 588
+ - uid: 1306
+ components:
+ - type: Transform
+ pos: 27.5,40.5
+ parent: 588
+ - uid: 1307
+ components:
+ - type: Transform
+ pos: 26.5,40.5
+ parent: 588
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: 25.5,40.5
+ parent: 588
+ - uid: 1309
+ components:
+ - type: Transform
+ pos: 24.5,40.5
+ parent: 588
+ - uid: 1310
+ components:
+ - type: Transform
+ pos: 24.5,39.5
+ parent: 588
+ - uid: 1311
+ components:
+ - type: Transform
+ pos: 24.5,38.5
+ parent: 588
+ - uid: 1312
+ components:
+ - type: Transform
+ pos: 25.5,38.5
+ parent: 588
+ - uid: 1313
+ components:
+ - type: Transform
+ pos: 26.5,38.5
+ parent: 588
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 27.5,38.5
+ parent: 588
+ - uid: 1315
+ components:
+ - type: Transform
+ pos: 28.5,38.5
+ parent: 588
+ - uid: 1316
+ components:
+ - type: Transform
+ pos: 29.5,38.5
+ parent: 588
+ - uid: 1317
+ components:
+ - type: Transform
+ pos: 30.5,38.5
+ parent: 588
+ - uid: 1318
+ components:
+ - type: Transform
+ pos: 30.5,39.5
+ parent: 588
+ - uid: 1426
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 588
+ - uid: 1427
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 588
+ - uid: 1428
+ components:
+ - type: Transform
+ pos: 11.5,44.5
+ parent: 588
+ - uid: 1429
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 588
+ - uid: 1430
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 588
+ - uid: 1431
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 588
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: 11.5,48.5
+ parent: 588
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 588
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: 9.5,45.5
+ parent: 588
+ - uid: 1435
+ components:
+ - type: Transform
+ pos: 8.5,45.5
+ parent: 588
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 588
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 13.5,45.5
+ parent: 588
+ - uid: 1438
+ components:
+ - type: Transform
+ pos: 14.5,45.5
+ parent: 588
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: 13.5,46.5
+ parent: 588
+ - uid: 1440
+ components:
+ - type: Transform
+ pos: 13.5,47.5
+ parent: 588
+ - uid: 1441
+ components:
+ - type: Transform
+ pos: 9.5,46.5
+ parent: 588
+ - uid: 1442
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 588
+ - uid: 1443
+ components:
+ - type: Transform
+ pos: 10.5,43.5
+ parent: 588
+ - uid: 1444
+ components:
+ - type: Transform
+ pos: 9.5,43.5
+ parent: 588
+ - uid: 1445
+ components:
+ - type: Transform
+ pos: 12.5,43.5
+ parent: 588
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 588
+ - uid: 1447
+ components:
+ - type: Transform
+ pos: 3.5,42.5
+ parent: 588
+ - uid: 1448
+ components:
+ - type: Transform
+ pos: 3.5,43.5
+ parent: 588
+ - uid: 1449
+ components:
+ - type: Transform
+ pos: 3.5,44.5
+ parent: 588
+ - uid: 1450
+ components:
+ - type: Transform
+ pos: 3.5,45.5
+ parent: 588
+ - uid: 1451
+ components:
+ - type: Transform
+ pos: 3.5,46.5
+ parent: 588
+ - uid: 1452
+ components:
+ - type: Transform
+ pos: 3.5,47.5
+ parent: 588
+ - uid: 1453
+ components:
+ - type: Transform
+ pos: 3.5,48.5
+ parent: 588
+ - uid: 1454
+ components:
+ - type: Transform
+ pos: 0.5,45.5
+ parent: 588
+ - uid: 1455
+ components:
+ - type: Transform
+ pos: 1.5,45.5
+ parent: 588
+ - uid: 1456
+ components:
+ - type: Transform
+ pos: 2.5,45.5
+ parent: 588
+ - uid: 1457
+ components:
+ - type: Transform
+ pos: 3.5,45.5
+ parent: 588
+ - uid: 1458
+ components:
+ - type: Transform
+ pos: 4.5,45.5
+ parent: 588
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: 5.5,45.5
+ parent: 588
+ - uid: 1460
+ components:
+ - type: Transform
+ pos: 6.5,45.5
+ parent: 588
+ - uid: 1529
+ components:
+ - type: Transform
+ pos: 19.5,47.5
+ parent: 588
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: 19.5,48.5
+ parent: 588
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 18.5,48.5
+ parent: 588
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: 17.5,48.5
+ parent: 588
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 16.5,48.5
+ parent: 588
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 16.5,47.5
+ parent: 588
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: 16.5,46.5
+ parent: 588
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 16.5,45.5
+ parent: 588
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: 16.5,44.5
+ parent: 588
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 16.5,43.5
+ parent: 588
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: 16.5,42.5
+ parent: 588
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: 17.5,42.5
+ parent: 588
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 18.5,42.5
+ parent: 588
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: 19.5,42.5
+ parent: 588
+ - uid: 1543
+ components:
+ - type: Transform
+ pos: 20.5,42.5
+ parent: 588
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: 21.5,42.5
+ parent: 588
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: 22.5,42.5
+ parent: 588
+ - uid: 1546
+ components:
+ - type: Transform
+ pos: 22.5,43.5
+ parent: 588
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: 22.5,44.5
+ parent: 588
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: 22.5,45.5
+ parent: 588
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: 22.5,46.5
+ parent: 588
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: 22.5,47.5
+ parent: 588
+ - uid: 1551
+ components:
+ - type: Transform
+ pos: 22.5,48.5
+ parent: 588
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: 21.5,48.5
+ parent: 588
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: 20.5,48.5
+ parent: 588
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: 19.5,43.5
+ parent: 588
+ - uid: 1555
+ components:
+ - type: Transform
+ pos: 19.5,44.5
+ parent: 588
+ - uid: 1556
+ components:
+ - type: Transform
+ pos: 19.5,45.5
+ parent: 588
+ - uid: 1557
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 588
+ - uid: 1807
+ components:
+ - type: Transform
+ pos: 27.5,42.5
+ parent: 588
+ - uid: 1808
+ components:
+ - type: Transform
+ pos: 27.5,43.5
+ parent: 588
+ - uid: 1809
+ components:
+ - type: Transform
+ pos: 27.5,44.5
+ parent: 588
+ - uid: 1810
+ components:
+ - type: Transform
+ pos: 27.5,45.5
+ parent: 588
+ - uid: 1811
+ components:
+ - type: Transform
+ pos: 27.5,46.5
+ parent: 588
+ - uid: 1812
+ components:
+ - type: Transform
+ pos: 27.5,47.5
+ parent: 588
+ - uid: 1813
+ components:
+ - type: Transform
+ pos: 27.5,48.5
+ parent: 588
+ - uid: 1814
+ components:
+ - type: Transform
+ pos: 28.5,45.5
+ parent: 588
+ - uid: 1815
+ components:
+ - type: Transform
+ pos: 29.5,45.5
+ parent: 588
+ - uid: 1816
+ components:
+ - type: Transform
+ pos: 30.5,45.5
+ parent: 588
+ - uid: 1817
+ components:
+ - type: Transform
+ pos: 26.5,45.5
+ parent: 588
+ - uid: 1818
+ components:
+ - type: Transform
+ pos: 25.5,45.5
+ parent: 588
+ - uid: 1819
+ components:
+ - type: Transform
+ pos: 24.5,45.5
+ parent: 588
+ - uid: 1820
+ components:
+ - type: Transform
+ pos: 26.5,47.5
+ parent: 588
+ - uid: 1821
+ components:
+ - type: Transform
+ pos: 25.5,47.5
+ parent: 588
+ - uid: 1822
+ components:
+ - type: Transform
+ pos: 28.5,47.5
+ parent: 588
+ - uid: 1823
+ components:
+ - type: Transform
+ pos: 29.5,47.5
+ parent: 588
+ - uid: 1824
+ components:
+ - type: Transform
+ pos: 26.5,43.5
+ parent: 588
+ - uid: 1825
+ components:
+ - type: Transform
+ pos: 25.5,43.5
+ parent: 588
+ - uid: 1826
+ components:
+ - type: Transform
+ pos: 28.5,43.5
+ parent: 588
+ - uid: 1827
+ components:
+ - type: Transform
+ pos: 29.5,43.5
+ parent: 588
+- proto: CableApcStack1
+ entities:
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 16.273203,19.650417
+ parent: 588
+- proto: CableHV
+ entities:
+ - uid: 462
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 588
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 588
+ - uid: 468
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 588
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 26.5,15.5
+ parent: 588
+ - uid: 486
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 588
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 588
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 588
+ - uid: 489
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 588
+ - uid: 743
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 588
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 588
+ - uid: 745
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 588
+ - uid: 746
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 588
+ - uid: 768
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 588
+ - uid: 778
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 588
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 588
+ - uid: 979
+ components:
+ - type: Transform
+ pos: 15.5,31.5
+ parent: 588
+ - uid: 980
+ components:
+ - type: Transform
+ pos: 16.5,31.5
+ parent: 588
+ - uid: 981
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 588
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 18.5,31.5
+ parent: 588
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 22.5,31.5
+ parent: 588
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 588
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 588
+ - uid: 986
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 588
+ - uid: 987
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 588
+ - uid: 989
+ components:
+ - type: Transform
+ pos: 18.5,32.5
+ parent: 588
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 19.5,32.5
+ parent: 588
+ - uid: 991
+ components:
+ - type: Transform
+ pos: 20.5,32.5
+ parent: 588
+ - uid: 992
+ components:
+ - type: Transform
+ pos: 21.5,32.5
+ parent: 588
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 22.5,32.5
+ parent: 588
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: 16.5,30.5
+ parent: 588
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: 24.5,30.5
+ parent: 588
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: 18.5,44.5
+ parent: 588
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: 18.5,45.5
+ parent: 588
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: 20.5,45.5
+ parent: 588
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: 20.5,44.5
+ parent: 588
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: 19.5,44.5
+ parent: 588
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: 17.5,46.5
+ parent: 588
+ - uid: 1523
+ components:
+ - type: Transform
+ pos: 21.5,46.5
+ parent: 588
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 588
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 588
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 588
+- proto: CableMV
+ entities:
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 588
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 588
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 588
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 588
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 588
+ - uid: 777
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 588
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 588
+ - uid: 1528
+ components:
+ - type: Transform
+ pos: 19.5,47.5
+ parent: 588
+- proto: CableTerminal
+ entities:
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 588
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 588
+ - uid: 465
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 588
+ - uid: 767
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 588
+ - uid: 970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,31.5
+ parent: 588
+ - uid: 976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,31.5
+ parent: 588
+ - uid: 1558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,45.5
+ parent: 588
+ - uid: 1559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,45.5
+ parent: 588
+- proto: Carpet
+ entities:
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: 24.5,0.5
+ parent: 588
+ - uid: 1633
+ components:
+ - type: Transform
+ pos: 25.5,0.5
+ parent: 588
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: 25.5,1.5
+ parent: 588
+ - uid: 1635
+ components:
+ - type: Transform
+ pos: 24.5,1.5
+ parent: 588
+- proto: CarpetBlue
+ entities:
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: 27.5,0.5
+ parent: 588
+ - uid: 1637
+ components:
+ - type: Transform
+ pos: 28.5,1.5
+ parent: 588
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 27.5,1.5
+ parent: 588
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 28.5,0.5
+ parent: 588
+- proto: CarpetPurple
+ entities:
+ - uid: 1626
+ components:
+ - type: Transform
+ pos: 25.5,4.5
+ parent: 588
+ - uid: 1627
+ components:
+ - type: Transform
+ pos: 25.5,3.5
+ parent: 588
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 26.5,3.5
+ parent: 588
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 27.5,3.5
+ parent: 588
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 27.5,4.5
+ parent: 588
+ - uid: 1631
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 588
+- proto: Catwalk
+ entities:
+ - uid: 141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,24.5
+ parent: 588
+ - uid: 142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,26.5
+ parent: 588
+ - uid: 143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,25.5
+ parent: 588
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 588
+ - uid: 249
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 588
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 588
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 588
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 588
+ - uid: 473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,12.5
+ parent: 588
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 588
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 588
+ - uid: 512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,12.5
+ parent: 588
+ - uid: 513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,12.5
+ parent: 588
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 25.5,16.5
+ parent: 588
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 588
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 27.5,16.5
+ parent: 588
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 588
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 588
+ - uid: 520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,12.5
+ parent: 588
+ - uid: 521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,12.5
+ parent: 588
+ - uid: 769
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 588
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 588
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 588
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 5.5,31.5
+ parent: 588
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 6.5,31.5
+ parent: 588
+ - uid: 836
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 588
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 8.5,31.5
+ parent: 588
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 9.5,31.5
+ parent: 588
+ - uid: 839
+ components:
+ - type: Transform
+ pos: 6.5,32.5
+ parent: 588
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 588
+ - uid: 841
+ components:
+ - type: Transform
+ pos: 5.5,32.5
+ parent: 588
+ - uid: 842
+ components:
+ - type: Transform
+ pos: 7.5,32.5
+ parent: 588
+ - uid: 843
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 588
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 7.5,30.5
+ parent: 588
+ - uid: 861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,27.5
+ parent: 588
+ - uid: 862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,28.5
+ parent: 588
+ - uid: 863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,28.5
+ parent: 588
+ - uid: 864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,27.5
+ parent: 588
+ - uid: 865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,26.5
+ parent: 588
+ - uid: 879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,40.5
+ parent: 588
+ - uid: 880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,39.5
+ parent: 588
+ - uid: 881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,39.5
+ parent: 588
+ - uid: 882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,39.5
+ parent: 588
+ - uid: 883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,39.5
+ parent: 588
+ - uid: 884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,39.5
+ parent: 588
+ - uid: 885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,38.5
+ parent: 588
+ - uid: 914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,10.5
+ parent: 588
+ - uid: 915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,10.5
+ parent: 588
+ - uid: 916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,10.5
+ parent: 588
+ - uid: 917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,10.5
+ parent: 588
+ - uid: 918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,10.5
+ parent: 588
+ - uid: 919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,6.5
+ parent: 588
+ - uid: 920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,6.5
+ parent: 588
+ - uid: 921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,6.5
+ parent: 588
+ - uid: 922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,6.5
+ parent: 588
+ - uid: 923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,6.5
+ parent: 588
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 15.5,31.5
+ parent: 588
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 16.5,31.5
+ parent: 588
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 588
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 18.5,31.5
+ parent: 588
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 19.5,31.5
+ parent: 588
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 20.5,31.5
+ parent: 588
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 21.5,31.5
+ parent: 588
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 22.5,31.5
+ parent: 588
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 588
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 588
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 588
+ - uid: 994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,32.5
+ parent: 588
+ - uid: 1158
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 588
+ - uid: 1180
+ components:
+ - type: Transform
+ pos: 1.5,36.5
+ parent: 588
+ - uid: 1181
+ components:
+ - type: Transform
+ pos: 2.5,36.5
+ parent: 588
+ - uid: 1182
+ components:
+ - type: Transform
+ pos: 3.5,36.5
+ parent: 588
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: 4.5,36.5
+ parent: 588
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: 5.5,36.5
+ parent: 588
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: 5.5,34.5
+ parent: 588
+ - uid: 1186
+ components:
+ - type: Transform
+ pos: 6.5,34.5
+ parent: 588
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 7.5,34.5
+ parent: 588
+ - uid: 1188
+ components:
+ - type: Transform
+ pos: 8.5,34.5
+ parent: 588
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 588
+ - uid: 1320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,40.5
+ parent: 588
+ - uid: 1321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,40.5
+ parent: 588
+ - uid: 1322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,40.5
+ parent: 588
+ - uid: 1323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,38.5
+ parent: 588
+ - uid: 1324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,38.5
+ parent: 588
+ - uid: 1325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,38.5
+ parent: 588
+ - uid: 1326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,38.5
+ parent: 588
+ - uid: 1327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,38.5
+ parent: 588
+ - uid: 1331
+ components:
+ - type: Transform
+ pos: 4.5,45.5
+ parent: 588
+ - uid: 1336
+ components:
+ - type: Transform
+ pos: 2.5,45.5
+ parent: 588
+ - uid: 1339
+ components:
+ - type: Transform
+ pos: 3.5,45.5
+ parent: 588
+ - uid: 1342
+ components:
+ - type: Transform
+ pos: 3.5,46.5
+ parent: 588
+ - uid: 1344
+ components:
+ - type: Transform
+ pos: 3.5,44.5
+ parent: 588
+ - uid: 1346
+ components:
+ - type: Transform
+ pos: 2.5,44.5
+ parent: 588
+ - uid: 1347
+ components:
+ - type: Transform
+ pos: 4.5,44.5
+ parent: 588
+ - uid: 1348
+ components:
+ - type: Transform
+ pos: 4.5,44.5
+ parent: 588
+ - uid: 1349
+ components:
+ - type: Transform
+ pos: 4.5,46.5
+ parent: 588
+ - uid: 1350
+ components:
+ - type: Transform
+ pos: 2.5,46.5
+ parent: 588
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: 17.5,42.5
+ parent: 588
+ - uid: 1495
+ components:
+ - type: Transform
+ pos: 18.5,42.5
+ parent: 588
+ - uid: 1496
+ components:
+ - type: Transform
+ pos: 19.5,42.5
+ parent: 588
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: 20.5,42.5
+ parent: 588
+ - uid: 1498
+ components:
+ - type: Transform
+ pos: 21.5,42.5
+ parent: 588
+ - uid: 1499
+ components:
+ - type: Transform
+ pos: 17.5,48.5
+ parent: 588
+ - uid: 1500
+ components:
+ - type: Transform
+ pos: 18.5,48.5
+ parent: 588
+ - uid: 1501
+ components:
+ - type: Transform
+ pos: 19.5,48.5
+ parent: 588
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: 20.5,48.5
+ parent: 588
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: 21.5,48.5
+ parent: 588
+ - uid: 1516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,44.5
+ parent: 588
+ - uid: 1517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,45.5
+ parent: 588
+ - uid: 1518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,45.5
+ parent: 588
+ - uid: 1519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,45.5
+ parent: 588
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 588
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 588
+ - uid: 1584
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 588
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 588
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 588
+ - uid: 1587
+ components:
+ - type: Transform
+ pos: 24.5,22.5
+ parent: 588
+ - uid: 1588
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 588
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 588
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: 24.5,19.5
+ parent: 588
+ - uid: 1591
+ components:
+ - type: Transform
+ pos: 24.5,18.5
+ parent: 588
+- proto: Chair
+ entities:
+ - uid: 357
+ components:
+ - type: Transform
+ pos: 23.5,4.5
+ parent: 588
+ - uid: 421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,9.5
+ parent: 588
+ - uid: 422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,9.5
+ parent: 588
+ - uid: 423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,7.5
+ parent: 588
+ - uid: 533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,14.5
+ parent: 588
+ - uid: 534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,15.5
+ parent: 588
+ - uid: 537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,14.5
+ parent: 588
+ - uid: 569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,13.5
+ parent: 588
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 18.5,19.5
+ parent: 588
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 19.5,19.5
+ parent: 588
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 22.5,19.5
+ parent: 588
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 21.5,19.5
+ parent: 588
+ - uid: 1280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,38.5
+ parent: 588
+ - uid: 1281
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,38.5
+ parent: 588
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 588
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 588
+ - uid: 1865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,7.5
+ parent: 588
+- proto: ChairFolding
+ entities:
+ - uid: 344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,0.5
+ parent: 588
+ - uid: 345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,1.5
+ parent: 588
+ - uid: 346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,0.5
+ parent: 588
+ - uid: 347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,3.5
+ parent: 588
+ - uid: 348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,3.5
+ parent: 588
+ - uid: 349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,4.5
+ parent: 588
+ - uid: 350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,1.5
+ parent: 588
+ - uid: 351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,0.5
+ parent: 588
+ - uid: 352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,4.5
+ parent: 588
+ - uid: 353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,4.5
+ parent: 588
+ - uid: 1212
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,36.5
+ parent: 588
+- proto: ChairFoldingSpawnFolded
+ entities:
+ - uid: 354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.53707,1.6455604
+ parent: 588
+ - uid: 355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.595894,3.4052575
+ parent: 588
+- proto: ChairOfficeDark
+ entities:
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 19.5,1.5
+ parent: 588
+ - uid: 331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,3.5
+ parent: 588
+ - uid: 358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,0.5
+ parent: 588
+ - uid: 359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,0.5
+ parent: 588
+ - uid: 360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,0.5
+ parent: 588
+ - uid: 361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,0.5
+ parent: 588
+ - uid: 571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,12.5
+ parent: 588
+- proto: ChairOfficeLight
+ entities:
+ - uid: 631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,19.5
+ parent: 588
+ - uid: 638
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,21.5
+ parent: 588
+ - uid: 707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,21.5
+ parent: 588
+- proto: ChairPilotSeat
+ entities:
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 588
+- proto: ChairWood
+ entities:
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 588
+ - uid: 1050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,27.5
+ parent: 588
+ - uid: 1231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,34.5
+ parent: 588
+ - uid: 1232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,36.5
+ parent: 588
+ - uid: 1790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,46.5
+ parent: 588
+ - uid: 1791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,44.5
+ parent: 588
+- proto: CigarGold
+ entities:
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: 7.4719925,36.539555
+ parent: 588
+- proto: ClosetBombFilled
+ entities:
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 12.5,27.5
+ parent: 588
+ - uid: 1026
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 588
+- proto: ClosetWallMaintenanceFilledRandom
+ entities:
+ - uid: 499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,15.5
+ parent: 588
+ - uid: 868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,27.5
+ parent: 588
+ - uid: 1564
+ components:
+ - type: Transform
+ pos: 17.5,43.5
+ parent: 588
+ - uid: 1565
+ components:
+ - type: Transform
+ pos: 21.5,43.5
+ parent: 588
+- proto: ClothingHeadHatPwig
+ entities:
+ - uid: 369
+ components:
+ - type: Transform
+ pos: 25.824945,3.5783403
+ parent: 588
+- proto: ClothingHeadHelmetThunderdome
+ entities:
+ - uid: 1240
+ components:
+ - type: Transform
+ pos: 34.666565,24.66942
+ parent: 588
+- proto: ClothingNeckLawyerbadge
+ entities:
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 21.586027,4.583762
+ parent: 588
+- proto: ClothingOuterArmorHeavy
+ entities:
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 30.47641,8.530076
+ parent: 588
+ - type: GroupExamine
+ group:
+ - hoverMessage: ""
+ contextText: verb-examine-group-other
+ icon: /Textures/Interface/examine-star.png
+ components:
+ - Armor
+ - ClothingSpeedModifier
+ entries:
+ - message: This decreases your speed by [color=yellow]10%[/color].
+ priority: 0
+ component: ClothingSpeedModifier
+ - message: >-
+ It provides the following protection:
+
+ - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color].
+
+ - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color].
+
+ - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]50%[/color].
+
+ - [color=yellow]Heat[/color] damage reduced by [color=lightblue]30%[/color].
+
+ - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]25%[/color].
+
+ - [color=orange]Explosion[/color] damage reduced by [color=lightblue]30%[/color].
+ priority: 0
+ component: Armor
+ title: null
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 30.708948,8.655076
+ parent: 588
+ - type: GroupExamine
+ group:
+ - hoverMessage: ""
+ contextText: verb-examine-group-other
+ icon: /Textures/Interface/examine-star.png
+ components:
+ - Armor
+ - ClothingSpeedModifier
+ entries:
+ - message: This decreases your speed by [color=yellow]10%[/color].
+ priority: 0
+ component: ClothingSpeedModifier
+ - message: >-
+ It provides the following protection:
+
+ - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color].
+
+ - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color].
+
+ - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]50%[/color].
+
+ - [color=yellow]Heat[/color] damage reduced by [color=lightblue]30%[/color].
+
+ - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]25%[/color].
+
+ - [color=orange]Explosion[/color] damage reduced by [color=lightblue]30%[/color].
+ priority: 0
+ component: Armor
+ title: null
+- proto: ClothingOuterRobesJudge
+ entities:
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 27.40101,3.677678
+ parent: 588
+- proto: ClusterBangFull
+ entities:
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 33.484257,28.42918
+ parent: 588
+- proto: ComputerAlert
+ entities:
+ - uid: 999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,30.5
+ parent: 588
+ - uid: 1001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,30.5
+ parent: 588
+ - uid: 1561
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,46.5
+ parent: 588
+- proto: computerBodyScanner
+ entities:
+ - uid: 1394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,44.5
+ parent: 588
+ - uid: 1423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,44.5
+ parent: 588
+- proto: ComputerCriminalRecords
+ entities:
+ - uid: 461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,0.5
+ parent: 588
+ - uid: 634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,18.5
+ parent: 588
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 1000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,30.5
+ parent: 588
+ - uid: 1002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,30.5
+ parent: 588
+ - uid: 1560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,46.5
+ parent: 588
+- proto: ComputerSurveillanceCameraMonitor
+ entities:
+ - uid: 635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,21.5
+ parent: 588
+- proto: ComputerTelevision
+ entities:
+ - uid: 1229
+ components:
+ - type: Transform
+ pos: 12.5,34.5
+ parent: 588
+ - uid: 1230
+ components:
+ - type: Transform
+ pos: 22.5,36.5
+ parent: 588
+- proto: CrateEngineeringGear
+ entities:
+ - uid: 1008
+ components:
+ - type: Transform
+ pos: 26.5,30.5
+ parent: 588
+- proto: CrateFunBoardGames
+ entities:
+ - uid: 1845
+ components:
+ - type: Transform
+ pos: 26.5,48.5
+ parent: 588
+- proto: CrateFunParty
+ entities:
+ - uid: 1876
+ components:
+ - type: Transform
+ pos: 25.5,43.5
+ parent: 588
+- proto: CrayonBox
+ entities:
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: 20.47107,24.608877
+ parent: 588
+- proto: CryoPod
+ entities:
+ - uid: 1395
+ components:
+ - type: Transform
+ pos: 8.5,47.5
+ parent: 588
+ - uid: 1397
+ components:
+ - type: Transform
+ pos: 14.5,47.5
+ parent: 588
+- proto: DebugSMES
+ entities:
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 22.5,32.5
+ parent: 588
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 18.5,32.5
+ parent: 588
+- proto: DeployableBarrier
+ entities:
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: 32.5,24.5
+ parent: 588
+- proto: DiseaseDiagnoser
+ entities:
+ - uid: 1424
+ components:
+ - type: Transform
+ pos: 14.5,44.5
+ parent: 588
+- proto: DisposalUnit
+ entities:
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 588
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 588
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 9.5,22.5
+ parent: 588
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: 22.5,38.5
+ parent: 588
+- proto: DoorElectronics
+ entities:
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 12.581519,21.410114
+ parent: 588
+ - uid: 1074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.639427,25.54549
+ parent: 588
+- proto: Dresser
+ entities:
+ - uid: 1051
+ components:
+ - type: Transform
+ pos: 22.5,25.5
+ parent: 588
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: 20.5,27.5
+ parent: 588
+ - uid: 1061
+ components:
+ - type: Transform
+ pos: 24.5,25.5
+ parent: 588
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: 21.5,36.5
+ parent: 588
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 13.5,34.5
+ parent: 588
+- proto: DrinkShinyFlask
+ entities:
+ - uid: 1874
+ components:
+ - type: Transform
+ pos: 6.890398,22.663696
+ parent: 588
+- proto: DrinkWaterCup
+ entities:
+ - uid: 762
+ components:
+ - type: Transform
+ pos: 6.313587,19.590261
+ parent: 588
+ - uid: 763
+ components:
+ - type: Transform
+ pos: 6.441377,19.419968
+ parent: 588
+- proto: EmergencyLight
+ entities:
+ - uid: 1716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,6.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: 21.5,10.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1718
+ components:
+ - type: Transform
+ pos: 30.5,4.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,0.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,0.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,12.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1722
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: 31.5,22.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,25.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,25.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,27.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,27.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,27.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,25.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,7.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,9.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,20.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1734
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,30.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1736
+ components:
+ - type: Transform
+ pos: 11.5,32.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,40.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1738
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,40.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,30.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1740
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,19.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,21.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,18.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,34.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,34.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,38.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,44.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1749
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,44.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,46.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: 30.5,6.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,10.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+ - uid: 1832
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,46.5
+ parent: 588
+ - type: PointLight
+ enabled: True
+ - type: ActiveEmergencyLight
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,26.5
+ parent: 588
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 588
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 588
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 588
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 588
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 588
+ - uid: 1328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,39.5
+ parent: 588
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: 17.5,44.5
+ parent: 588
+- proto: filingCabinetRandom
+ entities:
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 21.5,0.5
+ parent: 588
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 20.5,0.5
+ parent: 588
+- proto: filingCabinetTallRandom
+ entities:
+ - uid: 1396
+ components:
+ - type: Transform
+ pos: 8.5,44.5
+ parent: 588
+- proto: Flash
+ entities:
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: 10.726851,19.047483
+ parent: 588
+- proto: FloodlightBroken
+ entities:
+ - uid: 1193
+ components:
+ - type: Transform
+ pos: 9.462372,35.6454
+ parent: 588
+- proto: FloorDrain
+ entities:
+ - uid: 944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,28.5
+ parent: 588
+ - type: Fixtures
+ fixtures: {}
+ - uid: 945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,28.5
+ parent: 588
+ - type: Fixtures
+ fixtures: {}
+- proto: FloorLavaEntity
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,8.5
+ parent: 588
+ - uid: 49
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,8.5
+ parent: 588
+ - uid: 458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,10.5
+ parent: 588
+ - uid: 459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,8.5
+ parent: 588
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 588
+ - uid: 645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,20.5
+ parent: 588
+ - uid: 820
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 588
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 588
+ - uid: 822
+ components:
+ - type: Transform
+ pos: 5.5,31.5
+ parent: 588
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 5.5,32.5
+ parent: 588
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 588
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 588
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 7.5,30.5
+ parent: 588
+ - uid: 827
+ components:
+ - type: Transform
+ pos: 6.5,32.5
+ parent: 588
+ - uid: 828
+ components:
+ - type: Transform
+ pos: 7.5,32.5
+ parent: 588
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 588
+ - uid: 830
+ components:
+ - type: Transform
+ pos: 6.5,31.5
+ parent: 588
+ - uid: 831
+ components:
+ - type: Transform
+ pos: 8.5,30.5
+ parent: 588
+ - uid: 857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,39.5
+ parent: 588
+ - uid: 858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,39.5
+ parent: 588
+ - uid: 859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,38.5
+ parent: 588
+ - uid: 860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,40.5
+ parent: 588
+ - uid: 887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,40.5
+ parent: 588
+ - uid: 889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,39.5
+ parent: 588
+ - uid: 906
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 588
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 588
+ - uid: 908
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 588
+ - uid: 909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,6.5
+ parent: 588
+ - uid: 910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,6.5
+ parent: 588
+ - uid: 911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,9.5
+ parent: 588
+ - uid: 913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,10.5
+ parent: 588
+ - uid: 1247
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 588
+ - uid: 1248
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 588
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 588
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 588
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 588
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 588
+ - uid: 1253
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 588
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 588
+ - uid: 1333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,46.5
+ parent: 588
+ - uid: 1341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,45.5
+ parent: 588
+ - uid: 1343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,46.5
+ parent: 588
+ - uid: 1345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,46.5
+ parent: 588
+ - uid: 1359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,47.5
+ parent: 588
+ - uid: 1360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,46.5
+ parent: 588
+ - uid: 1361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,47.5
+ parent: 588
+ - uid: 1362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,47.5
+ parent: 588
+ - uid: 1363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,44.5
+ parent: 588
+ - uid: 1364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,47.5
+ parent: 588
+ - uid: 1365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,44.5
+ parent: 588
+ - uid: 1366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,45.5
+ parent: 588
+ - uid: 1367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,44.5
+ parent: 588
+ - uid: 1368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,43.5
+ parent: 588
+ - uid: 1369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,43.5
+ parent: 588
+ - uid: 1370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,42.5
+ parent: 588
+ - uid: 1371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,42.5
+ parent: 588
+ - uid: 1372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,43.5
+ parent: 588
+ - uid: 1373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,44.5
+ parent: 588
+ - uid: 1374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,46.5
+ parent: 588
+ - uid: 1375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,43.5
+ parent: 588
+- proto: FoodPlateTrash
+ entities:
+ - uid: 1692
+ components:
+ - type: Transform
+ pos: 28.80027,47.44947
+ parent: 588
+- proto: GasFilter
+ entities:
+ - uid: 1415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,47.5
+ parent: 588
+- proto: GasPipeBend
+ entities:
+ - uid: 1412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,46.5
+ parent: 588
+ - uid: 1414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,46.5
+ parent: 588
+ - uid: 1416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,47.5
+ parent: 588
+ - uid: 1421
+ components:
+ - type: Transform
+ pos: 13.5,47.5
+ parent: 588
+- proto: GasPipeStraight
+ entities:
+ - uid: 1418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,47.5
+ parent: 588
+ - uid: 1420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,46.5
+ parent: 588
+- proto: GasPipeTJunction
+ entities:
+ - uid: 1410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,46.5
+ parent: 588
+ - uid: 1411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,46.5
+ parent: 588
+ - uid: 1417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,46.5
+ parent: 588
+ - uid: 1419
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,46.5
+ parent: 588
+- proto: GasPort
+ entities:
+ - uid: 1404
+ components:
+ - type: Transform
+ pos: 9.5,48.5
+ parent: 588
+ - uid: 1422
+ components:
+ - type: Transform
+ pos: 12.5,48.5
+ parent: 588
+- proto: GasPressurePump
+ entities:
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 588
+- proto: GasThermoMachineFreezer
+ entities:
+ - uid: 1403
+ components:
+ - type: Transform
+ pos: 10.5,48.5
+ parent: 588
+- proto: GatfruitSeeds
+ entities:
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 8.528373,27.49547
+ parent: 588
+- proto: Gauze
+ entities:
+ - uid: 1482
+ components:
+ - type: Transform
+ pos: 8.452288,42.514927
+ parent: 588
+- proto: GeneratorRTG
+ entities:
+ - uid: 742
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 588
+ - uid: 748
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 588
+- proto: Girder
+ entities:
+ - uid: 1301
+ components:
+ - type: Transform
+ pos: 26.5,39.5
+ parent: 588
+- proto: Grille
+ entities:
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 15.5,34.5
+ parent: 588
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 19.5,36.5
+ parent: 588
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 19.5,34.5
+ parent: 588
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 15.5,36.5
+ parent: 588
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 15.5,9.5
+ parent: 588
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 588
+ - uid: 407
+ components:
+ - type: Transform
+ pos: 19.5,9.5
+ parent: 588
+ - uid: 408
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 588
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 12.5,15.5
+ parent: 588
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 588
+ - uid: 586
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 588
+ - uid: 587
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 588
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 588
+ - uid: 1465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,43.5
+ parent: 588
+ - uid: 1466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,43.5
+ parent: 588
+- proto: GrilleBroken
+ entities:
+ - uid: 1302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,39.5
+ parent: 588
+- proto: GunSafeShuttleT3Spawner
+ entities:
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 588
+- proto: HighSecArmoryLocked
+ entities:
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: 26.5,7.5
+ parent: 588
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: 32.5,7.5
+ parent: 588
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 588
+- proto: HospitalCurtains
+ entities:
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 588
+ - uid: 949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,24.5
+ parent: 588
+ - uid: 951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,27.5
+ parent: 588
+ - uid: 1768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,48.5
+ parent: 588
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,25.5
+ parent: 588
+ - uid: 947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,24.5
+ parent: 588
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 20.5,28.5
+ parent: 588
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 22.5,24.5
+ parent: 588
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 28.5,25.5
+ parent: 588
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 28.5,24.5
+ parent: 588
+ - uid: 1223
+ components:
+ - type: Transform
+ pos: 20.5,36.5
+ parent: 588
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: 14.5,34.5
+ parent: 588
+ - uid: 1467
+ components:
+ - type: Transform
+ pos: 12.5,42.5
+ parent: 588
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 10.5,42.5
+ parent: 588
+ - uid: 1767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,42.5
+ parent: 588
+- proto: hydroponicsTray
+ entities:
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 31.5,21.5
+ parent: 588
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 588
+ - uid: 798
+ components:
+ - type: Transform
+ pos: 31.5,19.5
+ parent: 588
+ - uid: 1772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,42.5
+ parent: 588
+ - uid: 1774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,44.5
+ parent: 588
+ - uid: 1787
+ components:
+ - type: Transform
+ pos: 30.5,44.5
+ parent: 588
+ - uid: 1788
+ components:
+ - type: Transform
+ pos: 30.5,42.5
+ parent: 588
+- proto: Lamp
+ entities:
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 12.369425,13.798887
+ parent: 588
+- proto: LampGold
+ entities:
+ - uid: 322
+ components:
+ - type: Transform
+ pos: 18.419699,1.6320114
+ parent: 588
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 20.563715,4.8959665
+ parent: 588
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 6.4779434,22.892899
+ parent: 588
+ - uid: 730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.765976,19.912766
+ parent: 588
+- proto: Lighter
+ entities:
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 7.5287867,36.397644
+ parent: 588
+- proto: LockerDetective
+ entities:
+ - uid: 560
+ components:
+ - type: Transform
+ pos: 14.5,16.5
+ parent: 588
+- proto: LockerEvidence
+ entities:
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 16.5,0.5
+ parent: 588
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 588
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 588
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 588
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 588
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 588
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 588
+- proto: LockerSecurityFilled
+ entities:
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 588
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 12.5,28.5
+ parent: 588
+- proto: LockerSyndicatePersonal
+ entities:
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 588
+- proto: MagazinePistolSubMachineGunPractice
+ entities:
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 26.585018,35.00363
+ parent: 588
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 588
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: 17.5,38.5
+ parent: 588
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 588
+ - uid: 1291
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 588
+- proto: MaintenanceWeaponSpawner
+ entities:
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 588
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 588
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 588
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 588
+- proto: MaterialCloth1
+ entities:
+ - uid: 702
+ components:
+ - type: Transform
+ pos: 12.462601,18.586084
+ parent: 588
+ - uid: 1065
+ components:
+ - type: Transform
+ pos: 24.460928,24.594687
+ parent: 588
+ - uid: 1066
+ components:
+ - type: Transform
+ pos: 24.389935,24.296673
+ parent: 588
+- proto: MaterialWoodPlank1
+ entities:
+ - uid: 703
+ components:
+ - type: Transform
+ pos: 12.817572,18.685423
+ parent: 588
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: 26.278374,24.608877
+ parent: 588
+ - uid: 1067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.801699,24.708214
+ parent: 588
+ - uid: 1076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.823982,27.574818
+ parent: 588
+- proto: MedicalBed
+ entities:
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 28.5,24.5
+ parent: 588
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 28.5,25.5
+ parent: 588
+- proto: OperatingTable
+ entities:
+ - uid: 1389
+ components:
+ - type: Transform
+ pos: 9.5,43.5
+ parent: 588
+- proto: Paper
+ entities:
+ - uid: 1055
+ components:
+ - type: Transform
+ pos: 20.428474,24.722406
+ parent: 588
+ - uid: 1056
+ components:
+ - type: Transform
+ pos: 20.669853,24.52373
+ parent: 588
+- proto: PartRodMetal1
+ entities:
+ - uid: 1071
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.341253,26.595633
+ parent: 588
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 25.36965,28.11408
+ parent: 588
+- proto: PhoneInstrument
+ entities:
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 25.484175,4.4865713
+ parent: 588
+- proto: PlushieNuke
+ entities:
+ - uid: 1850
+ components:
+ - type: Transform
+ pos: 22.519993,28.594225
+ parent: 588
+- proto: PortableFlasher
+ entities:
+ - uid: 1234
+ components:
+ - type: Transform
+ pos: 32.5,25.5
+ parent: 588
+- proto: PortableGeneratorPacman
+ entities:
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 588
+ - uid: 969
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 588
+- proto: PortableGeneratorSuperPacman
+ entities:
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 26.5,15.5
+ parent: 588
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 588
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: 18.5,44.5
+ parent: 588
+ - uid: 1505
+ components:
+ - type: Transform
+ pos: 20.5,44.5
+ parent: 588
+- proto: PortableScrubber
+ entities:
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 18.5,30.5
+ parent: 588
+- proto: PosterContrabandBountyHunters
+ entities:
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: 13.5,15.5
+ parent: 588
+- proto: PosterLegitDickGumshue
+ entities:
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: 9.5,15.5
+ parent: 588
+- proto: PosterLegitEnlist
+ entities:
+ - uid: 1800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,9.5
+ parent: 588
+- proto: PosterLegitNanotrasenLogo
+ entities:
+ - uid: 1802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,48.5
+ parent: 588
+ - uid: 1803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,21.5
+ parent: 588
+- proto: PosterLegitObey
+ entities:
+ - uid: 1801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,42.5
+ parent: 588
+- proto: PosterLegitSecWatch
+ entities:
+ - uid: 1799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 588
+- proto: PosterLegitSpaceCops
+ entities:
+ - uid: 1804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,19.5
+ parent: 588
+- proto: PottedPlantRandom
+ entities:
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 16.5,38.5
+ parent: 588
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: 22.5,40.5
+ parent: 588
+- proto: PowerCellRecharger
+ entities:
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 15.5,30.5
+ parent: 588
+ - uid: 1568
+ components:
+ - type: Transform
+ pos: 21.5,47.5
+ parent: 588
+- proto: Poweredlight
+ entities:
+ - uid: 1641
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,0.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,0.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,0.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,0.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,6.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1649
+ components:
+ - type: Transform
+ pos: 13.5,10.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,6.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1651
+ components:
+ - type: Transform
+ pos: 18.5,10.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,25.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,12.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,20.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,25.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,27.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: 18.5,40.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,21.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1743
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,43.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,47.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredlightLED
+ entities:
+ - uid: 1707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,42.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,42.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,46.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,46.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,27.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredSmallLight
+ entities:
+ - uid: 470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,14.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 940
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,28.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,28.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,10.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1604
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,10.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: 29.5,6.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,8.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1607
+ components:
+ - type: Transform
+ pos: 32.5,8.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,1.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1644
+ components:
+ - type: Transform
+ pos: 20.5,4.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,0.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,8.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,8.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,8.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,14.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,14.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,22.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,27.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,25.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: 0.5,28.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,24.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,30.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,30.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,36.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1669
+ components:
+ - type: Transform
+ pos: 8.5,34.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,38.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,38.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,43.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,43.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: 2.5,47.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1675
+ components:
+ - type: Transform
+ pos: 4.5,47.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1676
+ components:
+ - type: Transform
+ pos: 9.5,40.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1677
+ components:
+ - type: Transform
+ pos: 13.5,40.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: 13.5,36.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,34.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,35.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,35.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1682
+ components:
+ - type: Transform
+ pos: 25.5,36.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1683
+ components:
+ - type: Transform
+ pos: 28.5,38.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,47.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,47.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: 23.5,32.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1688
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,27.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1690
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,25.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,19.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,19.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 13.5,22.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,18.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,18.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,16.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,13.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,42.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1829
+ components:
+ - type: Transform
+ pos: 25.5,48.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 1640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,25.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,27.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: Rack
+ entities:
+ - uid: 255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,0.5
+ parent: 588
+ - uid: 264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 588
+ - uid: 283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,0.5
+ parent: 588
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 588
+ - uid: 324
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 588
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 32.5,8.5
+ parent: 588
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 588
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 12.5,10.5
+ parent: 588
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 22.5,10.5
+ parent: 588
+ - uid: 420
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 588
+ - uid: 478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,15.5
+ parent: 588
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 588
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 588
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 588
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 588
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 588
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 588
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 588
+ - uid: 1015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,25.5
+ parent: 588
+ - uid: 1016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,24.5
+ parent: 588
+ - uid: 1021
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,25.5
+ parent: 588
+ - uid: 1024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,24.5
+ parent: 588
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 588
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 588
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 26.5,32.5
+ parent: 588
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 588
+ - uid: 1208
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 588
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 2.5,34.5
+ parent: 588
+ - uid: 1319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,40.5
+ parent: 588
+ - uid: 1562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,47.5
+ parent: 588
+ - uid: 1858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,21.5
+ parent: 588
+- proto: Railing
+ entities:
+ - uid: 313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,4.5
+ parent: 588
+ - uid: 314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,0.5
+ parent: 588
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 588
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 588
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 588
+ - uid: 430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,9.5
+ parent: 588
+ - uid: 431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,9.5
+ parent: 588
+ - uid: 435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,9.5
+ parent: 588
+ - uid: 436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,9.5
+ parent: 588
+ - uid: 437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,9.5
+ parent: 588
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 588
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 588
+ - uid: 770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,21.5
+ parent: 588
+ - uid: 850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,30.5
+ parent: 588
+ - uid: 851
+ components:
+ - type: Transform
+ pos: 9.5,32.5
+ parent: 588
+ - uid: 854
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 588
+ - uid: 855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,30.5
+ parent: 588
+ - uid: 1259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,4.5
+ parent: 588
+ - uid: 1260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,4.5
+ parent: 588
+ - uid: 1261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,0.5
+ parent: 588
+ - uid: 1262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,0.5
+ parent: 588
+- proto: RailingCorner
+ entities:
+ - uid: 315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,1.5
+ parent: 588
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 30.5,3.5
+ parent: 588
+ - uid: 771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,21.5
+ parent: 588
+ - uid: 772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,21.5
+ parent: 588
+ - uid: 845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,32.5
+ parent: 588
+ - uid: 846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,30.5
+ parent: 588
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 10.5,32.5
+ parent: 588
+ - uid: 848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,30.5
+ parent: 588
+ - uid: 849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,30.5
+ parent: 588
+ - uid: 852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,32.5
+ parent: 588
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 588
+ - uid: 856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,30.5
+ parent: 588
+ - uid: 886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,40.5
+ parent: 588
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 2.5,40.5
+ parent: 588
+ - uid: 890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,40.5
+ parent: 588
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 5.5,40.5
+ parent: 588
+ - uid: 892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,38.5
+ parent: 588
+ - uid: 893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,38.5
+ parent: 588
+ - uid: 894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,38.5
+ parent: 588
+ - uid: 895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,38.5
+ parent: 588
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 588
+ - uid: 1256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,3.5
+ parent: 588
+ - uid: 1257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,1.5
+ parent: 588
+ - uid: 1258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,1.5
+ parent: 588
+ - uid: 1351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,44.5
+ parent: 588
+ - uid: 1352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,43.5
+ parent: 588
+ - uid: 1353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,43.5
+ parent: 588
+ - uid: 1354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,44.5
+ parent: 588
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: 1.5,46.5
+ parent: 588
+ - uid: 1356
+ components:
+ - type: Transform
+ pos: 2.5,47.5
+ parent: 588
+ - uid: 1357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,47.5
+ parent: 588
+ - uid: 1358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,46.5
+ parent: 588
+- proto: RailingCornerSmall
+ entities:
+ - uid: 337
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,3.5
+ parent: 588
+ - uid: 338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,1.5
+ parent: 588
+ - uid: 1376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,43.5
+ parent: 588
+ - uid: 1377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,47.5
+ parent: 588
+ - uid: 1378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,47.5
+ parent: 588
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 5.5,43.5
+ parent: 588
+- proto: RandomFoodSingle
+ entities:
+ - uid: 764
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 588
+- proto: RandomInstruments
+ entities:
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 588
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 21.5,18.5
+ parent: 588
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: 24.5,42.5
+ parent: 588
+- proto: RandomPosterContraband
+ entities:
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 588
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 3.5,35.5
+ parent: 588
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 588
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 5.5,25.5
+ parent: 588
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 30.5,15.5
+ parent: 588
+ - uid: 1805
+ components:
+ - type: Transform
+ pos: 18.5,43.5
+ parent: 588
+ - uid: 1806
+ components:
+ - type: Transform
+ pos: 20.5,47.5
+ parent: 588
+- proto: RandomSoap
+ entities:
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 588
+- proto: ReinforcedWindow
+ entities:
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 19.5,34.5
+ parent: 588
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 588
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 15.5,9.5
+ parent: 588
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 588
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 19.5,9.5
+ parent: 588
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 588
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 588
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 588
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 588
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: 19.5,36.5
+ parent: 588
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 15.5,36.5
+ parent: 588
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: 15.5,34.5
+ parent: 588
+- proto: ScalpelShiv
+ entities:
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: 10.50393,24.491432
+ parent: 588
+- proto: SeedExtractor
+ entities:
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 33.5,21.5
+ parent: 588
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: 28.5,42.5
+ parent: 588
+- proto: ShowcaseRobot
+ entities:
+ - uid: 1621
+ components:
+ - type: Transform
+ pos: 16.5,10.5
+ parent: 588
+ - uid: 1622
+ components:
+ - type: Transform
+ pos: 18.5,6.5
+ parent: 588
+- proto: ShuttersNormal
+ entities:
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 34.5,27.5
+ parent: 588
+ - uid: 1238
+ components:
+ - type: Transform
+ pos: 32.5,27.5
+ parent: 588
+- proto: ShuttersWindow
+ entities:
+ - uid: 1239
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 588
+- proto: SignCloning
+ entities:
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: 12.5,43.5
+ parent: 588
+- proto: SignPrison
+ entities:
+ - uid: 1792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,3.5
+ parent: 588
+ - uid: 1793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,1.5
+ parent: 588
+ - uid: 1794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,21.5
+ parent: 588
+ - uid: 1795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,19.5
+ parent: 588
+ - uid: 1796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,46.5
+ parent: 588
+ - uid: 1797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,44.5
+ parent: 588
+- proto: SignSecurity
+ entities:
+ - uid: 1798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,1.5
+ parent: 588
+- proto: SignSurgery
+ entities:
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: 10.5,43.5
+ parent: 588
+- proto: Sink
+ entities:
+ - uid: 935
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 588
+- proto: SinkStemlessWater
+ entities:
+ - uid: 1461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,42.5
+ parent: 588
+ - uid: 1462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,42.5
+ parent: 588
+- proto: SMESBasic
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 588
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 588
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 588
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 588
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 588
+- proto: SoapSyndie
+ entities:
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: 10.4890785,27.46785
+ parent: 588
+- proto: SpawnDungeonClutterMedical
+ entities:
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 14.464357,43.03244
+ parent: 588
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 14.417482,42.87619
+ parent: 588
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 12.626222,44.473457
+ parent: 588
+ - uid: 866
+ components:
+ - type: Transform
+ pos: 10.454347,44.660957
+ parent: 588
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 14.589357,42.610565
+ parent: 588
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 14.542482,43.25119
+ parent: 588
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 10.688722,44.785957
+ parent: 588
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 14.354982,43.40744
+ parent: 588
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 10.688722,44.489082
+ parent: 588
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: 10.376222,44.801582
+ parent: 588
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 10.313722,44.457832
+ parent: 588
+ - uid: 1711
+ components:
+ - type: Transform
+ pos: 8.451113,43.629707
+ parent: 588
+ - uid: 1712
+ components:
+ - type: Transform
+ pos: 8.638613,43.395332
+ parent: 588
+ - uid: 1713
+ components:
+ - type: Transform
+ pos: 8.654238,42.879707
+ parent: 588
+ - uid: 1714
+ components:
+ - type: Transform
+ pos: 8.419863,43.145332
+ parent: 588
+ - uid: 1715
+ components:
+ - type: Transform
+ pos: 12.344972,44.598457
+ parent: 588
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: 8.466738,42.582832
+ parent: 588
+ - uid: 1841
+ components:
+ - type: Transform
+ pos: 14.497988,43.692207
+ parent: 588
+- proto: SpawnDungeonClutterPatientTransport
+ entities:
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 30.529268,25.626429
+ parent: 588
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 30.513643,24.642054
+ parent: 588
+- proto: SpawnDungeonLootArmoryClutter
+ entities:
+ - uid: 1836
+ components:
+ - type: Transform
+ pos: 1.5623627,8.276112
+ parent: 588
+- proto: SpawnDungeonLootArmoryClutterSec
+ entities:
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 3.481042,0.55812025
+ parent: 588
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 1.35179,16.461943
+ parent: 588
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 12.868824,25.464571
+ parent: 588
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 18.577902,24.730196
+ parent: 588
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 12.469565,6.590061
+ parent: 588
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 18.577902,24.558321
+ parent: 588
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 5.398665,12.743193
+ parent: 588
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 22.3696,6.6631455
+ parent: 588
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 15.478392,0.62062025
+ parent: 588
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 12.556324,25.558321
+ parent: 588
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 22.58835,10.480686
+ parent: 588
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 15.744017,0.46437025
+ parent: 588
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 12.323845,12.540068
+ parent: 588
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 18.406027,25.620821
+ parent: 588
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 18.624777,25.527071
+ parent: 588
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 5.66429,12.602568
+ parent: 588
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 12.438315,6.715061
+ parent: 588
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 1.648665,16.540068
+ parent: 588
+ - uid: 988
+ components:
+ - type: Transform
+ pos: 12.384449,24.636446
+ parent: 588
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 12.43322,12.868193
+ parent: 588
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 13.49572,13.665068
+ parent: 588
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 12.93322,13.586943
+ parent: 588
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 13.400267,0.55812025
+ parent: 588
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 22.353975,10.574436
+ parent: 588
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 12.603199,24.558321
+ parent: 588
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 5.66429,16.493193
+ parent: 588
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: 13.511345,12.571318
+ parent: 588
+ - uid: 1480
+ components:
+ - type: Transform
+ pos: 12.594565,10.511936
+ parent: 588
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: 1.38304,12.727568
+ parent: 588
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: 1.679915,12.540068
+ parent: 588
+ - uid: 1577
+ components:
+ - type: Transform
+ pos: 12.750815,6.496311
+ parent: 588
+ - uid: 1613
+ components:
+ - type: Transform
+ pos: 12.605095,12.524443
+ parent: 588
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: 5.434167,0.52687025
+ parent: 588
+ - uid: 1615
+ components:
+ - type: Transform
+ pos: 18.613144,1.0893703
+ parent: 588
+ - uid: 1616
+ components:
+ - type: Transform
+ pos: 26.523903,3.6206203
+ parent: 588
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: 1.63304,12.758818
+ parent: 588
+- proto: SpawnDungeonLootArmoryGuns
+ entities:
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 12.573845,13.149443
+ parent: 588
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: 1.52317,0.58291197
+ parent: 588
+ - uid: 1297
+ components:
+ - type: Transform
+ pos: 26.491337,36.55478
+ parent: 588
+ - uid: 1298
+ components:
+ - type: Transform
+ pos: 26.678837,36.30478
+ parent: 588
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 12.510225,10.52252
+ parent: 588
+ - uid: 1612
+ components:
+ - type: Transform
+ pos: 22.6821,6.4756455
+ parent: 588
+- proto: SpawnDungeonLootArmoryMelee
+ entities:
+ - uid: 1837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.406113,8.369862
+ parent: 588
+- proto: SpawnDungeonLootBureaucracy
+ entities:
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 24.93235,1.6214004
+ parent: 588
+ - uid: 329
+ components:
+ - type: Transform
+ pos: 7.422515,22.667841
+ parent: 588
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 28.4636,1.6214004
+ parent: 588
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 10.34439,19.355341
+ parent: 588
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 18.516119,0.71515036
+ parent: 588
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 25.2136,1.4964004
+ parent: 588
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 24.604225,1.4651504
+ parent: 588
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 7.672515,22.480341
+ parent: 588
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 19.609869,0.55890036
+ parent: 588
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 20.602207,15.576639
+ parent: 588
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 20.570957,14.779764
+ parent: 588
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 10.797515,19.495966
+ parent: 588
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 21.391119,4.0432754
+ parent: 588
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 21.734869,3.8401504
+ parent: 588
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: 20.477207,14.436014
+ parent: 588
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: 20.399082,15.264139
+ parent: 588
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: 21.422369,3.6057754
+ parent: 588
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 18.828619,0.52765036
+ parent: 588
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 27.916725,1.4807754
+ parent: 588
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 7.328765,22.355341
+ parent: 588
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 10.328765,19.652216
+ parent: 588
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: 19.5,30.5
+ parent: 588
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: 22.5,30.5
+ parent: 588
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: 21.5,30.5
+ parent: 588
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: 9.5,36.5
+ parent: 588
+ - uid: 1241
+ components:
+ - type: Transform
+ pos: 13.5,48.5
+ parent: 588
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: 9.5,48.5
+ parent: 588
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 12.5,48.5
+ parent: 588
+- proto: SpawnDungeonLootChemsHydroponics
+ entities:
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: 33.533516,20.62025
+ parent: 588
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 1478
+ components:
+ - type: Transform
+ pos: 32.402702,8.382084
+ parent: 588
+- proto: SpawnDungeonLootClothesMercenary
+ entities:
+ - uid: 1785
+ components:
+ - type: Transform
+ pos: 13.796211,0.45840454
+ parent: 588
+ - uid: 1786
+ components:
+ - type: Transform
+ pos: 21.011824,4.5521545
+ parent: 588
+ - uid: 1843
+ components:
+ - type: Transform
+ pos: 18.427536,38.542595
+ parent: 588
+ - uid: 1844
+ components:
+ - type: Transform
+ pos: 18.630661,38.480095
+ parent: 588
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 552
+ components:
+ - type: Transform
+ pos: 25.329813,30.721416
+ parent: 588
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 25.517313,30.518291
+ parent: 588
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 25.720438,30.752666
+ parent: 588
+ - uid: 1157
+ components:
+ - type: Transform
+ pos: 34.401733,24.67827
+ parent: 588
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 5.304915,16.524443
+ parent: 588
+- proto: SpawnDungeonLootClutterKitchen
+ entities:
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 30.661781,48.478493
+ parent: 588
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 17.570957,12.529764
+ parent: 588
+ - uid: 761
+ components:
+ - type: Transform
+ pos: 17.383457,12.514139
+ parent: 588
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 30.552406,48.572243
+ parent: 588
+ - uid: 997
+ components:
+ - type: Transform
+ pos: 30.239906,48.587868
+ parent: 588
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 17.258457,12.654764
+ parent: 588
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: 30.458656,48.244118
+ parent: 588
+- proto: SpawnDungeonLootCrateVehicle
+ entities:
+ - uid: 1838
+ components:
+ - type: Transform
+ pos: 34.5,25.5
+ parent: 588
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 16.492832,13.529764
+ parent: 588
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 18.409803,21.792841
+ parent: 588
+- proto: SpawnDungeonLootKitchenTabletop
+ entities:
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 30.5,47.5
+ parent: 588
+ - uid: 950
+ components:
+ - type: Transform
+ pos: 16.5,12.5
+ parent: 588
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 588
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 29.5,48.5
+ parent: 588
+- proto: SpawnDungeonLootKitsFirstAid
+ entities:
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: 30.498018,28.517054
+ parent: 588
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 30.388643,28.110804
+ parent: 588
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 30.544893,27.642054
+ parent: 588
+- proto: SpawnDungeonLootLathe
+ entities:
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 588
+- proto: SpawnDungeonLootLatheEngi
+ entities:
+ - uid: 1839
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 588
+- proto: SpawnDungeonLootLockersEngi
+ entities:
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 14.5,30.5
+ parent: 588
+- proto: SpawnDungeonLootLockersMed
+ entities:
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 28.5,27.5
+ parent: 588
+- proto: SpawnDungeonLootLockersProtectiveGear
+ entities:
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 14.5,6.5
+ parent: 588
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 0.5,32.5
+ parent: 588
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 12.5,30.5
+ parent: 588
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 588
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 588
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 588
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 588
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 0.5,38.5
+ parent: 588
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 6.5,40.5
+ parent: 588
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 20.5,10.5
+ parent: 588
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: 26.513111,32.51829
+ parent: 588
+ - uid: 1191
+ components:
+ - type: Transform
+ pos: 14.419361,32.596416
+ parent: 588
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 29.431097,40.491657
+ parent: 588
+- proto: SpawnDungeonLootMaterialsValuableFull
+ entities:
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 2.4952426,34.536057
+ parent: 588
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 17.49705,47.59487
+ parent: 588
+ - uid: 1267
+ components:
+ - type: Transform
+ pos: 11.029299,39.508804
+ parent: 588
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 12.560549,39.68068
+ parent: 588
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: 10.482424,39.571304
+ parent: 588
+- proto: SpawnDungeonLootMugs
+ entities:
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 22.742832,12.451639
+ parent: 588
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 18.487928,18.605341
+ parent: 588
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 22.399082,12.717264
+ parent: 588
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 22.487928,18.464716
+ parent: 588
+- proto: SpawnDungeonLootPowerCell
+ entities:
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 5.53929,16.571318
+ parent: 588
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: 12.463861,25.629824
+ parent: 588
+- proto: SpawnDungeonLootSeed
+ entities:
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 29.296295,44.152103
+ parent: 588
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: 30.78067,44.152103
+ parent: 588
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: 30.43692,42.495853
+ parent: 588
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 29.62442,42.51148
+ parent: 588
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 31.758577,21.18776
+ parent: 588
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 31.492952,21.140884
+ parent: 588
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 31.367952,20.43776
+ parent: 588
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 31.586702,19.390884
+ parent: 588
+ - uid: 1475
+ components:
+ - type: Transform
+ pos: 34.36795,18.484634
+ parent: 588
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 31.727327,22.56276
+ parent: 588
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 31.258577,22.297134
+ parent: 588
+- proto: SpawnDungeonLootSpesos
+ entities:
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 11.498049,39.71193
+ parent: 588
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 11.638674,39.49318
+ parent: 588
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 11.873049,39.821304
+ parent: 588
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: 12.388674,39.49318
+ parent: 588
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 12.326174,39.758804
+ parent: 588
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: 11.982424,39.508804
+ parent: 588
+- proto: SpawnDungeonLootToolsBasicEngineering
+ entities:
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 15.481861,32.533916
+ parent: 588
+- proto: SpawnDungeonLootToolsHydroponics
+ entities:
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 29.608795,43.745853
+ parent: 588
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 30.961702,21.672134
+ parent: 588
+ - uid: 765
+ components:
+ - type: Transform
+ pos: 30.18692,43.558353
+ parent: 588
+ - uid: 930
+ components:
+ - type: Transform
+ pos: 30.492952,21.765884
+ parent: 588
+ - uid: 931
+ components:
+ - type: Transform
+ pos: 30.46817,42.98023
+ parent: 588
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 33.39289,20.698376
+ parent: 588
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 29.483795,42.85523
+ parent: 588
+ - uid: 1009
+ components:
+ - type: Transform
+ pos: 33.533516,20.573376
+ parent: 588
+- proto: SpawnDungeonLootToolsSurgeryCrude
+ entities:
+ - uid: 1244
+ components:
+ - type: Transform
+ pos: 16.224228,18.705944
+ parent: 588
+- proto: SpawnDungeonLootVaultGuns
+ entities:
+ - uid: 1299
+ components:
+ - type: Transform
+ pos: 26.599047,35.444897
+ parent: 588
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: 11.198751,39.646996
+ parent: 588
+- proto: SpawnDungeonVendomatsClothes
+ entities:
+ - uid: 1842
+ components:
+ - type: Transform
+ pos: 16.5,40.5
+ parent: 588
+- proto: SpawnDungeonVendomatsRecreational
+ entities:
+ - uid: 1190
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 588
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: 22.5,22.5
+ parent: 588
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: 18.5,40.5
+ parent: 588
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: 16.5,16.5
+ parent: 588
+ - uid: 1204
+ components:
+ - type: Transform
+ pos: 17.5,40.5
+ parent: 588
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: 21.5,12.5
+ parent: 588
+ - uid: 1295
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 588
+- proto: Spear
+ entities:
+ - uid: 1834
+ components:
+ - type: Transform
+ pos: 24.466219,48.441994
+ parent: 588
+- proto: StasisBed
+ entities:
+ - uid: 1425
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 588
+- proto: StimpackMini
+ entities:
+ - uid: 1879
+ components:
+ - type: Transform
+ pos: 24.467485,46.702366
+ parent: 588
+- proto: Stool
+ entities:
+ - uid: 1017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,25.5
+ parent: 588
+ - uid: 1018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,24.5
+ parent: 588
+ - uid: 1019
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,28.5
+ parent: 588
+ - uid: 1020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,28.5
+ parent: 588
+ - uid: 1593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,13.5
+ parent: 588
+ - uid: 1594
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 588
+ - uid: 1595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,15.5
+ parent: 588
+ - uid: 1596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,13.5
+ parent: 588
+- proto: SubstationBasic
+ entities:
+ - uid: 467
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 588
+ - uid: 1508
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 588
+- proto: SubstationWallBasic
+ entities:
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 588
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 19.5,32.5
+ parent: 588
+- proto: Table
+ entities:
+ - uid: 525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,13.5
+ parent: 588
+ - uid: 527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,12.5
+ parent: 588
+ - uid: 528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,12.5
+ parent: 588
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 588
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 20.5,15.5
+ parent: 588
+ - uid: 630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,19.5
+ parent: 588
+ - uid: 632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,19.5
+ parent: 588
+ - uid: 633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,18.5
+ parent: 588
+ - uid: 636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,22.5
+ parent: 588
+ - uid: 637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,22.5
+ parent: 588
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 588
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 18.5,21.5
+ parent: 588
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 21.5,18.5
+ parent: 588
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 22.5,18.5
+ parent: 588
+ - uid: 714
+ components:
+ - type: Transform
+ pos: 18.5,18.5
+ parent: 588
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 19.5,18.5
+ parent: 588
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 588
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: 22.5,12.5
+ parent: 588
+ - uid: 1778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,48.5
+ parent: 588
+ - uid: 1779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,48.5
+ parent: 588
+ - uid: 1780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,47.5
+ parent: 588
+- proto: TableFrame
+ entities:
+ - uid: 705
+ components:
+ - type: Transform
+ pos: 15.5,22.5
+ parent: 588
+ - uid: 1063
+ components:
+ - type: Transform
+ pos: 26.5,24.5
+ parent: 588
+- proto: TableGlass
+ entities:
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 30.5,27.5
+ parent: 588
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 30.5,28.5
+ parent: 588
+ - uid: 1390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,43.5
+ parent: 588
+ - uid: 1391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,42.5
+ parent: 588
+ - uid: 1398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,44.5
+ parent: 588
+ - uid: 1405
+ components:
+ - type: Transform
+ pos: 14.5,42.5
+ parent: 588
+ - uid: 1406
+ components:
+ - type: Transform
+ pos: 14.5,43.5
+ parent: 588
+ - uid: 1407
+ components:
+ - type: Transform
+ pos: 12.5,44.5
+ parent: 588
+- proto: TableReinforced
+ entities:
+ - uid: 924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,36.5
+ parent: 588
+ - uid: 925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,35.5
+ parent: 588
+ - uid: 926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,34.5
+ parent: 588
+ - uid: 1005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,30.5
+ parent: 588
+ - uid: 1006
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,30.5
+ parent: 588
+ - uid: 1012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,28.5
+ parent: 588
+ - uid: 1023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,24.5
+ parent: 588
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 34.5,24.5
+ parent: 588
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 21.5,47.5
+ parent: 588
+- proto: TableReinforcedGlass
+ entities:
+ - uid: 1213
+ components:
+ - type: Transform
+ pos: 10.5,39.5
+ parent: 588
+ - uid: 1214
+ components:
+ - type: Transform
+ pos: 11.5,39.5
+ parent: 588
+ - uid: 1215
+ components:
+ - type: Transform
+ pos: 12.5,39.5
+ parent: 588
+- proto: TableWood
+ entities:
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 20.5,4.5
+ parent: 588
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 21.5,4.5
+ parent: 588
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 588
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 21.5,3.5
+ parent: 588
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 18.5,1.5
+ parent: 588
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 19.5,0.5
+ parent: 588
+ - uid: 332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,3.5
+ parent: 588
+ - uid: 333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,3.5
+ parent: 588
+ - uid: 334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,3.5
+ parent: 588
+ - uid: 335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,4.5
+ parent: 588
+ - uid: 336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,4.5
+ parent: 588
+ - uid: 340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,1.5
+ parent: 588
+ - uid: 341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,1.5
+ parent: 588
+ - uid: 342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,1.5
+ parent: 588
+ - uid: 343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,1.5
+ parent: 588
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 13.5,13.5
+ parent: 588
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 588
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 12.5,12.5
+ parent: 588
+ - uid: 1047
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 588
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: 20.5,24.5
+ parent: 588
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: 26.5,28.5
+ parent: 588
+ - uid: 1227
+ components:
+ - type: Transform
+ pos: 12.5,36.5
+ parent: 588
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: 22.5,34.5
+ parent: 588
+ - uid: 1783
+ components:
+ - type: Transform
+ pos: 24.5,46.5
+ parent: 588
+ - uid: 1784
+ components:
+ - type: Transform
+ pos: 24.5,44.5
+ parent: 588
+- proto: TargetHuman
+ entities:
+ - uid: 1077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,35.5
+ parent: 588
+- proto: TintedWindow
+ entities:
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 12.5,15.5
+ parent: 588
+ - uid: 1463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,43.5
+ parent: 588
+ - uid: 1464
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,43.5
+ parent: 588
+- proto: ToiletEmpty
+ entities:
+ - uid: 932
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,24.5
+ parent: 588
+ - uid: 933
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,24.5
+ parent: 588
+ - uid: 934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,25.5
+ parent: 588
+- proto: VendingMachineChefvend
+ entities:
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 18.5,12.5
+ parent: 588
+- proto: VendingMachineDetDrobe
+ entities:
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 588
+- proto: VendingMachineDinnerware
+ entities:
+ - uid: 1781
+ components:
+ - type: Transform
+ pos: 30.5,46.5
+ parent: 588
+- proto: VendingMachineLawDrobe
+ entities:
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 18.5,4.5
+ parent: 588
+- proto: VendingMachineMedical
+ entities:
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 28.5,28.5
+ parent: 588
+- proto: VendingMachineSec
+ entities:
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 14.5,27.5
+ parent: 588
+- proto: VendingMachineSecDrobe
+ entities:
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 16.5,25.5
+ parent: 588
+- proto: VendingMachineSeedsUnlocked
+ entities:
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 33.5,19.5
+ parent: 588
+ - uid: 1775
+ components:
+ - type: Transform
+ pos: 28.5,44.5
+ parent: 588
+- proto: WallmountTelescreen
+ entities:
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 13.5,13.5
+ parent: 588
+- proto: WallPlastitaniumIndestructible
+ entities:
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 588
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 588
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 25.5,9.5
+ parent: 588
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 27.5,9.5
+ parent: 588
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 588
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 28.5,9.5
+ parent: 588
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 588
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 588
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 588
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 588
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 588
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 588
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 588
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 588
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 28.5,7.5
+ parent: 588
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 26.5,9.5
+ parent: 588
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 588
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 588
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 32.5,9.5
+ parent: 588
+- proto: WallReinforced
+ entities:
+ - uid: 45
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,8.5
+ parent: 588
+ - uid: 51
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,8.5
+ parent: 588
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 588
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 588
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 588
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 588
+ - uid: 266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,1.5
+ parent: 588
+ - uid: 267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,0.5
+ parent: 588
+ - uid: 268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,1.5
+ parent: 588
+ - uid: 269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,0.5
+ parent: 588
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 15.5,6.5
+ parent: 588
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 19.5,6.5
+ parent: 588
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 15.5,10.5
+ parent: 588
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 19.5,10.5
+ parent: 588
+ - uid: 426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,9.5
+ parent: 588
+ - uid: 432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,7.5
+ parent: 588
+ - uid: 433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,9.5
+ parent: 588
+ - uid: 434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,7.5
+ parent: 588
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 0.5,46.5
+ parent: 588
+ - uid: 621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,21.5
+ parent: 588
+ - uid: 622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,19.5
+ parent: 588
+ - uid: 623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,21.5
+ parent: 588
+ - uid: 627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,19.5
+ parent: 588
+ - uid: 1078
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,35.5
+ parent: 588
+ - uid: 1330
+ components:
+ - type: Transform
+ pos: 0.5,44.5
+ parent: 588
+ - uid: 1332
+ components:
+ - type: Transform
+ pos: 2.5,42.5
+ parent: 588
+ - uid: 1334
+ components:
+ - type: Transform
+ pos: 4.5,42.5
+ parent: 588
+ - uid: 1335
+ components:
+ - type: Transform
+ pos: 6.5,44.5
+ parent: 588
+ - uid: 1337
+ components:
+ - type: Transform
+ pos: 4.5,48.5
+ parent: 588
+ - uid: 1338
+ components:
+ - type: Transform
+ pos: 6.5,46.5
+ parent: 588
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: 2.5,48.5
+ parent: 588
+- proto: WallSolid
+ entities:
+ - uid: 140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,25.5
+ parent: 588
+ - uid: 144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,26.5
+ parent: 588
+ - uid: 145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,25.5
+ parent: 588
+ - uid: 146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,27.5
+ parent: 588
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 588
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 588
+ - uid: 207
+ components:
+ - type: Transform
+ pos: 6.5,35.5
+ parent: 588
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 4.5,35.5
+ parent: 588
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 1.5,34.5
+ parent: 588
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 22.5,4.5
+ parent: 588
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 22.5,3.5
+ parent: 588
+ - uid: 307
+ components:
+ - type: Transform
+ pos: 22.5,0.5
+ parent: 588
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 22.5,1.5
+ parent: 588
+ - uid: 476
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 588
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 25.5,15.5
+ parent: 588
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 30.5,13.5
+ parent: 588
+ - uid: 501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,14.5
+ parent: 588
+ - uid: 510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,15.5
+ parent: 588
+ - uid: 749
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 588
+ - uid: 750
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 588
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 19.5,32.5
+ parent: 588
+ - uid: 995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,32.5
+ parent: 588
+ - uid: 1163
+ components:
+ - type: Transform
+ pos: 8.5,36.5
+ parent: 588
+ - uid: 1164
+ components:
+ - type: Transform
+ pos: 3.5,35.5
+ parent: 588
+ - uid: 1165
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 588
+ - uid: 1167
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 588
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 588
+ - uid: 1303
+ components:
+ - type: Transform
+ pos: 28.5,39.5
+ parent: 588
+ - uid: 1304
+ components:
+ - type: Transform
+ pos: 29.5,39.5
+ parent: 588
+ - uid: 1305
+ components:
+ - type: Transform
+ pos: 28.5,40.5
+ parent: 588
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: 17.5,43.5
+ parent: 588
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: 17.5,44.5
+ parent: 588
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 18.5,43.5
+ parent: 588
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 20.5,43.5
+ parent: 588
+ - uid: 1489
+ components:
+ - type: Transform
+ pos: 21.5,43.5
+ parent: 588
+ - uid: 1490
+ components:
+ - type: Transform
+ pos: 21.5,44.5
+ parent: 588
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 18.5,47.5
+ parent: 588
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: 19.5,47.5
+ parent: 588
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 20.5,47.5
+ parent: 588
+- proto: WallWood
+ entities:
+ - uid: 554
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 588
+ - uid: 555
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 588
+ - uid: 556
+ components:
+ - type: Transform
+ pos: 9.5,15.5
+ parent: 588
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 10.5,15.5
+ parent: 588
+ - uid: 558
+ components:
+ - type: Transform
+ pos: 13.5,15.5
+ parent: 588
+ - uid: 559
+ components:
+ - type: Transform
+ pos: 13.5,16.5
+ parent: 588
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 588
+- proto: WardrobePrisonFilled
+ entities:
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 588
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 588
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 588
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 14.5,4.5
+ parent: 588
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 16.5,4.5
+ parent: 588
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 588
+ - uid: 1769
+ components:
+ - type: Transform
+ pos: 24.5,43.5
+ parent: 588
+ - uid: 1770
+ components:
+ - type: Transform
+ pos: 24.5,47.5
+ parent: 588
+- proto: WaterCooler
+ entities:
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 588
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 588
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 801
+ components:
+ - type: Transform
+ pos: 30.5,22.5
+ parent: 588
+ - uid: 1789
+ components:
+ - type: Transform
+ pos: 28.5,48.5
+ parent: 588
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 760
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 588
+ - uid: 929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,34.5
+ parent: 588
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 588
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 16.5,24.5
+ parent: 588
+- proto: WindoorAssemblySecure
+ entities:
+ - uid: 696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,19.5
+ parent: 588
+ - uid: 697
+ components:
+ - type: Transform
+ pos: 12.5,21.5
+ parent: 588
+ - uid: 1073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,25.5
+ parent: 588
+- proto: WindoorSecure
+ entities:
+ - uid: 1761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,43.5
+ parent: 588
+ - uid: 1762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,47.5
+ parent: 588
+- proto: WindoorSecureBrigLocked
+ entities:
+ - uid: 339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,2.5
+ parent: 588
+- proto: WindoorSecureEngineeringLocked
+ entities:
+ - uid: 1569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,45.5
+ parent: 588
+ - uid: 1570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,45.5
+ parent: 588
+- proto: WindoorSecureMedicalLocked
+ entities:
+ - uid: 1408
+ components:
+ - type: Transform
+ pos: 11.5,44.5
+ parent: 588
+- proto: WindoorSecureSecurityLocked
+ entities:
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 588
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 588
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 16.5,3.5
+ parent: 588
+ - uid: 274
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 588
+ - uid: 275
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 588
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 588
+ - uid: 698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,19.5
+ parent: 588
+ - uid: 1053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,25.5
+ parent: 588
+ - uid: 1054
+ components:
+ - type: Transform
+ pos: 21.5,27.5
+ parent: 588
+- proto: WindowDirectional
+ entities:
+ - uid: 480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,15.5
+ parent: 588
+ - uid: 482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,15.5
+ parent: 588
+ - uid: 540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,15.5
+ parent: 588
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 588
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 588
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 588
+ - uid: 575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,20.5
+ parent: 588
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 588
+ - uid: 803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,21.5
+ parent: 588
+ - uid: 804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,19.5
+ parent: 588
+ - uid: 1087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,36.5
+ parent: 588
+ - uid: 1088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,34.5
+ parent: 588
+ - uid: 1520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,46.5
+ parent: 588
+ - uid: 1521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,46.5
+ parent: 588
+ - uid: 1771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,44.5
+ parent: 588
+ - uid: 1773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,44.5
+ parent: 588
+ - uid: 1777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,44.5
+ parent: 588
+ - uid: 1782
+ components:
+ - type: Transform
+ pos: 30.5,46.5
+ parent: 588
+- proto: WindowFrostedDirectional
+ entities:
+ - uid: 936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,24.5
+ parent: 588
+ - uid: 937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,24.5
+ parent: 588
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 588
+ - uid: 939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,25.5
+ parent: 588
+ - uid: 941
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 588
+ - uid: 942
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,28.5
+ parent: 588
+ - uid: 943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,28.5
+ parent: 588
+ - uid: 1392
+ components:
+ - type: Transform
+ pos: 8.5,44.5
+ parent: 588
+ - uid: 1393
+ components:
+ - type: Transform
+ pos: 10.5,44.5
+ parent: 588
+ - uid: 1401
+ components:
+ - type: Transform
+ pos: 12.5,44.5
+ parent: 588
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: 14.5,44.5
+ parent: 588
+ - uid: 1753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,43.5
+ parent: 588
+ - uid: 1754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,43.5
+ parent: 588
+ - uid: 1755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,43.5
+ parent: 588
+ - uid: 1756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,42.5
+ parent: 588
+ - uid: 1757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,48.5
+ parent: 588
+ - uid: 1758
+ components:
+ - type: Transform
+ pos: 26.5,47.5
+ parent: 588
+ - uid: 1759
+ components:
+ - type: Transform
+ pos: 25.5,47.5
+ parent: 588
+ - uid: 1760
+ components:
+ - type: Transform
+ pos: 24.5,47.5
+ parent: 588
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 97
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,14.5
+ parent: 588
+ - uid: 99
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,14.5
+ parent: 588
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 588
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 588
+ - uid: 260
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,3.5
+ parent: 588
+ - uid: 261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,4.5
+ parent: 588
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 588
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 588
+ - uid: 272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,3.5
+ parent: 588
+ - uid: 273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,4.5
+ parent: 588
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 588
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 15.5,3.5
+ parent: 588
+ - uid: 279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,4.5
+ parent: 588
+ - uid: 280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 588
+ - uid: 281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,3.5
+ parent: 588
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 588
+ - uid: 607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,14.5
+ parent: 588
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 4.5,14.5
+ parent: 588
+ - uid: 611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,14.5
+ parent: 588
+ - uid: 612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,14.5
+ parent: 588
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 588
+ - uid: 619
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 588
+ - uid: 620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,20.5
+ parent: 588
+ - uid: 624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,20.5
+ parent: 588
+ - uid: 625
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 588
+ - uid: 626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,21.5
+ parent: 588
+ - uid: 648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,19.5
+ parent: 588
+ - uid: 650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,18.5
+ parent: 588
+ - uid: 651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,19.5
+ parent: 588
+ - uid: 652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,19.5
+ parent: 588
+ - uid: 653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,18.5
+ parent: 588
+ - uid: 654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,21.5
+ parent: 588
+ - uid: 658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,22.5
+ parent: 588
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 13.5,21.5
+ parent: 588
+ - uid: 805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,27.5
+ parent: 588
+ - uid: 806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,26.5
+ parent: 588
+ - uid: 807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,25.5
+ parent: 588
+ - uid: 808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,25.5
+ parent: 588
+ - uid: 809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,26.5
+ parent: 588
+ - uid: 810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,27.5
+ parent: 588
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 588
+ - uid: 812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,27.5
+ parent: 588
+ - uid: 1038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,25.5
+ parent: 588
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 20.5,27.5
+ parent: 588
+ - uid: 1042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,25.5
+ parent: 588
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 22.5,27.5
+ parent: 588
+ - uid: 1058
+ components:
+ - type: Transform
+ pos: 24.5,27.5
+ parent: 588
+ - uid: 1059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,25.5
+ parent: 588
+ - uid: 1060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,25.5
+ parent: 588
+ - uid: 1399
+ components:
+ - type: Transform
+ pos: 9.5,44.5
+ parent: 588
+ - uid: 1400
+ components:
+ - type: Transform
+ pos: 13.5,44.5
+ parent: 588
+- proto: ZiptiesBroken
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 5.2591753,3.5817227
+ parent: 588
+ - uid: 706
+ components:
+ - type: Transform
+ pos: 16.06022,21.977758
+ parent: 588
+...
diff --git a/Resources/Maps/_NF/Dungeon/lava_mercenary.yml b/Resources/Maps/_NF/Dungeon/lava_mercenary.yml
index b4d68e3a838..738e24533a1 100644
--- a/Resources/Maps/_NF/Dungeon/lava_mercenary.yml
+++ b/Resources/Maps/_NF/Dungeon/lava_mercenary.yml
@@ -11,15 +11,15 @@ tilemap:
55: FloorGreenCircuit
63: FloorLino
78: FloorReinforced
- 83: FloorShuttleOrange
- 90: FloorSteel
- 100: FloorSteelMini
- 101: FloorSteelMono
- 105: FloorTechMaint
- 109: FloorWhite
- 113: FloorWhiteMini
- 119: FloorWood
- 122: Plating
+ 85: FloorShuttleOrange
+ 92: FloorSteel
+ 102: FloorSteelMini
+ 103: FloorSteelMono
+ 107: FloorTechMaint
+ 111: FloorWhite
+ 115: FloorWhiteMini
+ 121: FloorWood
+ 125: Plating
entities:
- proto: ""
entities:
@@ -35,83 +35,83 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: WgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAABegAAAAAADwAAAAAAHgAAAAABDwAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAACWgAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAADwAAAAAAHgAAAAACDwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABUwAAAAAAZQAAAAACWgAAAAAAZQAAAAACegAAAAAAHgAAAAAAIwAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAACHgAAAAACUwAAAAAAZAAAAAACZAAAAAAAZAAAAAAAegAAAAAAHgAAAAABIwAAAAACegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAABHgAAAAADUwAAAAAAZAAAAAACZAAAAAAAZAAAAAAAWgAAAAACHgAAAAAAIwAAAAADegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAAAHgAAAAABUwAAAAAAZAAAAAADZAAAAAABZAAAAAABegAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAUwAAAAAAZQAAAAABWgAAAAABZQAAAAACegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAABegAAAAAAHgAAAAADegAAAAAAHgAAAAADHgAAAAADUwAAAAAAaQAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAAAdwAAAAADUwAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAAAdwAAAAACdwAAAAACUwAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACUwAAAAAAaQAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAACdwAAAAADUwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAABUwAAAAAA
+ tiles: XAAAAAADXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABfQAAAAAADwAAAAAAHgAAAAABDwAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAABIwAAAAABHgAAAAABDwAAAAAAHgAAAAACIwAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAADawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAADwAAAAAAHgAAAAACDwAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAABHgAAAAABHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAADHgAAAAABVQAAAAAAZwAAAAACXAAAAAAAZwAAAAACfQAAAAAAHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAACHgAAAAACVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAfQAAAAAAHgAAAAABIwAAAAACfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABHgAAAAADVQAAAAAAZgAAAAACZgAAAAAAZgAAAAAAXAAAAAACHgAAAAAAIwAAAAADfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAHgAAAAABVQAAAAAAZgAAAAADZgAAAAABZgAAAAABfQAAAAAAHgAAAAADHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAABHgAAAAABHgAAAAAAVQAAAAAAZwAAAAABXAAAAAABZwAAAAACfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABfQAAAAAAHgAAAAADfQAAAAAAHgAAAAADHgAAAAADVQAAAAAAawAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAADeQAAAAAAeQAAAAADVQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAACeQAAAAACVQAAAAAAHgAAAAADHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAfQAAAAAAeQAAAAACeQAAAAADeQAAAAADeQAAAAACeQAAAAADVQAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAABVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAeQAAAAABVQAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: HgAAAAAAHgAAAAADegAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABUwAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAWgAAAAABaQAAAAAAHgAAAAACegAAAAAADwAAAAAAegAAAAAAHgAAAAACUwAAAAAAWgAAAAADZAAAAAAAZAAAAAABZAAAAAADWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAWgAAAAAAZAAAAAABZAAAAAACZAAAAAACWgAAAAADUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAAHgAAAAAAegAAAAAADwAAAAAAegAAAAAAHgAAAAAAUwAAAAAAWgAAAAABZAAAAAABZAAAAAABZAAAAAABWgAAAAADUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABUwAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAABUwAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAACcQAAAAABUwAAAAAAWgAAAAADWgAAAAADZQAAAAAAUwAAAAAAHgAAAAAADwAAAAAAHgAAAAACUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAACcQAAAAADUwAAAAAAWgAAAAAAWgAAAAABZQAAAAABUwAAAAAAHgAAAAACDwAAAAAAHgAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAUwAAAAAAWgAAAAABWgAAAAABWgAAAAABUwAAAAAAHgAAAAACDwAAAAAAHgAAAAABUwAAAAAAegAAAAAAegAAAAAAegAAAAAAUwAAAAAAcQAAAAADcQAAAAADcQAAAAABUwAAAAAAZQAAAAACWgAAAAABWgAAAAACUwAAAAAAHgAAAAADHgAAAAACHgAAAAADUwAAAAAAegAAAAAAaQAAAAAAegAAAAAAUwAAAAAAcQAAAAACcQAAAAACcQAAAAADUwAAAAAAZQAAAAACWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACUwAAAAAAWgAAAAABWgAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAegAAAAAA
+ tiles: HgAAAAAAHgAAAAADfQAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAeQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAXAAAAAABawAAAAAAHgAAAAACfQAAAAAADwAAAAAAfQAAAAAAHgAAAAACVQAAAAAAXAAAAAADZgAAAAAAZgAAAAABZgAAAAADXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAACZgAAAAACXAAAAAADVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAAAHgAAAAAAfQAAAAAADwAAAAAAfQAAAAAAHgAAAAAAVQAAAAAAXAAAAAABZgAAAAABZgAAAAABZgAAAAABXAAAAAADVQAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABVQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAABVQAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAABVQAAAAAAXAAAAAADXAAAAAADZwAAAAAAVQAAAAAAHgAAAAAADwAAAAAAHgAAAAACVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAACcwAAAAADVQAAAAAAXAAAAAAAXAAAAAABZwAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAAAcwAAAAAAVQAAAAAAXAAAAAABXAAAAAABXAAAAAABVQAAAAAAHgAAAAACDwAAAAAAHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAcwAAAAADcwAAAAADcwAAAAABVQAAAAAAZwAAAAACXAAAAAABXAAAAAACVQAAAAAAHgAAAAADHgAAAAACHgAAAAADVQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAVQAAAAAAcwAAAAACcwAAAAACcwAAAAADVQAAAAAAZwAAAAACXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAAHgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAACVQAAAAAAXAAAAAABXAAAAAACHgAAAAACHgAAAAABHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAfQAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: WgAAAAABUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADWgAAAAADUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABWgAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABaQAAAAAAUwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAZQAAAAAAWgAAAAABZQAAAAAAUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAABUwAAAAAATgAAAAAAegAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADZAAAAAADZAAAAAAAZAAAAAADUwAAAAAATgAAAAAAegAAAAAAKwAAAAAAegAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAZAAAAAACZAAAAAABZAAAAAADUwAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAABegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAZQAAAAADWgAAAAABZQAAAAACUwAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAACWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAUwAAAAAAWgAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADaQAAAAAAUwAAAAAAWgAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAAAZAAAAAABWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAegAAAAAAUwAAAAAA
+ tiles: XAAAAAABVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADXAAAAAADVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABXAAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIwAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABawAAAAAAVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAZwAAAAAAXAAAAAABZwAAAAAAVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAABVQAAAAAATgAAAAAAfQAAAAAAIwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADZgAAAAADZgAAAAAAZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAKwAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAZgAAAAACZgAAAAABZgAAAAADVQAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfQAAAAAAZwAAAAADXAAAAAABZwAAAAACVQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAABZgAAAAACZgAAAAACZgAAAAAAZgAAAAADZgAAAAACXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABZgAAAAADZgAAAAABZgAAAAACZgAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAABZgAAAAADZgAAAAAAZgAAAAABXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAVQAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: WgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAACaQAAAAAAUwAAAAAAWgAAAAADZAAAAAACZAAAAAABZAAAAAAAWgAAAAABUwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAUwAAAAAAWgAAAAADZAAAAAADWgAAAAACUwAAAAAAWgAAAAADZAAAAAADZAAAAAADZAAAAAADWgAAAAABUwAAAAAAegAAAAAAWgAAAAABegAAAAAAWgAAAAABegAAAAAAUwAAAAAAWgAAAAAAZAAAAAABWgAAAAADUwAAAAAAWgAAAAAAZAAAAAAAZAAAAAACZAAAAAACWgAAAAADUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAADZAAAAAADWgAAAAACUwAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAACUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAADWgAAAAABWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAWgAAAAABWgAAAAACZQAAAAACUwAAAAAAWgAAAAABWgAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAADZQAAAAABUwAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAACWgAAAAAAWgAAAAACUwAAAAAAWgAAAAADWgAAAAAAWgAAAAADUwAAAAAAWgAAAAADWgAAAAACWgAAAAADUwAAAAAAZQAAAAADWgAAAAACZQAAAAADUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAZQAAAAAAWgAAAAADWgAAAAACUwAAAAAAZQAAAAABWgAAAAABZQAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAZQAAAAADWgAAAAADWgAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA
+ tiles: XAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAACawAAAAAAVQAAAAAAXAAAAAADZgAAAAACZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAADZgAAAAADZgAAAAADZgAAAAADXAAAAAABVQAAAAAAfQAAAAAAXAAAAAABfQAAAAAAXAAAAAABfQAAAAAAVQAAAAAAXAAAAAAAZgAAAAABXAAAAAADVQAAAAAAXAAAAAAAZgAAAAAAZgAAAAACZgAAAAACXAAAAAADVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAADZgAAAAADXAAAAAACVQAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAACVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAADXAAAAAABXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAXAAAAAABXAAAAAACZwAAAAACVQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADZwAAAAABVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAACXAAAAAAAXAAAAAACVQAAAAAAXAAAAAADXAAAAAAAXAAAAAADVQAAAAAAXAAAAAADXAAAAAACXAAAAAADVQAAAAAAZwAAAAADXAAAAAACZwAAAAADVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAZwAAAAAAXAAAAAADXAAAAAACVQAAAAAAZwAAAAABXAAAAAABZwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAZwAAAAADXAAAAAADXAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABUwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAUwAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAUwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACUwAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAADwAAAAAADwAAAAAAegAAAAAAIwAAAAABegAAAAAADwAAAAAADwAAAAAAUwAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAABUwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAUwAAAAAAbQAAAAABbQAAAAABegAAAAAAbQAAAAAAegAAAAAAbQAAAAABbQAAAAADUwAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAUwAAAAAAIwAAAAABIwAAAAABIwAAAAACaQAAAAAAIwAAAAADIwAAAAACIwAAAAABUwAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAUwAAAAAAIwAAAAACIwAAAAAAIwAAAAABaQAAAAAAIwAAAAABIwAAAAACIwAAAAAAUwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAUwAAAAAAIwAAAAAAIwAAAAAAIwAAAAACaQAAAAAAIwAAAAAAIwAAAAACIwAAAAADUwAAAAAA
+ tiles: HgAAAAACHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADHgAAAAAAVQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABVQAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAVQAAAAAAHgAAAAAATgAAAAAANwAAAAAANwAAAAAANwAAAAAATgAAAAAAHgAAAAAAVQAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAACVQAAAAAAHgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAADwAAAAAADwAAAAAAfQAAAAAAIwAAAAABfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAABVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAVQAAAAAAbwAAAAABbwAAAAABfQAAAAAAbwAAAAAAfQAAAAAAbwAAAAABbwAAAAADVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAABIwAAAAABIwAAAAACawAAAAAAIwAAAAADIwAAAAACIwAAAAABVQAAAAAAIwAAAAAAHgAAAAACDwAAAAAADwAAAAAADwAAAAAAHgAAAAAAIwAAAAABVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAfQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfQAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAABawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAADDwAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAIwAAAAACawAAAAAAIwAAAAAAIwAAAAACIwAAAAADVQAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: DwAAAAAADwAAAAAAegAAAAAAIwAAAAAAegAAAAAADwAAAAAADwAAAAAAUwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAaQAAAAAAIwAAAAABIwAAAAACIwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: DwAAAAAADwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAADwAAAAAADwAAAAAAVQAAAAAAIwAAAAACIwAAAAAAIwAAAAAAawAAAAAAIwAAAAABIwAAAAACIwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: aQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAZAAAAAACZAAAAAADZAAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZAAAAAACZAAAAAAAZAAAAAABWgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZAAAAAADZAAAAAADZAAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAADZAAAAAAAWgAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACZAAAAAAAZAAAAAADZAAAAAADUwAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAADZAAAAAABZAAAAAABZAAAAAACUwAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAUwAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACZAAAAAADZAAAAAABZAAAAAACUwAAAAAAaQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAACaQAAAAAAUwAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAADUwAAAAAAaQAAAAAAWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACIgAAAAABIgAAAAADWgAAAAACUwAAAAAAaQAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABIgAAAAAAIgAAAAABWgAAAAABUwAAAAAA
+ tiles: awAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAZgAAAAACZgAAAAADZgAAAAABfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAADHgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAACZgAAAAAAZgAAAAABXAAAAAACawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAACHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAZgAAAAADZgAAAAADZgAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAHgAAAAADHgAAAAABHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACZgAAAAABZgAAAAACZgAAAAABZgAAAAADZgAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACZgAAAAAAZgAAAAADZgAAAAADVQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAADZgAAAAABZgAAAAABZgAAAAACVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACZgAAAAADZgAAAAABZgAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACawAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADVQAAAAAAawAAAAAAXAAAAAABawAAAAAAawAAAAAAawAAAAAAXAAAAAAAawAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACIgAAAAABIgAAAAADXAAAAAACVQAAAAAAawAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABIgAAAAAAIgAAAAABXAAAAAABVQAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: aQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAUwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: awAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: HgAAAAAAHgAAAAABWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAWgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HgAAAAAAHgAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAXAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAACWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAABWgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAAAWgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABWgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAACXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAABXAAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAADZgAAAAABXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAABZgAAAAAAXAAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAABXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAAAIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAACIwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAADHgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABfQAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAHgAAAAAAHgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Gravity
gravityShakeSound: !type:SoundPathSpecifier
@@ -124,2108 +124,2625 @@ entities:
color: '#5E7C16FF'
id: Bot
decals:
- 1036: 14,25
- 1037: 14,24
+ 962: 14,25
+ 963: 14,24
- node:
color: '#52B4E996'
id: BotGreyscale
decals:
- 157: 30,25
- 158: 30,24
- 159: 28,27
- 160: 28,27
- 161: 28,28
- 162: 28,28
- 163: 30,25
- 164: 30,24
+ 145: 30,25
+ 146: 30,24
+ 147: 28,27
+ 148: 28,27
+ 149: 28,28
+ 150: 28,28
+ 151: 30,25
+ 152: 30,24
- node:
color: '#5E7C16FF'
id: BotGreyscale
decals:
- 964: 6,2
- 965: 10,2
- 1050: 14,10
- 1051: 14,6
- 1052: 20,6
- 1053: 20,10
- 1054: 22,10
- 1055: 22,6
- 1056: 12,10
- 1057: 12,6
- 1058: 14,25
- 1059: 14,24
- 1060: 34,25
- 1061: 32,25
- 1062: 32,24
- 1065: 9,7
- 1066: 9,9
- 1067: 9,8
- 1068: 1,9
- 1069: 1,8
- 1070: 1,7
- 1166: 18,27
- 1167: 18,28
- 1168: 16,28
- 1169: 16,27
- 1170: 12,27
- 1171: 12,28
+ 904: 6,2
+ 905: 10,2
+ 976: 14,10
+ 977: 14,6
+ 978: 20,6
+ 979: 20,10
+ 980: 22,10
+ 981: 22,6
+ 982: 12,10
+ 983: 12,6
+ 984: 14,25
+ 985: 14,24
+ 986: 34,25
+ 987: 32,25
+ 988: 32,24
+ 991: 9,7
+ 992: 9,9
+ 993: 9,8
+ 994: 1,9
+ 995: 1,8
+ 996: 1,7
+ 1079: 18,27
+ 1080: 18,28
+ 1081: 16,28
+ 1082: 16,27
+ 1083: 12,27
+ 1084: 12,28
+ - node:
+ color: '#7B7B3FFF'
+ id: BotGreyscale
+ decals:
+ 1529: 14,10
+ 1530: 14,6
+ 1556: 12,6
+ 1557: 12,10
+ 1558: 14,6
+ 1559: 20,6
+ 1560: 22,6
+ 1561: 22,10
+ 1562: 20,10
- node:
color: '#DE3A3A96'
id: BotGreyscale
decals:
- 109: 32,25
- 110: 32,24
- 111: 34,25
- 112: 34,24
- 113: 16,28
- 114: 18,28
- 115: 18,27
- 116: 16,27
- 117: 12,27
- 118: 12,28
- 201: 26,7
- 202: 32,7
- 203: 29,9
- 267: 1,9
- 268: 1,8
- 269: 1,7
- 270: 9,9
- 271: 9,8
- 272: 9,7
- 273: 20,10
- 274: 14,6
- 275: 20,6
- 276: 22,6
- 277: 22,10
- 278: 12,10
- 279: 12,6
+ 97: 32,25
+ 98: 32,24
+ 99: 34,25
+ 100: 34,24
+ 101: 16,28
+ 102: 18,28
+ 103: 18,27
+ 104: 16,27
+ 105: 12,27
+ 106: 12,28
+ 165: 26,7
+ 166: 32,7
+ 167: 29,9
+ 231: 1,9
+ 232: 1,8
+ 233: 1,7
+ 234: 9,9
+ 235: 9,8
+ 236: 9,7
+ 237: 20,10
+ 238: 14,6
+ 239: 20,6
+ 240: 22,6
+ 241: 22,10
+ 242: 12,10
+ 243: 12,6
+ - node:
+ color: '#5E7C1696'
+ id: BrickCornerOverlayNE
+ decals:
+ 1901: 9,21
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickCornerOverlayNE
+ decals:
+ 2028: 30,48
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNe
decals:
- 19: 10,44
- 152: 30,28
+ 13: 10,44
+ 140: 30,28
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
decals:
- 20: 12,44
+ 14: 12,44
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
- 7: 10,46
- 41: 14,42
+ 1: 10,46
+ 35: 14,42
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSw
decals:
- 10: 12,46
- 39: 8,42
- 149: 28,24
+ 4: 12,46
+ 33: 8,42
+ 137: 28,24
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineE
decals:
- 8: 10,47
- 9: 10,48
- 42: 14,43
- 151: 30,27
- 253: 5,45
- 256: 33,36
- 257: 33,34
- 258: 10,31
- 262: 8,10
- 263: 8,6
- 264: 7,2
+ 2: 10,47
+ 3: 10,48
+ 36: 14,43
+ 139: 30,27
+ 217: 5,45
+ 220: 33,36
+ 221: 33,34
+ 222: 10,31
+ 226: 8,10
+ 227: 8,6
+ 228: 7,2
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
decals:
- 17: 8,44
- 18: 9,44
- 21: 13,44
- 22: 14,44
- 254: 3,47
+ 11: 8,44
+ 12: 9,44
+ 15: 13,44
+ 16: 14,44
+ 218: 3,47
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineS
decals:
- 13: 8,46
- 14: 9,46
- 15: 13,46
- 16: 14,46
- 43: 9,42
- 44: 10,42
- 45: 13,42
- 46: 12,42
- 255: 3,43
+ 7: 8,46
+ 8: 9,46
+ 9: 13,46
+ 10: 14,46
+ 37: 9,42
+ 38: 10,42
+ 39: 13,42
+ 40: 12,42
+ 219: 3,43
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
decals:
- 11: 12,47
- 12: 12,48
- 40: 8,43
- 150: 28,25
- 252: 1,45
- 259: 2,31
- 260: 2,10
- 261: 2,6
- 265: 9,2
- 266: 30,2
+ 5: 12,47
+ 6: 12,48
+ 34: 8,43
+ 138: 28,25
+ 216: 1,45
+ 223: 2,31
+ 224: 2,10
+ 225: 2,6
+ 229: 9,2
+ 230: 30,2
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNe
decals:
- 103: 33,21
- 775: 30,44
- 787: 29,47
- 1146: 22,9
- 1147: 14,9
- 1163: 21,15
- 1164: 21,21
- 1165: 9,21
- 1172: 18,36
+ 724: 30,44
+ 736: 29,47
+ 1059: 22,9
+ 1060: 14,9
+ 1076: 21,15
+ 1077: 21,21
+ 1078: 9,21
+ 1540: 22,9
+ 1552: 14,9
+ 1680: 21,15
+ 1868: 33,21
+ 1884: 21,21
+ 1905: 9,21
+ 1985: 18,36
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNw
decals:
- 104: 31,21
- 776: 28,44
- 788: 28,47
- 1173: 20,9
- 1174: 12,9
- 1175: 17,15
- 1176: 19,21
- 1177: 7,21
- 1178: 16,36
+ 725: 28,44
+ 737: 28,47
+ 1085: 20,9
+ 1086: 12,9
+ 1087: 17,15
+ 1088: 19,21
+ 1542: 20,9
+ 1550: 12,9
+ 1688: 17,15
+ 1869: 31,21
+ 1886: 19,21
+ 1906: 7,21
+ 1986: 16,36
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
- 77: 26,30
- 106: 33,19
- 774: 30,42
- 785: 29,46
- 1190: 18,34
- 1194: 9,19
- 1203: 21,19
- 1212: 21,13
- 1219: 14,7
- 1227: 22,7
+ 71: 26,30
+ 723: 30,42
+ 734: 29,46
+ 1098: 9,19
+ 1107: 21,19
+ 1114: 21,13
+ 1121: 14,7
+ 1129: 22,7
+ 1543: 22,7
+ 1555: 14,7
+ 1690: 21,13
+ 1871: 33,19
+ 1887: 21,19
+ 1909: 9,19
+ 1987: 18,34
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
- 6: 3,35
- 78: 14,30
- 105: 31,19
- 773: 28,42
- 786: 28,46
- 1191: 16,34
- 1198: 7,19
- 1199: 19,19
- 1213: 17,13
- 1218: 12,7
- 1226: 20,7
+ 0: 3,35
+ 72: 14,30
+ 722: 28,42
+ 735: 28,46
+ 1102: 7,19
+ 1103: 19,19
+ 1115: 17,13
+ 1120: 12,7
+ 1128: 20,7
+ 1544: 20,7
+ 1553: 12,7
+ 1689: 17,13
+ 1872: 31,19
+ 1885: 19,19
+ 1912: 7,19
+ 1988: 16,34
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndE
decals:
- 1180: 21,39
+ 1090: 21,39
+ 2020: 21,39
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndW
decals:
- 1179: 17,39
+ 1089: 17,39
+ 2021: 17,39
- node:
color: '#D4D4D496'
id: BrickTileSteelLineE
decals:
- 480: 32,2
- 482: 31,2
+ 441: 32,2
+ 443: 31,2
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
decals:
- 55: 17,45
- 56: 17,46
- 57: 17,47
- 92: 27,20
- 101: 16,21
- 108: 33,20
- 478: 33,2
- 777: 30,43
- 1188: 18,35
- 1195: 9,20
- 1202: 21,20
- 1211: 21,14
- 1220: 14,8
- 1224: 22,8
+ 49: 17,45
+ 50: 17,46
+ 51: 17,47
+ 86: 27,20
+ 95: 16,21
+ 439: 33,2
+ 726: 30,43
+ 1099: 9,20
+ 1106: 21,20
+ 1113: 21,14
+ 1122: 14,8
+ 1126: 22,8
+ 1546: 22,8
+ 1549: 14,8
+ 1691: 21,14
+ 1873: 33,20
+ 1888: 21,20
+ 1910: 9,20
+ 1992: 18,35
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 780: 29,44
- 1181: 20,39
- 1182: 19,39
- 1183: 18,39
- 1187: 17,36
- 1196: 8,21
- 1200: 20,21
- 1206: 32,21
- 1207: 20,15
- 1208: 19,15
- 1209: 18,15
- 1222: 13,9
- 1223: 21,9
+ 729: 29,44
+ 1091: 20,39
+ 1092: 19,39
+ 1093: 18,39
+ 1100: 8,21
+ 1104: 20,21
+ 1109: 20,15
+ 1110: 19,15
+ 1111: 18,15
+ 1124: 13,9
+ 1125: 21,9
+ 1541: 21,9
+ 1551: 13,9
+ 1681: 20,15
+ 1682: 19,15
+ 1683: 18,15
+ 1870: 32,21
+ 1891: 20,21
+ 1907: 8,21
+ 1989: 17,36
+ 2022: 18,39
+ 2023: 19,39
+ 2024: 20,39
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
decals:
- 67: 15,30
- 68: 16,30
- 69: 17,30
- 70: 18,30
- 71: 19,30
- 72: 21,30
- 73: 22,30
- 74: 23,30
- 75: 24,30
- 76: 25,30
- 779: 29,42
- 1184: 18,39
- 1185: 19,39
- 1186: 20,39
- 1192: 17,34
- 1193: 8,19
- 1204: 20,19
- 1205: 32,19
- 1214: 18,13
- 1215: 19,13
- 1216: 20,13
- 1217: 13,7
- 1225: 21,7
+ 61: 15,30
+ 62: 16,30
+ 63: 17,30
+ 64: 18,30
+ 65: 19,30
+ 66: 21,30
+ 67: 22,30
+ 68: 23,30
+ 69: 24,30
+ 70: 25,30
+ 728: 29,42
+ 1094: 18,39
+ 1095: 19,39
+ 1096: 20,39
+ 1097: 8,19
+ 1108: 20,19
+ 1116: 18,13
+ 1117: 19,13
+ 1118: 20,13
+ 1119: 13,7
+ 1127: 21,7
+ 1547: 21,7
+ 1548: 13,7
+ 1684: 20,13
+ 1685: 19,13
+ 1686: 18,13
+ 1890: 20,19
+ 1908: 8,19
+ 1990: 17,34
+ 2025: 20,39
+ 2026: 19,39
+ 2027: 18,39
- node:
color: '#D4D4D496'
id: BrickTileSteelLineW
decals:
- 479: 33,2
- 481: 32,2
- 483: 31,2
+ 440: 33,2
+ 442: 32,2
+ 444: 31,2
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
- 58: 21,45
- 59: 21,46
- 60: 21,47
- 91: 25,20
- 95: 29,15
- 96: 29,14
- 97: 29,13
- 107: 31,20
- 778: 28,43
- 1189: 16,35
- 1197: 7,20
- 1201: 19,20
- 1210: 17,14
- 1221: 12,8
- 1228: 20,8
+ 52: 21,45
+ 53: 21,46
+ 54: 21,47
+ 85: 25,20
+ 89: 29,15
+ 90: 29,14
+ 91: 29,13
+ 727: 28,43
+ 1101: 7,20
+ 1105: 19,20
+ 1112: 17,14
+ 1123: 12,8
+ 1130: 20,8
+ 1545: 20,8
+ 1554: 12,8
+ 1687: 17,14
+ 1874: 31,20
+ 1889: 19,20
+ 1911: 7,20
+ 1991: 16,35
- node:
color: '#474F52FF'
id: BrickTileWhiteCornerNe
decals:
- 1006: 21,4
+ 932: 21,4
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNe
decals:
- 33: 10,44
- 156: 30,28
+ 27: 10,44
+ 144: 30,28
+ - node:
+ color: '#5E7C1696'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 1902: 9,21
- node:
color: '#5E7C16FF'
id: BrickTileWhiteCornerNe
decals:
- 1040: 34,36
- 1229: 10,10
- 1243: 22,16
- 1258: 6,16
- 1271: 34,22
- 1272: 22,22
- 1286: 16,22
- 1289: 10,22
- 1300: 4,22
- 1314: 12,25
- 1315: 16,25
- 1330: 6,40
- 1344: 22,40
- 1345: 30,48
- 1352: 12,32
+ 966: 34,36
+ 1131: 10,10
+ 1145: 22,16
+ 1160: 6,16
+ 1172: 34,22
+ 1173: 22,22
+ 1187: 16,22
+ 1190: 10,22
+ 1201: 4,22
+ 1215: 12,25
+ 1216: 16,25
+ 1229: 6,40
+ 1242: 22,40
+ 1243: 30,48
+ 1250: 12,32
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 1569: 10,10
+ 1616: 34,10
+ 1692: 22,16
+ 1720: 6,16
+ 1796: 34,22
+ 1797: 22,22
+ 1798: 16,22
+ 1799: 10,22
+ 1800: 4,22
+ 1843: 12,25
+ 1844: 16,25
+ 1913: 12,32
+ 1963: 34,36
+ 1993: 6,40
+ 2002: 22,40
+ 2029: 30,48
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNe
decals:
- 166: 10,28
+ 154: 10,28
- node:
color: '#474F52FF'
id: BrickTileWhiteCornerNw
decals:
- 1009: 18,4
+ 935: 18,4
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNw
decals:
- 34: 12,44
+ 28: 12,44
+ - node:
+ color: '#5E7C1696'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 1903: 7,21
+ 1904: 7,21
- node:
color: '#5E7C16FF'
id: BrickTileWhiteCornerNw
decals:
- 1027: 23,4
- 1042: 24,36
- 1232: 0,10
- 1248: 16,16
- 1255: 0,16
- 1267: 30,22
- 1273: 18,22
- 1297: 6,22
- 1298: 0,22
- 1318: 18,25
- 1331: 0,40
- 1342: 16,40
- 1353: 0,32
+ 953: 23,4
+ 968: 24,36
+ 1134: 0,10
+ 1150: 16,16
+ 1157: 0,16
+ 1168: 30,22
+ 1174: 18,22
+ 1198: 6,22
+ 1199: 0,22
+ 1219: 18,25
+ 1230: 0,40
+ 1240: 16,40
+ 1251: 0,32
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 1577: 0,10
+ 1602: 23,4
+ 1617: 24,10
+ 1693: 16,16
+ 1721: 0,16
+ 1801: 30,22
+ 1802: 18,22
+ 1803: 6,22
+ 1804: 0,22
+ 1850: 18,25
+ 1920: 0,32
+ 1966: 24,36
+ 1996: 0,40
+ 2005: 16,40
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
decals:
- 165: 8,28
+ 153: 8,28
- node:
color: '#474F52FF'
id: BrickTileWhiteCornerSe
decals:
- 1004: 21,0
+ 930: 21,0
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerSe
decals:
- 32: 10,46
- 48: 14,42
+ 26: 10,46
+ 42: 14,42
- node:
color: '#5E7C16FF'
id: BrickTileWhiteCornerSe
decals:
- 971: 5,0
- 991: 16,0
- 1041: 34,34
- 1063: 10,6
- 1240: 22,12
- 1261: 6,12
- 1262: 34,18
- 1277: 22,18
- 1291: 10,18
- 1299: 4,18
- 1329: 6,38
- 1341: 22,38
- 1357: 12,30
+ 917: 16,0
+ 967: 34,34
+ 989: 10,6
+ 1142: 22,12
+ 1163: 6,12
+ 1164: 34,18
+ 1178: 22,18
+ 1192: 10,18
+ 1200: 4,18
+ 1228: 6,38
+ 1239: 22,38
+ 1255: 12,30
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 1488: 5,0
+ 1503: 16,0
+ 1570: 10,6
+ 1639: 34,6
+ 1707: 22,12
+ 1723: 6,12
+ 1835: 34,18
+ 1836: 22,18
+ 1837: 10,18
+ 1838: 4,18
+ 1916: 12,30
+ 1964: 34,34
+ 1994: 6,38
+ 2003: 22,38
+ - node:
+ color: '#B8B873FF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 1501: 16,0
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSe
decals:
- 80: 26,30
+ 74: 26,30
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSe
decals:
- 167: 10,24
+ 155: 10,24
- node:
color: '#474F52FF'
id: BrickTileWhiteCornerSw
decals:
- 1000: 18,0
+ 926: 18,0
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerSw
decals:
- 31: 12,46
- 47: 8,42
- 153: 28,24
+ 25: 12,46
+ 41: 8,42
+ 141: 28,24
- node:
color: '#5E7C16FF'
id: BrickTileWhiteCornerSw
decals:
- 973: 0,0
- 993: 11,0
- 1013: 23,0
- 1043: 24,34
- 1235: 0,6
- 1251: 16,12
- 1252: 0,12
- 1270: 30,18
- 1276: 18,18
- 1292: 6,18
- 1301: 0,18
- 1332: 0,38
- 1343: 16,38
- 1354: 0,30
- 1615: 14,27
+ 919: 11,0
+ 939: 23,0
+ 969: 24,34
+ 1137: 0,6
+ 1153: 16,12
+ 1154: 0,12
+ 1171: 30,18
+ 1177: 18,18
+ 1193: 6,18
+ 1202: 0,18
+ 1231: 0,38
+ 1241: 16,38
+ 1252: 0,30
+ 1483: 14,27
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 1487: 0,0
+ 1502: 11,0
+ 1580: 0,6
+ 1601: 23,0
+ 1630: 24,6
+ 1706: 16,12
+ 1722: 0,12
+ 1839: 0,18
+ 1840: 6,18
+ 1841: 18,18
+ 1842: 30,18
+ 1845: 14,27
+ 1919: 0,30
+ 1965: 24,34
+ 1995: 0,38
+ 2004: 16,38
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSw
decals:
- 79: 14,30
+ 73: 14,30
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSw
decals:
- 168: 8,24
+ 156: 8,24
- node:
color: '#474F52FF'
id: BrickTileWhiteLineE
decals:
- 1003: 21,1
- 1005: 21,3
- 1010: 21,2
+ 929: 21,1
+ 931: 21,3
+ 936: 21,2
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
decals:
- 27: 10,47
- 28: 10,48
- 49: 14,43
- 155: 30,27
+ 21: 10,47
+ 22: 10,48
+ 43: 14,43
+ 143: 30,27
- node:
color: '#5E7C16FF'
id: BrickTileWhiteLineE
decals:
- 972: 5,1
- 992: 16,1
- 1028: 34,4
- 1029: 34,3
- 1030: 34,1
- 1031: 34,0
- 1032: 10,7
- 1033: 10,9
- 1034: 6,2
- 1035: 10,2
- 1241: 22,13
- 1242: 22,15
- 1259: 6,15
- 1260: 6,13
- 1263: 34,19
- 1264: 34,21
- 1278: 22,19
- 1279: 22,21
- 1287: 16,21
- 1288: 10,21
- 1290: 10,19
- 1302: 4,19
- 1303: 4,21
- 1310: 0,25
- 1311: 0,27
- 1316: 12,24
- 1317: 16,24
- 1326: 14,34
- 1327: 14,35
- 1328: 14,36
- 1335: 14,40
- 1336: 14,38
- 1348: 30,47
- 1349: 30,46
+ 918: 16,1
+ 954: 34,4
+ 955: 34,3
+ 956: 34,1
+ 957: 34,0
+ 958: 10,7
+ 959: 10,9
+ 960: 6,2
+ 961: 10,2
+ 1143: 22,13
+ 1144: 22,15
+ 1161: 6,15
+ 1162: 6,13
+ 1165: 34,19
+ 1179: 22,19
+ 1180: 22,21
+ 1188: 16,21
+ 1189: 10,21
+ 1191: 10,19
+ 1203: 4,19
+ 1204: 4,21
+ 1211: 0,25
+ 1212: 0,27
+ 1217: 12,24
+ 1218: 16,24
+ 1226: 14,34
+ 1227: 14,36
+ 1234: 14,40
+ 1235: 14,38
+ 1246: 30,47
+ 1247: 30,46
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 1495: 5,1
+ 1504: 16,1
+ 1573: 10,9
+ 1574: 10,7
+ 1583: 34,4
+ 1584: 34,3
+ 1585: 34,1
+ 1586: 34,0
+ 1626: 34,9
+ 1627: 34,7
+ 1698: 22,15
+ 1699: 22,13
+ 1724: 6,13
+ 1725: 6,15
+ 1805: 34,19
+ 1806: 22,21
+ 1807: 22,19
+ 1808: 16,21
+ 1809: 10,21
+ 1810: 10,19
+ 1811: 4,19
+ 1812: 4,21
+ 1813: 0,25
+ 1814: 0,27
+ 1848: 12,24
+ 1849: 16,24
+ 1866: 34,21
+ 1973: 14,36
+ 1974: 14,34
+ 1997: 14,40
+ 1998: 14,38
+ 2032: 30,46
+ 2033: 30,47
- node:
color: '#D4D4D419'
id: BrickTileWhiteLineE
decals:
- 222: 2,6
- 223: 2,10
- 227: 9,2
- 228: 30,2
- 233: 1,45
- 235: 2,31
+ 186: 2,6
+ 187: 2,10
+ 191: 9,2
+ 192: 30,2
+ 197: 1,45
+ 199: 2,31
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineE
decals:
- 102: 16,21
+ 96: 16,21
- node:
color: '#EFB34196'
id: BrickTileWhiteLineE
decals:
- 61: 17,45
- 62: 17,46
- 63: 17,47
- 93: 27,20
+ 55: 17,45
+ 56: 17,46
+ 57: 17,47
+ 87: 27,20
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
decals:
- 170: 10,27
- 171: 10,26
- 172: 10,25
+ 158: 10,27
+ 159: 10,26
+ 160: 10,25
- node:
color: '#474F52FF'
id: BrickTileWhiteLineN
decals:
- 1007: 20,4
- 1008: 19,4
+ 933: 20,4
+ 934: 19,4
- node:
color: '#52B4E996'
id: BrickTileWhiteLineN
decals:
- 35: 9,44
- 36: 8,44
- 37: 13,44
- 38: 14,44
+ 29: 9,44
+ 30: 8,44
+ 31: 13,44
+ 32: 14,44
- node:
color: '#5E7C16FF'
id: BrickTileWhiteLineN
decals:
- 1014: 24,4
- 1015: 25,4
- 1016: 26,4
- 1017: 27,4
- 1018: 28,4
- 1019: 29,4
- 1020: 30,4
- 1046: 25,36
- 1047: 26,36
- 1230: 9,10
- 1231: 1,10
- 1236: 16,10
- 1237: 18,10
- 1244: 21,16
- 1245: 20,16
- 1246: 18,16
- 1247: 17,16
- 1256: 1,16
- 1257: 5,16
- 1265: 33,22
- 1266: 31,22
- 1280: 21,22
- 1281: 19,22
- 1285: 15,22
- 1295: 7,22
- 1296: 9,22
- 1306: 1,22
- 1307: 3,22
- 1308: 2,28
- 1309: 0,28
- 1337: 17,40
- 1338: 18,40
- 1339: 20,40
- 1340: 21,40
- 1346: 29,48
- 1347: 28,48
- 1355: 1,32
- 1356: 11,32
+ 940: 24,4
+ 941: 25,4
+ 942: 26,4
+ 943: 27,4
+ 944: 28,4
+ 945: 29,4
+ 946: 30,4
+ 972: 25,36
+ 973: 26,36
+ 1132: 9,10
+ 1133: 1,10
+ 1138: 16,10
+ 1139: 18,10
+ 1146: 21,16
+ 1147: 20,16
+ 1148: 18,16
+ 1149: 17,16
+ 1158: 1,16
+ 1159: 5,16
+ 1166: 33,22
+ 1167: 31,22
+ 1181: 21,22
+ 1182: 19,22
+ 1186: 15,22
+ 1196: 7,22
+ 1197: 9,22
+ 1207: 1,22
+ 1208: 3,22
+ 1209: 2,28
+ 1210: 0,28
+ 1236: 17,40
+ 1237: 20,40
+ 1238: 21,40
+ 1244: 29,48
+ 1245: 28,48
+ 1253: 1,32
+ 1254: 11,32
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 1563: 18,10
+ 1564: 16,10
+ 1572: 9,10
+ 1578: 1,10
+ 1593: 30,4
+ 1594: 29,4
+ 1595: 28,4
+ 1596: 27,4
+ 1597: 25,4
+ 1598: 24,4
+ 1618: 25,10
+ 1619: 26,10
+ 1620: 27,10
+ 1621: 28,10
+ 1622: 30,10
+ 1623: 31,10
+ 1624: 32,10
+ 1625: 33,10
+ 1694: 17,16
+ 1695: 18,16
+ 1696: 20,16
+ 1697: 21,16
+ 1726: 5,16
+ 1727: 1,16
+ 1786: 0,28
+ 1787: 2,28
+ 1788: 1,22
+ 1789: 3,22
+ 1790: 9,22
+ 1791: 15,22
+ 1792: 19,22
+ 1793: 21,22
+ 1794: 31,22
+ 1795: 33,22
+ 1914: 11,32
+ 1917: 1,32
+ 1967: 25,36
+ 1968: 26,36
+ 2006: 17,40
+ 2007: 20,40
+ 2008: 21,40
+ 2013: 17,40
+ 2014: 18,40
+ 2030: 29,48
+ 2031: 28,48
- node:
color: '#D4D4D419'
id: BrickTileWhiteLineN
decals:
- 234: 3,43
+ 198: 3,43
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineN
decals:
- 169: 9,28
+ 157: 9,28
- node:
color: '#474F52FF'
id: BrickTileWhiteLineS
decals:
- 1001: 19,0
- 1002: 20,0
+ 927: 19,0
+ 928: 20,0
- node:
color: '#52B4E996'
id: BrickTileWhiteLineS
decals:
- 23: 8,46
- 24: 9,46
- 25: 13,46
- 26: 14,46
- 51: 9,42
- 52: 10,42
- 53: 12,42
- 54: 13,42
+ 17: 8,46
+ 18: 9,46
+ 19: 13,46
+ 20: 14,46
+ 45: 9,42
+ 46: 10,42
+ 47: 12,42
+ 48: 13,42
- node:
color: '#5E7C16FF'
id: BrickTileWhiteLineS
decals:
- 967: 4,0
- 968: 3,0
- 969: 2,0
- 970: 1,0
- 975: 0,3
- 976: 1,3
- 977: 2,3
- 978: 3,3
- 979: 4,3
- 980: 5,3
- 981: 11,3
- 982: 12,3
- 983: 13,3
- 984: 14,3
- 985: 15,3
- 986: 16,3
- 987: 12,0
- 988: 13,0
- 989: 14,0
- 990: 15,0
- 1021: 30,0
- 1022: 29,0
- 1023: 28,0
- 1024: 27,0
- 1025: 25,0
- 1026: 24,0
- 1044: 26,34
- 1045: 25,34
- 1064: 9,6
- 1071: 1,6
- 1072: 1,12
- 1073: 5,12
- 1074: 18,12
- 1075: 17,12
- 1076: 21,12
- 1077: 31,18
- 1078: 33,18
- 1079: 21,18
- 1080: 19,18
- 1081: 9,18
- 1082: 7,18
- 1083: 3,18
- 1084: 1,18
- 1085: 0,24
- 1086: 2,24
- 1087: 11,30
- 1088: 1,30
- 1089: 21,38
- 1090: 20,38
- 1091: 18,38
- 1092: 17,38
- 1238: 16,6
- 1239: 18,6
- 1488: 20,12
+ 907: 11,3
+ 908: 12,3
+ 909: 13,3
+ 910: 14,3
+ 911: 15,3
+ 912: 16,3
+ 913: 12,0
+ 914: 13,0
+ 915: 14,0
+ 916: 15,0
+ 947: 30,0
+ 948: 29,0
+ 949: 28,0
+ 950: 27,0
+ 951: 25,0
+ 952: 24,0
+ 970: 26,34
+ 971: 25,34
+ 990: 9,6
+ 997: 1,6
+ 998: 1,12
+ 999: 5,12
+ 1000: 18,12
+ 1001: 17,12
+ 1002: 21,12
+ 1003: 31,18
+ 1004: 33,18
+ 1005: 21,18
+ 1006: 19,18
+ 1007: 9,18
+ 1008: 7,18
+ 1009: 3,18
+ 1010: 1,18
+ 1011: 0,24
+ 1012: 2,24
+ 1013: 11,30
+ 1014: 1,30
+ 1015: 21,38
+ 1016: 20,38
+ 1017: 18,38
+ 1018: 17,38
+ 1140: 16,6
+ 1141: 18,6
+ 1373: 20,12
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 1489: 5,3
+ 1490: 4,3
+ 1491: 3,3
+ 1492: 2,3
+ 1493: 1,3
+ 1494: 0,3
+ 1506: 15,0
+ 1507: 14,0
+ 1508: 13,0
+ 1509: 12,0
+ 1510: 16,3
+ 1511: 15,3
+ 1512: 14,3
+ 1513: 13,3
+ 1514: 12,3
+ 1515: 11,3
+ 1516: 1,0
+ 1517: 2,0
+ 1518: 3,0
+ 1519: 4,0
+ 1565: 18,6
+ 1566: 16,6
+ 1571: 9,6
+ 1579: 1,6
+ 1587: 30,0
+ 1588: 29,0
+ 1589: 28,0
+ 1590: 27,0
+ 1591: 25,0
+ 1592: 24,0
+ 1631: 25,6
+ 1632: 26,6
+ 1633: 27,6
+ 1634: 28,6
+ 1635: 30,6
+ 1636: 31,6
+ 1637: 32,6
+ 1638: 33,6
+ 1700: 21,12
+ 1701: 20,12
+ 1702: 18,12
+ 1703: 17,12
+ 1730: 5,12
+ 1731: 1,12
+ 1825: 2,24
+ 1826: 0,24
+ 1827: 1,18
+ 1828: 3,18
+ 1829: 7,18
+ 1830: 9,18
+ 1831: 19,18
+ 1832: 21,18
+ 1833: 31,18
+ 1834: 33,18
+ 1915: 11,30
+ 1918: 1,30
+ 1969: 25,34
+ 1970: 26,34
+ 2009: 21,38
+ 2010: 20,38
+ 2011: 18,38
+ 2012: 17,38
- node:
color: '#D4D4D419'
id: BrickTileWhiteLineS
decals:
- 232: 3,47
+ 196: 3,47
- node:
color: '#EFB34196'
id: BrickTileWhiteLineS
decals:
- 81: 15,30
- 82: 16,30
- 83: 17,30
- 84: 18,30
- 85: 19,30
- 86: 21,30
- 87: 22,30
- 88: 23,30
- 89: 24,30
- 90: 25,30
+ 75: 15,30
+ 76: 16,30
+ 77: 17,30
+ 78: 18,30
+ 79: 19,30
+ 80: 21,30
+ 81: 22,30
+ 82: 23,30
+ 83: 24,30
+ 84: 25,30
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineS
decals:
- 173: 9,24
+ 161: 9,24
- node:
color: '#474F52FF'
id: BrickTileWhiteLineW
decals:
- 997: 18,2
- 998: 18,3
- 999: 18,1
+ 923: 18,2
+ 924: 18,3
+ 925: 18,1
- node:
color: '#52B4E996'
id: BrickTileWhiteLineW
decals:
- 29: 12,47
- 30: 12,48
- 50: 8,43
- 154: 28,25
+ 23: 12,47
+ 24: 12,48
+ 44: 8,43
+ 142: 28,25
- node:
color: '#5E7C16FF'
id: BrickTileWhiteLineW
decals:
- 974: 0,1
- 994: 11,1
- 995: 23,1
- 996: 23,3
- 1233: 0,9
- 1234: 0,7
- 1249: 16,15
- 1250: 16,13
- 1253: 0,13
- 1254: 0,15
- 1268: 30,21
- 1269: 30,19
- 1274: 18,21
- 1275: 18,19
- 1293: 6,19
- 1294: 6,21
- 1304: 0,19
- 1305: 0,21
- 1312: 2,27
- 1313: 2,25
- 1319: 18,24
- 1323: 20,34
- 1324: 20,35
- 1325: 20,36
- 1333: 8,38
- 1334: 8,40
- 1350: 24,46
- 1351: 24,44
- 1616: 14,28
+ 920: 11,1
+ 921: 23,1
+ 922: 23,3
+ 1135: 0,9
+ 1136: 0,7
+ 1151: 16,15
+ 1152: 16,13
+ 1155: 0,13
+ 1156: 0,15
+ 1169: 30,21
+ 1170: 30,19
+ 1175: 18,21
+ 1176: 18,19
+ 1194: 6,19
+ 1195: 6,21
+ 1205: 0,19
+ 1206: 0,21
+ 1213: 2,27
+ 1214: 2,25
+ 1220: 18,24
+ 1224: 20,34
+ 1225: 20,36
+ 1232: 8,38
+ 1233: 8,40
+ 1248: 24,46
+ 1249: 24,44
+ 1484: 14,28
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 1496: 0,1
+ 1505: 11,1
+ 1581: 0,7
+ 1582: 0,9
+ 1599: 23,3
+ 1600: 23,1
+ 1628: 24,9
+ 1629: 24,7
+ 1704: 16,13
+ 1705: 16,15
+ 1728: 0,15
+ 1729: 0,13
+ 1815: 30,21
+ 1816: 30,19
+ 1817: 18,19
+ 1818: 18,21
+ 1819: 6,21
+ 1820: 6,19
+ 1821: 0,19
+ 1822: 0,21
+ 1823: 2,25
+ 1824: 2,27
+ 1846: 14,28
+ 1847: 18,24
+ 1971: 20,34
+ 1972: 20,36
+ 1999: 8,40
+ 2000: 8,38
+ 2034: 24,46
+ 2035: 24,44
- node:
color: '#D4D4D419'
id: BrickTileWhiteLineW
decals:
- 224: 8,10
- 225: 8,6
- 226: 7,2
- 229: 33,36
- 230: 33,34
- 231: 5,45
- 236: 10,31
+ 188: 8,10
+ 189: 8,6
+ 190: 7,2
+ 193: 33,36
+ 194: 33,34
+ 195: 5,45
+ 200: 10,31
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
decals:
- 64: 21,45
- 65: 21,46
- 66: 21,47
- 94: 25,20
- 98: 29,13
- 99: 29,14
- 100: 29,15
+ 58: 21,45
+ 59: 21,46
+ 60: 21,47
+ 88: 25,20
+ 92: 29,13
+ 93: 29,14
+ 94: 29,15
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
decals:
- 174: 8,25
- 175: 8,26
- 176: 8,27
+ 162: 8,25
+ 163: 8,26
+ 164: 8,27
- node:
color: '#A4610696'
id: Dirt
decals:
- 484: 31,2
- 485: 32,2
- 486: 33,2
- 487: 30,2
- 488: 33,3
- 489: 31,4
- 490: 32,3
- 491: 32,1
- 492: 31,1
- 493: 31,0
- 494: 33,0
- 495: 32,0
- 496: 33,3
- 497: 33,4
- 498: 32,4
- 499: 31,3
- 500: 32,1
- 501: 33,1
+ 445: 31,2
+ 446: 32,2
+ 447: 33,2
+ 448: 30,2
+ 449: 33,3
+ 450: 31,4
+ 451: 32,3
+ 452: 32,1
+ 453: 31,1
+ 454: 31,0
+ 455: 33,0
+ 456: 32,0
+ 457: 33,3
+ 458: 33,4
+ 459: 32,4
+ 460: 31,3
+ 461: 32,1
+ 462: 33,1
- node:
cleanable: True
color: '#A4610696'
id: Dirt
decals:
- 280: 3,47
- 281: 3,43
- 282: 5,45
- 283: 1,45
- 284: 13,45
- 285: 12,45
- 286: 11,47
- 287: 9,45
- 288: 8,46
- 289: 10,47
- 290: 13,47
- 291: 14,46
- 292: 11,43
- 293: 9,42
- 294: 10,42
- 295: 13,42
- 296: 12,42
- 297: 13,43
- 298: 9,43
- 299: 11,44
- 300: 11,45
- 301: 11,47
- 302: 9,46
- 303: 11,46
- 304: 16,46
- 305: 16,47
- 306: 16,44
- 307: 17,45
- 308: 17,46
- 309: 21,45
- 310: 22,44
- 311: 22,43
- 312: 22,46
- 313: 21,45
- 314: 21,46
- 315: 22,47
+ 244: 3,47
+ 245: 3,43
+ 246: 5,45
+ 247: 1,45
+ 248: 13,45
+ 249: 12,45
+ 250: 11,47
+ 251: 9,45
+ 252: 8,46
+ 253: 10,47
+ 254: 13,47
+ 255: 14,46
+ 256: 11,43
+ 257: 9,42
+ 258: 10,42
+ 259: 13,42
+ 260: 12,42
+ 261: 13,43
+ 262: 9,43
+ 263: 11,44
+ 264: 11,45
+ 265: 11,47
+ 266: 9,46
+ 267: 11,46
+ 268: 16,46
+ 269: 16,47
+ 270: 16,44
+ 271: 17,45
+ 272: 17,46
+ 273: 21,45
+ 274: 22,44
+ 275: 22,43
+ 276: 22,46
+ 277: 21,45
+ 278: 21,46
+ 279: 22,47
+ 280: 24,38
+ 281: 24,40
+ 282: 27,39
+ 283: 27,39
+ 284: 30,40
+ 285: 30,38
+ 286: 33,34
+ 287: 33,36
+ 288: 21,35
+ 289: 13,35
+ 290: 16,30
+ 291: 16,30
+ 292: 18,30
+ 293: 19,30
+ 294: 22,30
+ 295: 24,30
+ 296: 25,30
+ 297: 26,30
+ 298: 15,30
+ 299: 14,30
+ 300: 10,31
+ 301: 2,31
+ 302: 5,35
+ 303: 6,36
+ 304: 9,35
+ 305: 9,35
+ 306: 10,34
+ 307: 0,36
+ 308: 5,36
+ 309: 6,36
+ 310: 9,39
+ 311: 9,38
+ 312: 10,40
+ 313: 13,39
+ 314: 13,39
+ 315: 13,40
316: 24,38
317: 24,40
- 318: 27,39
- 319: 27,39
- 320: 30,40
- 321: 30,38
- 322: 33,34
- 323: 33,36
- 324: 21,35
- 325: 13,35
- 326: 16,30
- 327: 16,30
- 328: 18,30
- 329: 19,30
- 330: 22,30
- 331: 24,30
- 332: 25,30
- 333: 26,30
- 334: 15,30
- 335: 14,30
- 336: 10,31
- 337: 2,31
- 338: 5,35
- 339: 6,36
- 340: 9,35
- 341: 9,35
- 342: 10,34
- 343: 0,36
- 344: 5,36
- 345: 6,36
- 346: 9,39
- 347: 9,38
- 348: 10,40
- 349: 13,39
- 350: 13,39
- 351: 13,40
- 352: 24,38
- 353: 24,40
- 354: 17,32
- 355: 24,32
- 356: 23,32
- 357: 33,26
- 358: 32,27
- 359: 34,27
- 360: 32,25
- 361: 33,25
- 362: 29,27
- 363: 29,25
- 364: 25,26
- 365: 25,27
- 366: 24,28
- 367: 25,28
- 368: 24,27
- 369: 24,24
- 370: 25,25
- 371: 26,25
- 372: 21,25
- 373: 21,27
- 374: 17,27
- 375: 17,25
- 376: 17,26
- 377: 13,27
- 378: 13,26
- 379: 13,25
- 380: 9,26
- 381: 9,27
- 382: 9,28
- 383: 8,28
- 384: 8,27
- 385: 8,26
- 386: 9,25
- 387: 8,25
- 388: 8,24
- 389: 9,24
- 390: 10,24
- 391: 10,25
- 392: 10,26
- 393: 10,27
- 394: 10,28
- 395: 1,19
- 396: 0,17
- 397: 8,13
- 398: 8,13
- 399: 11,16
- 400: 11,16
- 401: 10,16
- 402: 9,16
- 403: 8,15
- 404: 8,14
- 405: 8,16
- 406: 10,16
- 407: 9,16
- 408: 12,14
- 409: 11,14
- 410: 11,12
- 411: 10,12
- 412: 14,12
- 413: 14,14
- 414: 14,15
- 415: 13,14
- 416: 12,14
- 417: 11,14
- 418: 11,13
- 419: 3,13
- 420: 2,13
- 421: 4,13
- 422: 3,15
- 423: 2,15
- 424: 4,15
- 425: 5,14
- 426: 1,14
- 427: 1,15
- 428: 5,15
- 429: 2,10
- 430: 2,6
- 431: 8,6
- 432: 8,10
- 433: 7,2
- 434: 9,2
- 435: 4,1
- 436: 2,1
- 437: 1,2
- 438: 2,2
- 439: 4,2
- 440: 3,2
- 441: 4,1
- 442: 3,1
- 443: 12,2
- 444: 13,1
- 445: 14,1
- 446: 13,2
- 447: 14,2
- 448: 19,2
- 449: 20,2
- 450: 19,3
- 451: 20,3
- 452: 20,1
- 453: 19,1
- 454: 28,2
- 455: 29,2
- 456: 30,2
- 457: 26,2
- 458: 26,1
- 459: 24,2
- 460: 25,2
- 461: 27,2
- 462: 24,3
- 545: 13,6
- 546: 13,10
- 547: 17,9
- 548: 18,9
- 549: 18,8
- 550: 17,8
- 551: 16,7
- 552: 18,7
- 553: 21,10
- 554: 21,6
- 572: 31,21
- 789: 25,45
- 790: 28,43
- 791: 29,43
- 792: 30,43
- 793: 24,42
- 794: 25,43
- 795: 26,42
- 796: 25,42
- 797: 26,48
- 798: 25,47
- 799: 26,47
- 800: 25,47
- 801: 25,48
- 802: 27,47
- 803: 27,45
- 804: 27,46
- 805: 26,45
- 806: 28,45
- 807: 26,44
- 808: 27,44
- 809: 25,46
- 810: 26,46
- 811: 29,45
+ 318: 17,32
+ 319: 24,32
+ 320: 23,32
+ 321: 33,26
+ 322: 32,27
+ 323: 34,27
+ 324: 32,25
+ 325: 33,25
+ 326: 29,27
+ 327: 29,25
+ 328: 25,26
+ 329: 25,27
+ 330: 24,28
+ 331: 25,28
+ 332: 24,27
+ 333: 24,24
+ 334: 25,25
+ 335: 26,25
+ 336: 21,25
+ 337: 21,27
+ 338: 17,27
+ 339: 17,25
+ 340: 17,26
+ 341: 13,27
+ 342: 13,26
+ 343: 13,25
+ 344: 9,26
+ 345: 9,27
+ 346: 9,28
+ 347: 8,28
+ 348: 8,27
+ 349: 8,26
+ 350: 9,25
+ 351: 8,25
+ 352: 8,24
+ 353: 9,24
+ 354: 10,24
+ 355: 10,25
+ 356: 10,26
+ 357: 10,27
+ 358: 10,28
+ 359: 1,19
+ 360: 0,17
+ 361: 8,13
+ 362: 8,13
+ 363: 11,16
+ 364: 11,16
+ 365: 10,16
+ 366: 9,16
+ 367: 8,15
+ 368: 8,14
+ 369: 8,16
+ 370: 10,16
+ 371: 9,16
+ 372: 12,14
+ 373: 11,14
+ 374: 11,12
+ 375: 10,12
+ 376: 14,12
+ 377: 14,14
+ 378: 14,15
+ 379: 13,14
+ 380: 12,14
+ 381: 11,14
+ 382: 11,13
+ 383: 3,13
+ 384: 2,13
+ 385: 4,13
+ 386: 3,15
+ 387: 2,15
+ 388: 4,15
+ 389: 5,14
+ 390: 1,14
+ 391: 5,15
+ 392: 2,10
+ 393: 2,6
+ 394: 8,6
+ 395: 8,10
+ 396: 7,2
+ 397: 9,2
+ 398: 4,1
+ 399: 2,1
+ 400: 1,2
+ 401: 4,2
+ 402: 4,1
+ 403: 3,1
+ 404: 12,2
+ 405: 13,1
+ 406: 14,1
+ 407: 13,2
+ 408: 14,2
+ 409: 19,2
+ 410: 20,2
+ 411: 19,3
+ 412: 20,3
+ 413: 20,1
+ 414: 19,1
+ 415: 28,2
+ 416: 29,2
+ 417: 30,2
+ 418: 26,2
+ 419: 26,1
+ 420: 24,2
+ 421: 25,2
+ 422: 27,2
+ 423: 24,3
+ 505: 13,6
+ 506: 13,10
+ 507: 17,9
+ 508: 18,9
+ 509: 18,8
+ 510: 17,8
+ 511: 16,7
+ 512: 18,7
+ 513: 21,10
+ 514: 21,6
+ 738: 25,45
+ 739: 28,43
+ 740: 29,43
+ 741: 30,43
+ 742: 24,42
+ 743: 25,43
+ 744: 26,42
+ 745: 25,42
+ 746: 26,48
+ 747: 25,47
+ 748: 26,47
+ 749: 25,47
+ 750: 25,48
+ 751: 27,47
+ 752: 27,45
+ 753: 27,46
+ 754: 26,45
+ 755: 28,45
+ 756: 26,44
+ 757: 27,44
+ 758: 25,46
+ 759: 26,46
+ 760: 29,45
- node:
color: '#A4610696'
id: DirtHeavy
decals:
- 502: 11,31
- 503: 1,31
- 504: 5,45
+ 463: 11,31
+ 464: 1,31
+ 465: 5,45
- node:
cleanable: True
color: '#A4610696'
id: DirtHeavy
decals:
- 505: 25,35
- 506: 14,30
- 507: 18,30
- 508: 22,30
- 509: 29,27
- 510: 33,25
- 511: 9,26
- 512: 9,28
- 513: 8,28
- 514: 8,24
- 515: 10,25
- 516: 0,36
- 517: 7,36
- 518: 5,35
- 519: 9,35
- 520: 11,44
- 521: 9,42
- 522: 13,43
- 523: 3,47
- 524: 14,20
- 525: 15,21
- 526: 12,21
- 527: 13,22
- 528: 13,21
- 529: 13,19
- 530: 16,19
- 531: 16,19
- 532: 15,20
- 533: 27,22
- 534: 25,22
- 535: 27,18
- 536: 31,20
- 537: 29,14
- 538: 24,13
- 539: 29,13
- 540: 32,3
- 541: 30,1
- 542: 26,1
- 543: 26,1
- 544: 16,8
- 555: 16,8
- 556: 18,8
- 557: 13,6
- 558: 13,10
- 559: 21,10
- 560: 21,6
- 561: 2,6
- 562: 8,10
- 563: 5,14
- 564: 4,15
- 565: 5,15
- 566: 11,16
- 567: 8,13
- 568: 11,12
- 569: 10,13
- 570: 29,15
- 571: 29,13
- 816: 25,44
- 817: 29,45
- 818: 29,46
- 819: 29,47
- 820: 25,45
+ 466: 25,35
+ 467: 14,30
+ 468: 18,30
+ 469: 22,30
+ 470: 29,27
+ 471: 33,25
+ 472: 9,26
+ 473: 9,28
+ 474: 8,28
+ 475: 8,24
+ 476: 10,25
+ 477: 0,36
+ 478: 7,36
+ 479: 5,35
+ 480: 9,35
+ 481: 11,44
+ 482: 9,42
+ 483: 13,43
+ 484: 3,47
+ 485: 14,20
+ 486: 15,21
+ 487: 12,21
+ 488: 13,22
+ 489: 13,21
+ 490: 13,19
+ 491: 16,19
+ 492: 16,19
+ 493: 15,20
+ 494: 27,22
+ 495: 25,22
+ 496: 27,18
+ 497: 29,14
+ 498: 24,13
+ 499: 29,13
+ 500: 32,3
+ 501: 30,1
+ 502: 26,1
+ 503: 26,1
+ 504: 16,8
+ 515: 16,8
+ 516: 18,8
+ 517: 13,6
+ 518: 13,10
+ 519: 21,10
+ 520: 21,6
+ 521: 2,6
+ 522: 8,10
+ 523: 5,14
+ 524: 4,15
+ 525: 5,15
+ 526: 11,16
+ 527: 8,13
+ 528: 11,12
+ 529: 10,13
+ 530: 29,15
+ 531: 29,13
+ 765: 25,44
+ 766: 29,45
+ 767: 29,46
+ 768: 29,47
+ 769: 25,45
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 1367: 0,0
- 1368: 5,1
- 1369: 0,3
- 1370: 3,3
- 1374: 5,3
- 1375: 1,0
- 1376: 11,1
- 1377: 12,0
- 1390: 23,1
- 1391: 29,4
- 1392: 24,4
- 1393: 29,0
- 1394: 25,0
- 1403: 34,1
- 1404: 34,3
- 1405: 34,4
- 1406: 23,2
- 1407: 30,4
- 1413: 20,7
- 1414: 22,7
- 1419: 20,10
- 1420: 22,10
- 1421: 16,10
- 1422: 17,6
- 1423: 16,9
- 1434: 14,8
- 1435: 14,7
- 1436: 12,6
- 1469: 0,12
- 1470: 6,15
- 1471: 3,16
- 1472: 3,12
- 1473: 5,12
- 1474: 1,13
- 1475: 17,15
- 1476: 19,16
- 1477: 18,13
- 1478: 22,14
- 1479: 21,16
- 1480: 21,13
- 1481: 17,13
- 1482: 16,14
- 1483: 16,12
- 1484: 16,15
- 1485: 18,16
- 1486: 22,13
- 1487: 20,12
- 1497: 30,18
- 1498: 33,18
- 1499: 34,22
- 1500: 31,22
- 1523: 29,24
- 1524: 28,26
- 1537: 12,26
- 1540: 5,28
- 1541: 4,24
- 1542: 0,26
- 1555: 26,34
- 1556: 24,36
- 1557: 24,34
- 1558: 24,35
- 1568: 17,35
- 1569: 16,35
- 1570: 14,36
- 1576: 0,35
- 1577: 10,35
- 1584: 0,39
- 1585: 8,38
- 1586: 14,40
- 1587: 14,38
+ 1263: 11,1
+ 1264: 12,0
+ 1277: 23,1
+ 1278: 29,4
+ 1279: 24,4
+ 1280: 29,0
+ 1281: 25,0
+ 1290: 34,1
+ 1291: 34,3
+ 1292: 34,4
+ 1293: 23,2
+ 1294: 30,4
+ 1300: 20,7
+ 1301: 22,7
+ 1306: 20,10
+ 1307: 22,10
+ 1308: 16,10
+ 1309: 17,6
+ 1310: 16,9
+ 1321: 14,8
+ 1322: 14,7
+ 1323: 12,6
+ 1356: 0,12
+ 1357: 6,15
+ 1358: 3,16
+ 1359: 3,12
+ 1360: 5,12
+ 1361: 1,13
+ 1362: 17,15
+ 1363: 18,13
+ 1364: 22,14
+ 1365: 21,16
+ 1366: 21,13
+ 1367: 17,13
+ 1368: 16,12
+ 1369: 16,15
+ 1370: 18,16
+ 1371: 22,13
+ 1372: 20,12
+ 1382: 30,18
+ 1383: 33,18
+ 1384: 34,22
+ 1385: 31,22
+ 1403: 29,24
+ 1404: 28,26
+ 1417: 12,26
+ 1420: 5,28
+ 1421: 4,24
+ 1422: 0,26
+ 1435: 26,34
+ 1436: 24,36
+ 1437: 24,34
+ 1438: 24,35
+ 1441: 14,36
+ 1444: 0,35
+ 1445: 10,35
+ 1452: 0,39
+ 1453: 8,38
+ 1454: 14,40
+ 1455: 14,38
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 1359: 0,30
- 1362: 0,32
- 1363: 0,31
- 1378: 11,0
- 1381: 16,1
- 1383: 16,2
- 1388: 12,3
- 1389: 16,3
- 1399: 28,4
- 1400: 30,0
- 1401: 34,0
- 1402: 34,2
- 1431: 12,9
- 1432: 14,9
- 1433: 12,7
- 1439: 12,10
- 1440: 10,6
- 1441: 0,6
- 1442: 0,9
- 1443: 0,7
- 1444: 10,10
- 1445: 9,10
- 1446: 10,8
- 1447: 0,8
- 1453: 10,8
- 1454: 9,10
- 1455: 10,7
- 1456: 0,10
- 1457: 1,10
- 1489: 19,12
- 1490: 21,15
- 1493: 18,15
- 1494: 17,16
- 1495: 30,14
- 1496: 24,14
- 1511: 30,19
- 1514: 32,20
- 1515: 32,28
- 1520: 32,24
- 1521: 34,25
- 1522: 32,28
- 1538: 14,26
- 1539: 5,24
- 1543: 0,28
- 1544: 2,28
- 1545: 2,27
- 1546: 0,24
- 1547: 2,25
- 1553: 34,34
- 1554: 25,34
- 1559: 26,36
- 1560: 34,35
- 1561: 18,34
- 1562: 17,34
- 1563: 18,36
- 1564: 17,36
- 1573: 20,35
- 1574: 20,34
- 1575: 14,34
- 1592: 17,40
- 1593: 20,39
- 1594: 22,40
- 1595: 17,39
- 1596: 18,38
- 1597: 21,38
- 1598: 22,39
- 1599: 22,38
- 1606: 27,48
- 1607: 30,48
- 1608: 30,46
- 1609: 30,45
- 1617: 14,28
+ 1257: 0,30
+ 1260: 0,32
+ 1261: 0,31
+ 1265: 11,0
+ 1268: 16,1
+ 1270: 16,2
+ 1275: 12,3
+ 1276: 16,3
+ 1286: 28,4
+ 1287: 30,0
+ 1288: 34,0
+ 1289: 34,2
+ 1318: 12,9
+ 1319: 14,9
+ 1320: 12,7
+ 1326: 12,10
+ 1327: 10,6
+ 1328: 0,6
+ 1329: 0,9
+ 1330: 0,7
+ 1331: 10,10
+ 1332: 9,10
+ 1333: 10,8
+ 1334: 0,8
+ 1340: 10,8
+ 1341: 9,10
+ 1342: 10,7
+ 1343: 0,10
+ 1344: 1,10
+ 1374: 19,12
+ 1375: 21,15
+ 1378: 18,15
+ 1379: 17,16
+ 1380: 30,14
+ 1381: 24,14
+ 1394: 30,19
+ 1395: 32,28
+ 1400: 32,24
+ 1401: 34,25
+ 1402: 32,28
+ 1418: 14,26
+ 1419: 5,24
+ 1423: 0,28
+ 1424: 2,28
+ 1425: 2,27
+ 1426: 0,24
+ 1427: 2,25
+ 1433: 34,34
+ 1434: 25,34
+ 1439: 26,36
+ 1440: 34,35
+ 1442: 20,34
+ 1443: 14,34
+ 1460: 17,40
+ 1461: 20,39
+ 1462: 22,40
+ 1463: 17,39
+ 1464: 18,38
+ 1465: 21,38
+ 1466: 22,39
+ 1467: 22,38
+ 1474: 27,48
+ 1475: 30,48
+ 1476: 30,46
+ 1477: 30,45
+ 1485: 14,28
- node:
cleanable: True
color: '#A4610696'
id: DirtLight
decals:
- 573: 4,1
- 574: 2,1
- 575: 7,2
- 576: 9,2
- 577: 14,2
- 578: 10,3
- 579: 14,1
- 580: 15,1
- 581: 26,2
- 582: 28,2
- 583: 30,2
- 584: 31,1
- 585: 33,0
- 586: 16,8
- 587: 17,9
- 588: 13,6
- 589: 8,10
- 590: 2,10
- 591: 2,6
- 592: 1,14
- 593: 3,15
- 594: 5,14
- 595: 5,15
- 596: 3,13
- 597: 8,13
- 598: 10,16
- 599: 11,16
- 600: 29,14
- 601: 29,15
- 602: 25,22
- 603: 25,20
- 604: 27,20
- 605: 27,22
- 606: 25,20
- 607: 27,20
- 608: 27,18
- 609: 25,18
- 610: 16,21
- 611: 13,21
- 612: 13,22
- 613: 13,19
- 614: 13,19
- 615: 14,20
- 616: 9,26
- 617: 9,27
- 618: 9,24
- 619: 8,24
- 620: 10,24
- 621: 10,26
- 622: 13,26
- 623: 12,28
- 624: 13,25
- 625: 17,25
- 626: 21,26
- 627: 21,27
- 628: 21,25
- 629: 25,26
- 630: 25,26
- 631: 25,26
- 632: 26,25
- 633: 24,27
- 634: 29,26
- 635: 29,27
- 636: 33,26
- 637: 21,30
- 638: 17,30
- 639: 15,30
- 640: 10,31
- 641: 2,31
- 642: -1,35
- 643: 0,36
- 644: 5,35
- 645: 10,34
- 646: 3,43
- 647: 3,47
- 648: 4,45
- 649: 5,45
- 650: 11,46
- 651: 11,45
- 652: 13,42
- 653: 9,42
- 654: 10,44
- 655: 11,44
- 656: 11,45
- 657: 16,47
- 658: 17,45
- 659: 21,45
- 660: 16,48
- 661: 16,43
- 662: 23,43
- 663: 22,42
- 664: 30,38
- 665: 30,40
- 666: 24,38
- 667: 9,39
- 668: 10,40
- 669: 12,38
- 670: 10,38
- 671: 10,38
- 821: 26,44
- 822: 27,43
- 823: 30,43
- 824: 29,42
- 825: 28,47
+ 532: 4,1
+ 533: 2,1
+ 534: 7,2
+ 535: 9,2
+ 536: 14,2
+ 537: 10,3
+ 538: 14,1
+ 539: 15,1
+ 540: 26,2
+ 541: 28,2
+ 542: 30,2
+ 543: 31,1
+ 544: 33,0
+ 545: 16,8
+ 546: 17,9
+ 547: 13,6
+ 548: 8,10
+ 549: 2,10
+ 550: 2,6
+ 551: 1,14
+ 552: 3,15
+ 553: 5,14
+ 554: 5,15
+ 555: 3,13
+ 556: 8,13
+ 557: 10,16
+ 558: 11,16
+ 559: 29,14
+ 560: 29,15
+ 561: 25,22
+ 562: 25,20
+ 563: 27,20
+ 564: 27,22
+ 565: 25,20
+ 566: 27,20
+ 567: 27,18
+ 568: 25,18
+ 569: 16,21
+ 570: 13,21
+ 571: 13,22
+ 572: 13,19
+ 573: 13,19
+ 574: 14,20
+ 575: 9,26
+ 576: 9,27
+ 577: 9,24
+ 578: 8,24
+ 579: 10,24
+ 580: 10,26
+ 581: 13,26
+ 582: 12,28
+ 583: 13,25
+ 584: 17,25
+ 585: 21,26
+ 586: 21,27
+ 587: 21,25
+ 588: 25,26
+ 589: 25,26
+ 590: 25,26
+ 591: 26,25
+ 592: 24,27
+ 593: 29,26
+ 594: 29,27
+ 595: 33,26
+ 596: 21,30
+ 597: 17,30
+ 598: 15,30
+ 599: 10,31
+ 600: 2,31
+ 601: -1,35
+ 602: 0,36
+ 603: 5,35
+ 604: 10,34
+ 605: 3,43
+ 606: 3,47
+ 607: 4,45
+ 608: 5,45
+ 609: 11,46
+ 610: 11,45
+ 611: 13,42
+ 612: 9,42
+ 613: 10,44
+ 614: 11,44
+ 615: 11,45
+ 616: 16,47
+ 617: 17,45
+ 618: 21,45
+ 619: 16,48
+ 620: 16,43
+ 621: 23,43
+ 622: 22,42
+ 623: 30,38
+ 624: 30,40
+ 625: 24,38
+ 626: 9,39
+ 627: 10,40
+ 628: 12,38
+ 629: 10,38
+ 630: 10,38
+ 770: 26,44
+ 771: 27,43
+ 772: 30,43
+ 773: 29,42
+ 774: 28,47
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtLight
decals:
- 1360: 1,30
- 1361: 1,32
- 1371: 2,3
- 1372: 1,3
- 1373: 4,3
- 1410: 21,7
- 1411: 21,9
- 1412: 21,8
- 1418: 22,6
- 1424: 16,6
- 1425: 18,10
- 1426: 18,6
- 1438: 14,10
- 1448: 0,9
- 1449: 1,10
- 1450: 1,6
- 1451: 9,6
- 1452: 10,9
- 1458: 0,12
- 1459: 0,15
- 1460: 6,13
- 1461: 6,14
- 1462: 6,15
- 1463: 5,16
- 1464: 5,12
- 1501: 30,22
- 1502: 31,18
- 1503: 34,19
- 1504: 32,18
- 1505: 30,20
- 1512: 32,21
- 1513: 32,19
- 1516: 34,28
- 1517: 33,28
- 1525: 29,28
- 1526: 30,26
- 1527: 26,26
- 1532: 16,26
- 1533: 17,24
- 1534: 22,26
- 1565: 18,35
- 1566: 16,34
- 1567: 16,36
- 1578: 0,40
- 1579: 0,39
- 1580: 6,38
- 1581: 6,40
- 1588: 8,39
- 1589: 8,40
- 1590: 14,39
- 1591: 16,40
- 1610: 30,47
- 1611: 28,48
- 1612: 24,44
- 1618: 14,27
+ 1258: 1,30
+ 1259: 1,32
+ 1297: 21,7
+ 1298: 21,9
+ 1299: 21,8
+ 1305: 22,6
+ 1311: 16,6
+ 1312: 18,10
+ 1313: 18,6
+ 1325: 14,10
+ 1335: 0,9
+ 1336: 1,10
+ 1337: 1,6
+ 1338: 9,6
+ 1339: 10,9
+ 1345: 0,12
+ 1346: 0,15
+ 1347: 6,13
+ 1348: 6,14
+ 1349: 6,15
+ 1350: 5,16
+ 1351: 5,12
+ 1386: 30,22
+ 1387: 31,18
+ 1388: 34,19
+ 1389: 32,18
+ 1390: 30,20
+ 1396: 34,28
+ 1397: 33,28
+ 1405: 29,28
+ 1406: 30,26
+ 1407: 26,26
+ 1412: 16,26
+ 1413: 17,24
+ 1414: 22,26
+ 1446: 0,40
+ 1447: 0,39
+ 1448: 6,38
+ 1449: 6,40
+ 1456: 8,39
+ 1457: 8,40
+ 1458: 14,39
+ 1459: 16,40
+ 1478: 30,47
+ 1479: 28,48
+ 1480: 24,44
+ 1486: 14,27
- node:
cleanable: True
color: '#A4610696'
id: DirtMedium
decals:
- 672: 3,43
- 673: 1,45
- 674: 11,45
- 675: 21,45
- 676: 24,38
- 677: 33,36
- 678: 33,34
- 679: 5,35
- 680: 1,31
- 681: 2,31
- 682: 11,31
- 683: 9,26
- 684: 8,26
- 685: 9,27
- 686: 9,28
- 687: 10,26
- 688: 10,25
- 689: 9,25
- 690: 13,26
- 691: 25,27
- 692: 24,27
- 693: 24,28
- 694: 24,25
- 695: 25,25
- 696: 24,24
- 697: 26,25
- 698: 25,26
- 699: 25,26
- 700: 25,26
- 701: 29,27
- 702: 29,25
- 703: 33,26
- 704: 31,20
- 705: 25,18
- 706: 25,18
- 707: 27,20
- 708: 27,22
- 709: 29,15
- 710: 29,12
- 711: 24,15
- 712: 24,16
- 713: 17,20
- 714: 15,20
- 715: 14,21
- 716: 15,21
- 717: 16,21
- 718: 15,18
- 719: 16,19
- 720: 16,19
- 721: 13,19
- 722: 12,19
- 723: 12,19
- 724: 12,18
- 725: 15,18
- 726: 15,18
- 727: 2,13
- 728: 3,13
- 729: 8,15
- 730: 8,16
- 731: 9,16
- 732: 9,16
- 733: 24,13
- 734: 30,12
- 735: 29,16
- 736: 24,16
- 737: 24,16
- 738: 25,6
- 739: 24,7
- 740: 26,9
- 741: 27,10
- 742: 28,10
- 743: 34,10
- 744: 34,7
- 745: 33,6
- 746: 30,6
- 747: 27,6
- 748: 16,8
- 749: 18,8
- 750: 8,10
- 751: 2,6
- 752: 4,1
- 753: 3,1
- 754: 7,2
- 755: 9,2
- 756: 13,1
- 757: 15,1
- 758: 26,2
- 759: 29,3
- 760: 30,2
- 761: 33,2
- 762: 33,3
- 763: 31,1
- 812: 28,45
- 813: 26,45
- 814: 28,47
- 815: 27,44
- 826: 27,45
- 827: 26,46
- 828: 26,42
- 829: 25,42
- 830: 25,47
- 831: 25,47
- 832: 26,48
- 833: 26,47
- 834: 26,47
- 835: 26,43
- 836: 26,43
- 837: 27,43
- 838: 6,1
- 839: 10,3
+ 631: 3,43
+ 632: 1,45
+ 633: 11,45
+ 634: 21,45
+ 635: 24,38
+ 636: 33,36
+ 637: 33,34
+ 638: 5,35
+ 639: 1,31
+ 640: 2,31
+ 641: 11,31
+ 642: 9,26
+ 643: 8,26
+ 644: 9,27
+ 645: 9,28
+ 646: 10,26
+ 647: 10,25
+ 648: 9,25
+ 649: 13,26
+ 650: 25,27
+ 651: 24,27
+ 652: 24,28
+ 653: 24,25
+ 654: 25,25
+ 655: 24,24
+ 656: 26,25
+ 657: 25,26
+ 658: 25,26
+ 659: 25,26
+ 660: 29,27
+ 661: 29,25
+ 662: 33,26
+ 663: 25,18
+ 664: 25,18
+ 665: 27,20
+ 666: 27,22
+ 667: 29,15
+ 668: 29,12
+ 669: 24,15
+ 670: 24,16
+ 671: 17,20
+ 672: 15,20
+ 673: 14,21
+ 674: 15,21
+ 675: 16,21
+ 676: 15,18
+ 677: 16,19
+ 678: 16,19
+ 679: 13,19
+ 680: 12,19
+ 681: 12,19
+ 682: 12,18
+ 683: 15,18
+ 684: 15,18
+ 685: 2,13
+ 686: 3,13
+ 687: 8,15
+ 688: 8,16
+ 689: 9,16
+ 690: 9,16
+ 691: 24,13
+ 692: 30,12
+ 693: 29,16
+ 694: 24,16
+ 695: 24,16
+ 696: 26,9
+ 697: 16,8
+ 698: 18,8
+ 699: 8,10
+ 700: 2,6
+ 701: 4,1
+ 702: 3,1
+ 703: 7,2
+ 704: 9,2
+ 705: 13,1
+ 706: 15,1
+ 707: 26,2
+ 708: 29,3
+ 709: 30,2
+ 710: 33,2
+ 711: 33,3
+ 712: 31,1
+ 761: 28,45
+ 762: 26,45
+ 763: 28,47
+ 764: 27,44
+ 775: 27,45
+ 776: 26,46
+ 777: 26,42
+ 778: 25,42
+ 779: 25,47
+ 780: 25,47
+ 781: 26,48
+ 782: 26,47
+ 783: 26,47
+ 784: 26,43
+ 785: 26,43
+ 786: 27,43
+ 787: 6,1
+ 788: 10,3
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 1364: 0,1
- 1365: 5,0
- 1366: 1,1
- 1379: 13,0
- 1380: 16,0
- 1382: 11,2
- 1384: 15,3
- 1385: 14,3
- 1386: 13,3
- 1387: 11,3
- 1395: 23,0
- 1396: 23,3
- 1397: 23,4
- 1398: 30,4
- 1408: 22,9
- 1409: 20,8
- 1415: 20,9
- 1416: 22,8
- 1417: 20,6
- 1427: 13,7
- 1428: 12,8
- 1429: 13,9
- 1430: 13,8
- 1437: 14,6
- 1465: 6,12
- 1466: 6,16
- 1467: 0,16
- 1468: 0,15
- 1491: 20,16
- 1492: 19,13
- 1506: 34,20
- 1507: 30,21
- 1508: 33,22
- 1509: 34,18
- 1510: 34,21
- 1518: 33,24
- 1519: 32,26
- 1528: 24,26
- 1529: 20,26
- 1530: 18,26
- 1531: 17,28
- 1535: 13,24
- 1536: 13,28
- 1548: 2,24
- 1549: 0,25
- 1550: 2,27
- 1551: 0,27
- 1552: 34,36
- 1571: 14,35
- 1572: 20,35
- 1582: 6,39
- 1583: 0,38
- 1600: 16,38
- 1601: 20,38
- 1602: 16,40
- 1603: 21,39
- 1604: 16,39
- 1605: 22,39
- 1613: 24,46
- 1614: 24,45
+ 1262: 1,1
+ 1266: 13,0
+ 1267: 16,0
+ 1269: 11,2
+ 1271: 15,3
+ 1272: 14,3
+ 1273: 13,3
+ 1274: 11,3
+ 1282: 23,0
+ 1283: 23,3
+ 1284: 23,4
+ 1285: 30,4
+ 1295: 22,9
+ 1296: 20,8
+ 1302: 20,9
+ 1303: 22,8
+ 1304: 20,6
+ 1314: 13,7
+ 1315: 12,8
+ 1316: 13,9
+ 1317: 13,8
+ 1324: 14,6
+ 1352: 6,12
+ 1353: 6,16
+ 1354: 0,16
+ 1355: 0,15
+ 1376: 20,16
+ 1377: 19,13
+ 1391: 30,21
+ 1392: 33,22
+ 1393: 34,18
+ 1398: 33,24
+ 1399: 32,26
+ 1408: 24,26
+ 1409: 20,26
+ 1410: 18,26
+ 1411: 17,28
+ 1415: 13,24
+ 1416: 13,28
+ 1428: 2,24
+ 1429: 0,25
+ 1430: 2,27
+ 1431: 0,27
+ 1432: 34,36
+ 1450: 6,39
+ 1451: 0,38
+ 1468: 16,38
+ 1469: 20,38
+ 1470: 16,40
+ 1471: 21,39
+ 1472: 16,39
+ 1473: 22,39
+ 1481: 24,46
+ 1482: 24,45
- node:
color: '#D4D4D41B'
id: FullTileOverlayGreyscale
decals:
- 463: 31,4
- 464: 31,3
- 465: 31,2
- 466: 31,1
- 467: 31,0
+ 424: 31,4
+ 425: 31,3
+ 426: 31,2
+ 427: 31,1
+ 428: 31,0
- node:
color: '#D4D4D433'
id: FullTileOverlayGreyscale
decals:
- 468: 32,0
- 469: 32,1
- 470: 32,2
- 471: 32,3
- 472: 32,4
+ 429: 32,0
+ 430: 32,1
+ 431: 32,2
+ 432: 32,3
+ 433: 32,4
- node:
color: '#D4D4D44C'
id: FullTileOverlayGreyscale
decals:
- 473: 33,0
- 474: 33,1
- 475: 33,2
- 476: 33,3
- 477: 33,4
+ 434: 33,0
+ 435: 33,1
+ 436: 33,2
+ 437: 33,3
+ 438: 33,4
- node:
color: '#D4D4D40C'
id: HalfTileOverlayGreyscale
decals:
- 250: 3,47
+ 214: 3,47
- node:
color: '#D4D4D419'
id: HalfTileOverlayGreyscale
decals:
- 220: 3,43
+ 184: 3,43
- node:
color: '#D4D4D40C'
id: HalfTileOverlayGreyscale180
decals:
- 251: 3,43
+ 215: 3,43
- node:
color: '#D4D4D419'
id: HalfTileOverlayGreyscale180
decals:
- 221: 3,47
+ 185: 3,47
- node:
color: '#D4D4D40C'
id: HalfTileOverlayGreyscale270
decals:
- 237: 30,2
- 238: 9,2
- 241: 2,6
- 242: 2,10
- 245: 2,31
- 249: 1,45
+ 201: 30,2
+ 202: 9,2
+ 205: 2,6
+ 206: 2,10
+ 209: 2,31
+ 213: 1,45
- node:
color: '#D4D4D419'
id: HalfTileOverlayGreyscale270
decals:
- 209: 7,2
- 210: 8,6
- 211: 8,10
- 215: 10,31
- 216: 33,34
- 217: 33,36
- 218: 5,45
+ 173: 7,2
+ 174: 8,6
+ 175: 8,10
+ 179: 10,31
+ 180: 33,34
+ 181: 33,36
+ 182: 5,45
- node:
color: '#D4D4D40C'
id: HalfTileOverlayGreyscale90
decals:
- 239: 7,2
- 240: 8,6
- 243: 8,10
- 244: 10,31
- 246: 33,34
- 247: 33,36
- 248: 5,45
+ 203: 7,2
+ 204: 8,6
+ 207: 8,10
+ 208: 10,31
+ 210: 33,34
+ 211: 33,36
+ 212: 5,45
- node:
color: '#D4D4D419'
id: HalfTileOverlayGreyscale90
decals:
- 207: 30,2
- 208: 9,2
- 212: 2,6
- 213: 2,10
- 214: 2,31
- 219: 1,45
+ 171: 30,2
+ 172: 9,2
+ 176: 2,6
+ 177: 2,10
+ 178: 2,31
+ 183: 1,45
- node:
color: '#5E7C16FF'
id: MiniTileCheckerAOverlay
decals:
- 1093: 12,7
- 1094: 12,8
- 1095: 12,9
- 1096: 13,9
- 1097: 14,9
- 1098: 14,8
- 1099: 13,8
- 1100: 13,7
- 1101: 14,7
- 1102: 21,8
- 1103: 20,8
- 1104: 20,9
- 1105: 21,9
- 1106: 22,9
- 1107: 22,8
- 1108: 22,7
- 1109: 21,7
- 1110: 20,7
- 1141: 17,39
- 1142: 18,39
- 1143: 19,39
- 1144: 20,39
- 1145: 21,39
- 1148: 17,13
- 1149: 17,14
- 1150: 17,15
- 1151: 18,15
- 1152: 19,13
- 1153: 18,13
- 1154: 18,14
- 1155: 19,14
- 1156: 19,15
- 1157: 20,15
- 1158: 21,15
- 1159: 21,14
- 1160: 20,14
- 1161: 20,13
- 1162: 21,13
+ 1019: 12,7
+ 1020: 12,8
+ 1021: 12,9
+ 1022: 13,9
+ 1023: 14,9
+ 1024: 14,8
+ 1025: 13,8
+ 1026: 13,7
+ 1027: 14,7
+ 1028: 21,8
+ 1029: 20,8
+ 1030: 20,9
+ 1031: 21,9
+ 1032: 22,9
+ 1033: 22,8
+ 1034: 22,7
+ 1035: 21,7
+ 1036: 20,7
+ 1054: 17,39
+ 1055: 18,39
+ 1056: 19,39
+ 1057: 20,39
+ 1058: 21,39
+ 1061: 17,13
+ 1062: 17,14
+ 1063: 17,15
+ 1064: 18,15
+ 1065: 19,13
+ 1066: 18,13
+ 1067: 18,14
+ 1068: 19,14
+ 1069: 19,15
+ 1070: 20,15
+ 1071: 21,15
+ 1072: 21,14
+ 1073: 20,14
+ 1074: 20,13
+ 1075: 21,13
+ - node:
+ color: '#7B7B3FFF'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 1520: 12,9
+ 1521: 13,9
+ 1522: 14,9
+ 1523: 14,8
+ 1524: 13,8
+ 1525: 12,8
+ 1526: 12,7
+ 1527: 13,7
+ 1528: 14,7
+ 1531: 20,9
+ 1532: 21,9
+ 1533: 22,9
+ 1534: 22,8
+ 1535: 21,8
+ 1536: 20,8
+ 1537: 20,7
+ 1538: 21,7
+ 1539: 22,7
+ 1665: 17,15
+ 1666: 18,15
+ 1667: 19,15
+ 1668: 20,15
+ 1669: 21,15
+ 1670: 21,14
+ 1671: 20,14
+ 1672: 19,14
+ 1673: 18,14
+ 1674: 17,14
+ 1675: 17,13
+ 1676: 18,13
+ 1677: 19,13
+ 1678: 20,13
+ 1679: 21,13
+ 1851: 32,21
+ 1852: 32,20
+ 1853: 32,19
+ 2015: 17,39
+ 2016: 18,39
+ 2017: 19,39
+ 2018: 20,39
+ 2019: 21,39
- node:
color: '#9FED5896'
id: MiniTileCheckerAOverlay
decals:
- 764: 28,42
- 765: 29,42
- 766: 30,42
- 767: 28,43
- 768: 29,43
- 769: 30,43
- 770: 28,44
- 771: 29,44
- 772: 30,44
+ 713: 28,42
+ 714: 29,42
+ 715: 30,42
+ 716: 28,43
+ 717: 29,43
+ 718: 30,43
+ 719: 28,44
+ 720: 29,44
+ 721: 30,44
+ - node:
+ color: '#9FED58FF'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 1854: 31,21
+ 1855: 31,20
+ 1856: 31,19
+ 1857: 33,21
+ 1858: 33,20
+ 1859: 33,19
- node:
color: '#FFFFFFFF'
id: MiniTileCheckerAOverlay
decals:
- 781: 28,46
- 782: 28,47
- 783: 29,47
- 784: 29,46
+ 730: 28,46
+ 731: 28,47
+ 732: 29,47
+ 733: 29,46
- node:
color: '#5E7C16FF'
id: MiniTileCheckerBOverlay
decals:
- 1111: 32,20
- 1112: 32,21
- 1113: 32,19
- 1114: 21,19
- 1115: 20,19
- 1116: 19,19
- 1117: 19,20
- 1118: 19,21
- 1119: 20,21
- 1120: 21,21
- 1121: 21,20
- 1122: 20,20
- 1123: 9,19
- 1124: 8,19
- 1125: 7,19
- 1126: 7,20
- 1127: 7,21
- 1128: 8,21
- 1129: 9,21
- 1130: 9,20
- 1131: 8,20
- 1132: 18,34
- 1133: 17,34
- 1134: 16,34
- 1135: 16,35
- 1136: 16,36
- 1137: 17,36
- 1138: 17,35
- 1139: 18,35
- 1140: 18,36
+ 1037: 21,19
+ 1038: 20,19
+ 1039: 19,19
+ 1040: 19,20
+ 1041: 19,21
+ 1042: 20,21
+ 1043: 21,21
+ 1044: 21,20
+ 1045: 20,20
+ 1046: 9,19
+ 1047: 8,19
+ 1048: 7,19
+ 1049: 7,20
+ 1050: 8,21
+ 1051: 9,21
+ 1052: 9,20
+ 1053: 8,20
- node:
- color: '#9FED5896'
+ color: '#7B7B3FFF'
+ id: MiniTileCheckerBOverlay
+ decals:
+ 1875: 19,21
+ 1876: 20,21
+ 1877: 21,21
+ 1878: 21,20
+ 1879: 21,19
+ 1880: 20,19
+ 1881: 19,19
+ 1882: 19,20
+ 1883: 20,20
+ 1892: 7,21
+ 1893: 8,21
+ 1894: 9,21
+ 1895: 9,20
+ 1896: 8,20
+ 1897: 7,20
+ 1898: 7,19
+ 1899: 8,19
+ 1900: 9,19
+ 1976: 16,36
+ 1977: 17,36
+ 1978: 18,36
+ 1979: 18,35
+ 1980: 17,35
+ 1981: 16,35
+ 1982: 16,34
+ 1983: 17,34
+ 1984: 18,34
+ - node:
+ color: '#96DAFFFF'
id: MiniTileCheckerBOverlay
decals:
- 0: 31,21
- 1: 31,20
- 2: 31,19
- 3: 33,21
- 4: 33,20
- 5: 33,19
+ 1860: 31,21
+ 1861: 31,20
+ 1862: 31,19
+ 1863: 33,19
+ 1864: 33,20
+ 1865: 33,21
- node:
color: '#5E7C16FF'
id: StandClear
decals:
- 963: 6,2
- 966: 10,2
+ 903: 6,2
+ 906: 10,2
- node:
color: '#DE3A3A96'
id: StandClearGreyscale
decals:
- 204: 26,7
- 205: 32,7
- 206: 29,9
+ 168: 26,7
+ 169: 32,7
+ 170: 29,9
- node:
color: '#5E7C16FF'
id: Tunnel
decals:
- 1358: 3,34
+ 1256: 3,34
- node:
color: '#FFFFFFFF'
id: WarnCornerNE
decals:
- 126: 13,40
- 200: 34,10
+ 114: 13,40
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
- 127: 9,40
- 194: 24,10
+ 115: 9,40
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
decals:
- 125: 13,38
- 199: 34,6
+ 113: 13,38
- node:
color: '#FFFFFFFF'
id: WarnCornerSW
decals:
- 119: 9,38
- 193: 24,6
+ 107: 9,38
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNE
+ decals:
+ 1662: 24,6
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 1661: 34,6
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSE
+ decals:
+ 1663: 24,10
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 1664: 34,10
- node:
color: '#FFFFFFFF'
id: WarnFull
decals:
- 140: 32,35
+ 128: 32,35
- node:
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 128: 13,39
- 129: 26,35
- 197: 34,7
- 198: 34,9
- 1048: 26,36
- 1049: 26,34
+ 116: 13,39
+ 117: 26,35
+ 974: 26,36
+ 975: 26,34
+ 1647: 24,7
+ 1648: 24,8
+ 1649: 24,9
- node:
color: '#5E7C16FF'
id: WarnLineGreyscaleE
decals:
- 852: 16,2
- 853: 5,2
- 854: 10,8
- 855: 34,2
- 856: 34,8
- 857: 34,20
- 858: 34,26
- 859: 30,26
- 860: 26,26
- 861: 22,26
- 862: 18,26
- 863: 14,26
- 864: 2,26
- 865: 12,31
- 866: 26,31
- 867: 34,35
- 868: 30,39
- 869: 30,45
- 870: 22,45
- 871: 14,45
- 872: 6,45
- 873: 6,39
- 874: 10,35
- 875: 14,39
- 876: 22,35
- 877: 22,39
- 878: 30,14
- 879: 22,14
- 880: 6,14
- 942: 4,20
- 1011: 21,2
- 1282: 22,20
- 1283: 16,20
- 1284: 10,20
+ 801: 16,2
+ 802: 10,8
+ 803: 34,2
+ 804: 34,26
+ 805: 30,26
+ 806: 26,26
+ 807: 22,26
+ 808: 18,26
+ 809: 14,26
+ 810: 2,26
+ 811: 12,31
+ 812: 26,31
+ 813: 34,35
+ 814: 30,39
+ 815: 30,45
+ 816: 22,45
+ 817: 14,45
+ 818: 6,45
+ 819: 6,39
+ 820: 10,35
+ 821: 14,39
+ 822: 22,35
+ 823: 22,39
+ 824: 30,14
+ 825: 22,14
+ 826: 6,14
+ 882: 4,20
+ 937: 21,2
+ 1183: 22,20
+ 1184: 16,20
+ 1185: 10,20
+ - node:
+ color: '#B8B873FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 1497: 5,2
+ 1500: 16,2
+ 1575: 10,8
+ 1607: 21,2
+ 1608: 34,2
+ 1615: 34,8
+ 1710: 22,14
+ 1715: 14,14
+ 1716: 6,14
+ 1742: 34,26
+ 1743: 30,26
+ 1744: 26,26
+ 1745: 22,26
+ 1778: 22,20
+ 1779: 16,20
+ 1780: 10,20
+ 1781: 4,20
+ 1782: 2,26
+ 1783: 14,26
+ 1784: 18,26
+ 1785: 22,26
+ 1867: 34,20
+ 1922: 12,31
+ 1923: 10,35
+ 1926: 22,35
+ 1927: 26,31
+ 1933: 34,35
+ 1934: 30,39
+ 1935: 22,39
+ 1936: 14,39
+ 1937: 6,39
+ 1938: 6,45
+ 1939: 14,45
+ 1940: 22,45
+ 1941: 30,45
+ 1975: 14,35
- node:
color: '#5E7C16FF'
id: WarnLineGreyscaleN
decals:
- 881: 29,10
- 882: 17,10
- 883: 3,16
- 884: 19,16
- 885: 32,22
- 886: 26,22
- 887: 20,22
- 888: 14,22
- 889: 8,22
- 890: 2,22
- 891: 1,28
- 892: 5,28
- 893: 13,28
- 894: 17,28
- 895: 21,28
- 896: 29,28
- 897: 29,36
- 898: 19,40
- 899: 11,40
- 900: 3,48
- 901: 11,48
- 902: 27,48
+ 827: 17,10
+ 828: 3,16
+ 829: 32,22
+ 830: 26,22
+ 831: 20,22
+ 832: 14,22
+ 833: 8,22
+ 834: 2,22
+ 835: 1,28
+ 836: 5,28
+ 837: 13,28
+ 838: 17,28
+ 839: 21,28
+ 840: 29,28
+ 841: 29,36
+ 842: 19,40
+ 843: 11,40
+ 844: 3,48
+ 845: 11,48
+ 846: 27,48
+ - node:
+ color: '#B8B873FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 1567: 17,10
+ 1604: 26,4
+ 1611: 29,10
+ 1612: 32,6
+ 1613: 26,6
+ 1708: 19,16
+ 1713: 11,16
+ 1717: 3,16
+ 1732: 29,28
+ 1733: 21,28
+ 1753: 1,28
+ 1754: 5,28
+ 1755: 13,28
+ 1756: 17,28
+ 1757: 14,22
+ 1758: 8,22
+ 1759: 2,22
+ 1766: 32,22
+ 1767: 26,22
+ 1768: 20,22
+ 1769: 14,22
+ 1932: 29,36
+ 1956: 27,48
+ 1957: 11,48
+ 1958: 3,48
+ 1959: 11,40
+ 1960: 19,40
+ 1961: 19,40
+ 1962: 29,36
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleN
decals:
- 145: 27,35
- 146: 28,35
- 147: 30,35
- 148: 31,35
- 1038: 29,35
+ 133: 27,35
+ 134: 28,35
+ 135: 30,35
+ 136: 31,35
+ 964: 29,35
- node:
color: '#5E7C16FF'
id: WarnLineGreyscaleS
decals:
- 903: 26,0
- 904: 17,6
- 905: 29,6
- 906: 19,12
- 907: 3,12
- 908: 2,18
- 909: 8,18
- 910: 14,18
- 911: 20,18
- 912: 26,18
- 913: 32,18
- 914: 33,24
- 915: 29,24
- 916: 25,24
- 917: 21,24
- 918: 17,24
- 919: 13,24
- 920: 5,24
- 921: 1,24
- 922: 20,30
- 923: 29,34
- 924: 11,38
- 925: 19,38
- 926: 27,42
- 927: 11,42
- 928: 3,42
- 1320: 32,28
- 1321: 33,28
- 1322: 34,28
+ 847: 26,0
+ 848: 17,6
+ 849: 19,12
+ 850: 3,12
+ 851: 2,18
+ 852: 8,18
+ 853: 14,18
+ 854: 20,18
+ 855: 26,18
+ 856: 32,18
+ 857: 33,24
+ 858: 29,24
+ 859: 25,24
+ 860: 21,24
+ 861: 17,24
+ 862: 13,24
+ 863: 5,24
+ 864: 1,24
+ 865: 20,30
+ 866: 29,34
+ 867: 11,38
+ 868: 19,38
+ 869: 27,42
+ 870: 11,42
+ 871: 3,42
+ 1221: 32,28
+ 1222: 33,28
+ 1223: 34,28
+ - node:
+ color: '#B8B873FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 1568: 17,6
+ 1603: 26,0
+ 1609: 29,6
+ 1610: 29,10
+ 1711: 19,12
+ 1712: 11,12
+ 1719: 3,12
+ 1734: 29,24
+ 1735: 21,24
+ 1740: 33,24
+ 1741: 25,24
+ 1746: 32,28
+ 1747: 33,28
+ 1748: 34,28
+ 1749: 17,24
+ 1750: 13,24
+ 1751: 5,24
+ 1752: 1,24
+ 1760: 2,18
+ 1761: 8,18
+ 1762: 14,18
+ 1763: 20,18
+ 1764: 26,18
+ 1765: 32,18
+ 1929: 20,30
+ 1930: 29,34
+ 1950: 29,34
+ 1951: 19,38
+ 1952: 11,38
+ 1953: 11,42
+ 1954: 3,42
+ 1955: 27,42
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleS
decals:
- 141: 27,35
- 142: 28,35
- 143: 30,35
- 144: 31,35
- 1039: 29,35
+ 129: 27,35
+ 130: 28,35
+ 131: 30,35
+ 132: 31,35
+ 965: 29,35
- node:
color: '#5E7C16FF'
id: WarnLineGreyscaleW
decals:
- 929: 0,2
- 930: 11,2
- 931: 23,2
- 932: 24,8
- 933: 0,8
- 934: 0,14
- 935: 16,14
- 936: 24,14
- 937: 30,20
- 938: 18,20
- 939: 12,20
- 940: 6,20
- 941: 0,20
- 943: 0,26
- 944: 12,26
- 945: 16,26
- 946: 20,26
- 947: 24,26
- 948: 28,26
- 949: 32,26
- 950: 14,31
- 951: 0,31
- 952: 0,35
- 953: 12,35
- 954: 24,35
- 955: 24,39
- 956: 16,39
- 957: 8,39
- 958: 0,39
- 959: 0,45
- 960: 8,45
- 961: 16,45
- 962: 24,45
- 1012: 18,2
+ 872: 11,2
+ 873: 23,2
+ 874: 0,8
+ 875: 0,14
+ 876: 24,14
+ 877: 30,20
+ 878: 18,20
+ 879: 12,20
+ 880: 6,20
+ 881: 0,20
+ 883: 0,26
+ 884: 12,26
+ 885: 16,26
+ 886: 20,26
+ 887: 24,26
+ 888: 28,26
+ 889: 32,26
+ 890: 14,31
+ 891: 0,31
+ 892: 0,35
+ 893: 12,35
+ 894: 24,35
+ 895: 24,39
+ 896: 16,39
+ 897: 8,39
+ 898: 0,39
+ 899: 0,45
+ 900: 8,45
+ 901: 16,45
+ 902: 24,45
+ 938: 18,2
+ - node:
+ color: '#B8B873FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 1498: 0,2
+ 1499: 11,2
+ 1576: 0,8
+ 1605: 23,2
+ 1606: 18,2
+ 1614: 24,8
+ 1709: 16,14
+ 1714: 8,14
+ 1718: 0,14
+ 1736: 20,26
+ 1737: 24,26
+ 1738: 28,26
+ 1739: 32,26
+ 1770: 0,26
+ 1771: 0,20
+ 1772: 6,20
+ 1773: 12,20
+ 1774: 12,26
+ 1775: 16,26
+ 1776: 18,20
+ 1777: 30,20
+ 1921: 0,31
+ 1924: 0,35
+ 1925: 12,35
+ 1928: 14,31
+ 1931: 24,35
+ 1942: 24,45
+ 1943: 24,39
+ 1944: 16,39
+ 1945: 16,45
+ 1946: 8,45
+ 1947: 0,45
+ 1948: 0,39
+ 1949: 20,35
+ 2001: 8,39
- node:
color: '#FFFFFFFF'
id: WarnLineN
decals:
- 122: 10,38
- 123: 12,38
- 130: 27,34
- 131: 28,34
- 132: 30,34
- 133: 31,34
- 134: 32,34
- 185: 28,6
- 186: 27,6
- 187: 26,6
- 188: 25,6
- 189: 30,6
- 190: 31,6
- 191: 32,6
- 192: 33,6
+ 110: 10,38
+ 111: 12,38
+ 118: 27,34
+ 119: 28,34
+ 120: 30,34
+ 121: 31,34
+ 122: 32,34
+ 1650: 25,10
+ 1651: 26,10
+ 1652: 27,10
+ 1653: 28,10
+ 1654: 30,10
+ 1655: 31,10
+ 1656: 32,10
+ 1657: 33,10
- node:
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 124: 9,39
- 195: 24,7
- 196: 24,9
+ 112: 9,39
+ 1658: 34,9
+ 1659: 34,8
+ 1660: 34,7
- node:
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 120: 10,40
- 121: 12,40
- 135: 27,36
- 136: 28,36
- 137: 30,36
- 138: 31,36
- 139: 32,36
- 177: 25,10
- 178: 26,10
- 179: 28,10
- 180: 27,10
- 181: 30,10
- 182: 31,10
- 183: 32,10
- 184: 33,10
+ 108: 10,40
+ 109: 12,40
+ 123: 27,36
+ 124: 28,36
+ 125: 30,36
+ 126: 31,36
+ 127: 32,36
+ 1640: 33,6
+ 1641: 31,6
+ 1642: 30,6
+ 1643: 29,6
+ 1644: 28,6
+ 1645: 27,6
+ 1646: 25,6
- node:
cleanable: True
color: '#80C71F7F'
id: revolution
decals:
- 850: 14.060958,20.754644
- 851: 13.607299,19.803425
+ 799: 14.060958,20.754644
+ 800: 13.607299,19.803425
- node:
cleanable: True
color: '#B02E60A3'
id: revolution
decals:
- 849: 25.02975,25.438416
+ 798: 25.02975,25.438416
- node:
cleanable: True
angle: -1.5707963267948966 rad
color: '#B02E2644'
id: splatter
decals:
- 845: 27.967218,24.104916
+ 794: 27.967218,24.104916
- node:
cleanable: True
color: '#B02E2666'
id: splatter
decals:
- 840: 8.891183,43.065514
+ 789: 8.891183,43.065514
- node:
cleanable: True
angle: -1.5707963267948966 rad
color: '#B02E266F'
id: splatter
decals:
- 846: 32.200607,35.087025
- 847: 13.24002,46.473877
- 848: 24.497486,47.84553
+ 795: 32.200607,35.087025
+ 796: 13.24002,46.473877
+ 797: 24.497486,47.84553
- node:
cleanable: True
angle: -4.71238898038469 rad
color: '#B02E26B4'
id: splatter
decals:
- 842: 8.788744,42.524048
- 843: 15.538555,20.953827
- 844: 24.864944,27.488853
+ 791: 8.788744,42.524048
+ 792: 15.538555,20.953827
+ 793: 24.864944,27.488853
- node:
cleanable: True
angle: -3.141592653589793 rad
color: '#B02E26B4'
id: splatter
decals:
- 841: 9.110695,42.81673
+ 790: 9.110695,42.81673
- type: RadiationGridResistance
- type: LoadedMap
- type: SpreaderGrid
@@ -2236,8 +2753,6 @@ entities:
entities:
- uid: 1515
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,43.5
parent: 588
@@ -2684,115 +3199,19 @@ entities:
entities:
- uid: 1600
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,7.5
parent: 588
- uid: 1601
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,9.5
parent: 588
- uid: 1602
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,7.5
parent: 588
-- proto: Bola
- entities:
- - uid: 1157
- components:
- - type: Transform
- pos: 15.616387,0.61007345
- parent: 588
-- proto: BookHowToSurvive
- entities:
- - uid: 329
- components:
- - type: Transform
- pos: 19.515087,0.66057134
- parent: 588
-- proto: BookRandom
- entities:
- - uid: 1835
- components:
- - type: Transform
- pos: 24.420084,44.539436
- parent: 588
-- proto: BoxFolderBlack
- entities:
- - uid: 340
- components:
- - type: Transform
- pos: 21.640549,3.6813393
- parent: 588
- - uid: 341
- components:
- - type: Transform
- pos: 24.823723,1.650089
- parent: 588
- - uid: 365
- components:
- - type: Transform
- pos: 27.841173,1.5632035
- parent: 588
- - uid: 728
- components:
- - type: Transform
- pos: 10.690479,19.262342
- parent: 588
-- proto: BoxFolderGrey
- entities:
- - uid: 364
- components:
- - type: Transform
- pos: 25.072409,1.4780562
- parent: 588
- - uid: 727
- components:
- - type: Transform
- pos: 7.2148314,22.575037
- parent: 588
-- proto: BoxFolderRed
- entities:
- - uid: 726
- components:
- - type: Transform
- pos: 10.428753,19.429379
- parent: 588
-- proto: BoxFolderYellow
- entities:
- - uid: 342
- components:
- - type: Transform
- pos: 28.104973,1.6709224
- parent: 588
-- proto: BoxMouthSwab
- entities:
- - uid: 1476
- components:
- - type: Transform
- pos: 12.356534,44.605965
- parent: 588
-- proto: BoxMRE
- entities:
- - uid: 1027
- components:
- - type: Transform
- pos: 6.6091695,19.790632
- parent: 588
-- proto: BoxSterileMask
- entities:
- - uid: 1477
- components:
- - type: Transform
- pos: 12.683106,44.705303
- parent: 588
- proto: BriefcaseBrownFilled
entities:
- uid: 325
@@ -6403,13 +6822,6 @@ entities:
- type: Transform
pos: 24.5,18.5
parent: 588
-- proto: Cautery
- entities:
- - uid: 1474
- components:
- - type: Transform
- pos: 8.533231,42.775993
- parent: 588
- proto: Chair
entities:
- uid: 357
@@ -6720,372 +7132,148 @@ entities:
rot: -1.5707963267948966 rad
pos: 25.5,44.5
parent: 588
-- proto: CigarGold
+- proto: ClosetWallMaintenanceFilledRandom
entities:
- - uid: 1219
+ - uid: 499
components:
- type: Transform
- pos: 7.4719925,36.539555
+ rot: -1.5707963267948966 rad
+ pos: 25.5,15.5
parent: 588
-- proto: ClosetBombFilled
- entities:
- - uid: 413
+ - uid: 868
components:
- type: Transform
- pos: 14.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,27.5
parent: 588
- - uid: 1014
+ - uid: 1564
components:
- type: Transform
- pos: 12.5,27.5
+ pos: 17.5,43.5
parent: 588
- - uid: 1026
+ - uid: 1565
components:
- type: Transform
- pos: 16.5,27.5
+ pos: 21.5,43.5
parent: 588
-- proto: ClosetEmergencyFilledRandom
+- proto: ClothingHeadHatPwig
entities:
- - uid: 1203
+ - uid: 369
components:
- type: Transform
- pos: 12.5,30.5
+ pos: 25.824945,3.5783403
parent: 588
- - uid: 1204
+- proto: ClothingHeadHelmetThunderdome
+ entities:
+ - uid: 1240
components:
- type: Transform
- pos: 0.5,32.5
+ pos: 34.48682,24.732521
parent: 588
- - uid: 1205
+- proto: ClothingNeckLawyerbadge
+ entities:
+ - uid: 326
components:
- type: Transform
- pos: 9.5,9.5
+ pos: 21.586027,4.583762
parent: 588
- - uid: 1207
+- proto: ClothingOuterHardsuitMercenary
+ entities:
+ - uid: 604
components:
- type: Transform
- pos: 1.5,7.5
+ pos: 30.349852,8.5612135
parent: 588
-- proto: ClosetFireFilled
- entities:
- - uid: 1194
+ - uid: 605
components:
- type: Transform
- pos: 1.5,9.5
+ pos: 30.599852,8.7799635
parent: 588
- - uid: 1195
+ - type: GroupExamine
+ group:
+ - hoverMessage: ""
+ contextText: verb-examine-group-other
+ icon: /Textures/Interface/examine-star.png
+ components:
+ - Armor
+ - ClothingSpeedModifier
+ entries:
+ - message: >-
+ This decreases your running speed by [color=yellow]20%[/color].
+
+ This decreases your walking speed by [color=yellow]10%[/color].
+ priority: 0
+ component: ClothingSpeedModifier
+ - message: >-
+ It provides the following protection:
+
+ - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]25%[/color].
+
+ - [color=yellow]Slash[/color] damage reduced by [color=lightblue]25%[/color].
+
+ - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]25%[/color].
+
+ - [color=yellow]Heat[/color] damage reduced by [color=lightblue]20%[/color].
+
+ - [color=yellow]Radiation[/color] damage reduced by [color=lightblue]40%[/color].
+
+ - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]20%[/color].
+
+ - [color=orange]Explosion[/color] damage reduced by [color=lightblue]40%[/color].
+ priority: 0
+ component: Armor
+ title: null
+- proto: ClothingOuterRobesJudge
+ entities:
+ - uid: 370
components:
- type: Transform
- pos: 9.5,7.5
+ pos: 27.40101,3.677678
parent: 588
- - uid: 1196
+- proto: ClusterBangFull
+ entities:
+ - uid: 599
components:
- type: Transform
- pos: 6.5,40.5
+ pos: 33.484257,28.42918
parent: 588
- - uid: 1197
+- proto: ComputerAlert
+ entities:
+ - uid: 999
components:
- type: Transform
- pos: 0.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,30.5
parent: 588
-- proto: ClosetL3SecurityFilled
- entities:
- - uid: 415
+ - uid: 1001
components:
- type: Transform
- pos: 20.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,30.5
parent: 588
-- proto: ClosetToolFilled
- entities:
- - uid: 1007
+ - uid: 1561
components:
- type: Transform
- pos: 14.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,46.5
parent: 588
-- proto: ClosetWallMaintenanceFilledRandom
+- proto: computerBodyScanner
entities:
- - uid: 499
+ - uid: 1394
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,44.5
parent: 588
- - uid: 868
+ - uid: 1423
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,27.5
+ pos: 13.5,44.5
parent: 588
- - uid: 1564
- components:
- - type: Transform
- pos: 17.5,43.5
- parent: 588
- - uid: 1565
- components:
- - type: Transform
- pos: 21.5,43.5
- parent: 588
-- proto: ClothingBeltChampion
- entities:
- - uid: 1236
- components:
- - type: Transform
- pos: 10.581136,39.53631
- parent: 588
-- proto: ClothingBeltMercenaryWebbing
- entities:
- - uid: 375
- components:
- - type: Transform
- pos: 1.4924802,12.631929
- parent: 588
- - uid: 376
- components:
- - type: Transform
- pos: 12.697874,24.709444
- parent: 588
- - uid: 1295
- components:
- - type: Transform
- pos: 12.375464,13.080543
- parent: 588
-- proto: ClothingEyesGlassesMercenary
- entities:
- - uid: 399
- components:
- - type: Transform
- pos: 18.579332,25.60734
- parent: 588
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 1108
- components:
- - type: Transform
- pos: 25.666832,30.643515
- parent: 588
-- proto: ClothingHandsGlovesNitrile
- entities:
- - uid: 1715
- components:
- - type: Transform
- pos: 10.432637,44.476112
- parent: 588
-- proto: ClothingHeadBandMercenary
- entities:
- - uid: 416
- components:
- - type: Transform
- pos: 12.631268,39.67906
- parent: 588
-- proto: ClothingHeadHatBeretMercenary
- entities:
- - uid: 553
- components:
- - type: Transform
- pos: 18.391832,25.45109
- parent: 588
- - uid: 573
- components:
- - type: Transform
- pos: 12.734407,6.73884
- parent: 588
- - uid: 583
- components:
- - type: Transform
- pos: 5.524373,0.5536155
- parent: 588
-- proto: ClothingHeadHatBH
- entities:
- - uid: 522
- components:
- - type: Transform
- pos: 12.85776,13.549293
- parent: 588
-- proto: ClothingHeadHatPwig
- entities:
- - uid: 369
- components:
- - type: Transform
- pos: 25.824945,3.5783403
- parent: 588
-- proto: ClothingHeadHatSurgcapPurple
- entities:
- - uid: 1711
- components:
- - type: Transform
- pos: 10.304593,44.632217
- parent: 588
-- proto: ClothingHeadHelmetMercenary
- entities:
- - uid: 560
- components:
- - type: Transform
- pos: 5.6832914,12.454846
- parent: 588
- - uid: 1245
- components:
- - type: Transform
- pos: 22.412798,6.775266
- parent: 588
-- proto: ClothingHeadHelmetThunderdome
- entities:
- - uid: 1240
- components:
- - type: Transform
- pos: 34.48682,24.732521
- parent: 588
-- proto: ClothingMaskGasMercenary
- entities:
- - uid: 574
- components:
- - type: Transform
- pos: 3.5032444,0.589267
- parent: 588
- - uid: 577
- components:
- - type: Transform
- pos: 12.416624,24.521944
- parent: 588
- - uid: 582
- components:
- - type: Transform
- pos: 22.381674,10.488114
- parent: 588
-- proto: ClothingNeckLawyerbadge
- entities:
- - uid: 326
- components:
- - type: Transform
- pos: 21.586027,4.583762
- parent: 588
-- proto: ClothingOuterArmorReflective
- entities:
- - uid: 1031
- components:
- - type: Transform
- pos: 18.47467,24.458666
- parent: 588
-- proto: ClothingOuterCoatBHTrench
- entities:
- - uid: 1267
- components:
- - type: Transform
- pos: 13.45151,12.570126
- parent: 588
-- proto: ClothingOuterHardsuitMercenary
- entities:
- - uid: 604
- components:
- - type: Transform
- pos: 30.349852,8.5612135
- parent: 588
- - uid: 605
- components:
- - type: Transform
- pos: 30.599852,8.7799635
- parent: 588
-- proto: ClothingOuterRobesJudge
- entities:
- - uid: 370
- components:
- - type: Transform
- pos: 27.40101,3.677678
- parent: 588
-- proto: ClothingOuterVestWebMercenary
- entities:
- - uid: 603
- components:
- - type: Transform
- pos: 18.693916,24.62611
- parent: 588
- - uid: 606
- components:
- - type: Transform
- pos: 5.423255,12.579846
- parent: 588
- - uid: 704
- components:
- - type: Transform
- pos: 12.632391,6.4559298
- parent: 588
-- proto: ClothingShoesBootsMagMercenaryFilled
- entities:
- - uid: 1013
- components:
- - type: Transform
- pos: 13.477484,0.59968376
- parent: 588
-- proto: ClothingShoesBootsMercenaryFilled
- entities:
- - uid: 954
- components:
- - type: Transform
- pos: 12.58329,25.65736
- parent: 588
- - uid: 968
- components:
- - type: Transform
- pos: 18.52602,0.745517
- parent: 588
-- proto: ClothingUniformJumpskirtColorMaroon
- entities:
- - uid: 1714
- components:
- - type: Transform
- pos: 10.673761,44.53288
- parent: 588
-- proto: ClothingUniformJumpsuitColorMaroon
- entities:
- - uid: 1713
- components:
- - type: Transform
- pos: 10.645364,44.67479
- parent: 588
-- proto: ClusterBangFull
- entities:
- - uid: 599
- components:
- - type: Transform
- pos: 33.484257,28.42918
- parent: 588
-- proto: ComputerAlert
- entities:
- - uid: 999
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,30.5
- parent: 588
- - uid: 1001
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,30.5
- parent: 588
- - uid: 1561
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,46.5
- parent: 588
-- proto: computerBodyScanner
- entities:
- - uid: 1394
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,44.5
- parent: 588
- - uid: 1423
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,44.5
- parent: 588
-- proto: ComputerCriminalRecords
- entities:
- - uid: 461
+- proto: ComputerCriminalRecords
+ entities:
+ - uid: 461
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -7158,13 +7346,6 @@ entities:
- type: Transform
pos: 25.5,43.5
parent: 588
-- proto: CrateHydroponicsSeedsExotic
- entities:
- - uid: 1660
- components:
- - type: Transform
- pos: 31.5,22.5
- parent: 588
- proto: CrayonBox
entities:
- uid: 1057
@@ -7172,11 +7353,6 @@ entities:
- type: Transform
pos: 20.47107,24.608877
parent: 588
- - uid: 1116
- components:
- - type: Transform
- pos: 20.607256,14.646415
- parent: 588
- proto: CryoPod
entities:
- uid: 1395
@@ -7201,13 +7377,6 @@ entities:
- type: Transform
pos: 18.5,32.5
parent: 588
-- proto: DiceBag
- entities:
- - uid: 552
- components:
- - type: Transform
- pos: 20.294882,15.426926
- parent: 588
- proto: DiseaseDiagnoser
entities:
- uid: 1424
@@ -7237,18 +7406,6 @@ entities:
- type: Transform
pos: 22.5,38.5
parent: 588
-- proto: DonkpocketBoxSpawner
- entities:
- - uid: 526
- components:
- - type: Transform
- pos: 16.5,13.5
- parent: 588
- - uid: 723
- components:
- - type: Transform
- pos: 18.5,21.5
- parent: 588
- proto: DoorElectronics
entities:
- uid: 659
@@ -7289,73 +7446,13 @@ entities:
- type: Transform
pos: 13.5,34.5
parent: 588
-- proto: DrinkMREFlask
+- proto: EmergencyLight
entities:
- - uid: 761
+ - uid: 1716
components:
- type: Transform
- pos: 6.8591695,22.707298
- parent: 588
- - uid: 1011
- components:
- - type: Transform
- pos: 12.688126,13.059709
- parent: 588
-- proto: DrinkMugMetal
- entities:
- - uid: 1294
- components:
- - type: Transform
- pos: 22.442232,12.514399
- parent: 588
-- proto: DrinkMugRed
- entities:
- - uid: 721
- components:
- - type: Transform
- pos: 22.448559,18.561966
- parent: 588
- - uid: 1293
- components:
- - type: Transform
- pos: 22.328642,12.741456
- parent: 588
-- proto: DrinkShotGlass
- entities:
- - uid: 578
- components:
- - type: Transform
- pos: 12.412022,12.535878
- parent: 588
- - uid: 579
- components:
- - type: Transform
- pos: 12.539811,12.748745
- parent: 588
-- proto: DrinkWaterCup
- entities:
- - uid: 722
- components:
- - type: Transform
- pos: 18.373508,18.661304
- parent: 588
- - uid: 762
- components:
- - type: Transform
- pos: 6.313587,19.590261
- parent: 588
- - uid: 763
- components:
- - type: Transform
- pos: 6.441377,19.419968
- parent: 588
-- proto: EmergencyLight
- entities:
- - uid: 1716
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,6.5
parent: 588
- type: PointLight
enabled: True
@@ -7552,15 +7649,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 1740
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,19.5
- parent: 588
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 1742
components:
- type: Transform
@@ -7659,18 +7747,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
-- proto: EmergencyRollerBed
- entities:
- - uid: 1141
- components:
- - type: Transform
- pos: 30.5,25.5
- parent: 588
- - uid: 1142
- components:
- - type: Transform
- pos: 30.5,24.5
- parent: 588
- proto: ExtinguisherCabinetFilled
entities:
- uid: 867
@@ -7741,13 +7817,6 @@ entities:
- type: Transform
pos: 10.726851,19.047483
parent: 588
-- proto: FlashlightLantern
- entities:
- - uid: 1022
- components:
- - type: Transform
- pos: 5.4813356,16.454845
- parent: 588
- proto: FloodlightBroken
entities:
- uid: 1193
@@ -8111,27 +8180,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,43.5
parent: 588
-- proto: FoodBowlBigTrash
- entities:
- - uid: 1840
- components:
- - type: Transform
- pos: 30.547388,48.16116
- parent: 588
-- proto: FoodBurgerXeno
- entities:
- - uid: 764
- components:
- - type: Transform
- pos: 10.975294,39.80753
- parent: 588
-- proto: FoodPlateSmallPlastic
- entities:
- - uid: 529
- components:
- - type: Transform
- pos: 17.462528,12.615073
- parent: 588
- proto: FoodPlateTrash
entities:
- uid: 1692
@@ -8139,13 +8187,6 @@ entities:
- type: Transform
pos: 28.80027,47.44947
parent: 588
-- proto: ForkPlastic
- entities:
- - uid: 531
- components:
- - type: Transform
- pos: 17.405733,12.600882
- parent: 588
- proto: GasFilter
entities:
- uid: 1415
@@ -8245,20 +8286,6 @@ entities:
- type: Transform
pos: 10.5,48.5
parent: 588
-- proto: GatfruitSeeds
- entities:
- - uid: 562
- components:
- - type: Transform
- pos: 8.528373,27.49547
- parent: 588
-- proto: Gauze
- entities:
- - uid: 1482
- components:
- - type: Transform
- pos: 8.452288,42.514927
- parent: 588
- proto: Girder
entities:
- uid: 1301
@@ -8353,72 +8380,43 @@ entities:
rot: -1.5707963267948966 rad
pos: 27.5,39.5
parent: 588
-- proto: Handcuffs
- entities:
- - uid: 1614
- components:
- - type: Transform
- pos: 22.608034,10.659381
- parent: 588
-- proto: Hemostat
- entities:
- - uid: 1471
- components:
- - type: Transform
- pos: 8.51377,43.004257
- parent: 588
- proto: HighSecArmoryLocked
entities:
- uid: 1597
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,7.5
parent: 588
- uid: 1598
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,7.5
parent: 588
- uid: 1599
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,9.5
parent: 588
- proto: HospitalCurtains
entities:
- - uid: 402
+ - uid: 866
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,27.5
parent: 588
- uid: 949
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,24.5
parent: 588
- - uid: 951
+ - uid: 1284
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,27.5
parent: 588
- uid: 1768
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 24.5,48.5
@@ -8483,44 +8481,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 24.5,42.5
parent: 588
-- proto: HydroponicsToolHatchet
- entities:
- - uid: 1844
- components:
- - type: Transform
- pos: 29.538284,44.04174
- parent: 588
- - uid: 1851
- components:
- - type: Transform
- pos: 30.630798,21.602604
- parent: 588
-- proto: HydroponicsToolMiniHoe
- entities:
- - uid: 1837
- components:
- - type: Transform
- pos: 30.099596,43.446724
- parent: 588
- - uid: 1841
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.38517,20.601
- parent: 588
-- proto: HydroponicsToolSpade
- entities:
- - uid: 1838
- components:
- - type: Transform
- pos: 29.95761,43.361576
- parent: 588
- - uid: 1842
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.42777,20.58681
- parent: 588
- proto: hydroponicsTray
entities:
- uid: 796
@@ -8560,56 +8520,6 @@ entities:
- type: Transform
pos: 30.5,42.5
parent: 588
-- proto: IngotGold
- entities:
- - uid: 952
- components:
- - type: Transform
- pos: 11.069347,39.504154
- parent: 588
-- proto: KitchenMicrowave
- entities:
- - uid: 524
- components:
- - type: Transform
- pos: 16.5,12.5
- parent: 588
- - uid: 709
- components:
- - type: Transform
- pos: 18.5,22.5
- parent: 588
- - uid: 1785
- components:
- - type: Transform
- pos: 29.5,48.5
- parent: 588
-- proto: KitchenReagentGrinder
- entities:
- - uid: 1786
- components:
- - type: Transform
- pos: 30.5,47.5
- parent: 588
-- proto: KnifePlastic
- entities:
- - uid: 530
- components:
- - type: Transform
- pos: 17.249546,12.643455
- parent: 588
- - uid: 1836
- components:
- - type: Transform
- pos: 30.241585,48.271698
- parent: 588
-- proto: KukriKnife
- entities:
- - uid: 1576
- components:
- - type: Transform
- pos: 26.471617,3.6373227
- parent: 588
- proto: Lamp
entities:
- uid: 581
@@ -8640,20 +8550,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.765976,19.912766
parent: 588
-- proto: LessLethalVendingMachine
- entities:
- - uid: 1234
- components:
- - type: Transform
- pos: 16.5,25.5
- parent: 588
-- proto: Lighter
- entities:
- - uid: 1220
- components:
- - type: Transform
- pos: 7.5287867,36.397644
- parent: 588
- proto: LockerBoozeFilled
entities:
- uid: 1028
@@ -8661,13 +8557,6 @@ entities:
- type: Transform
pos: 14.5,16.5
parent: 588
-- proto: LockerMedicineFilled
- entities:
- - uid: 1152
- components:
- - type: Transform
- pos: 28.5,27.5
- parent: 588
- proto: LockerMercenary
entities:
- uid: 1029
@@ -8719,30 +8608,6 @@ entities:
parent: 588
- type: Lock
locked: False
-- proto: LockerMercenaryFilled
- entities:
- - uid: 1107
- components:
- - type: Transform
- pos: 20.5,6.5
- parent: 588
- - uid: 1109
- components:
- - type: Transform
- pos: 12.5,28.5
- parent: 588
- - uid: 1110
- components:
- - type: Transform
- pos: 6.5,12.5
- parent: 588
-- proto: MachineFrame
- entities:
- - uid: 400
- components:
- - type: Transform
- pos: 26.5,8.5
- parent: 588
- proto: MagazineBoxAntiMateriel
entities:
- uid: 1010
@@ -8852,20 +8717,6 @@ entities:
- type: Transform
pos: 28.5,25.5
parent: 588
-- proto: MedkitAdvancedFilled
- entities:
- - uid: 1153
- components:
- - type: Transform
- pos: 30.614443,28.392822
- parent: 588
-- proto: MedkitCombatFilled
- entities:
- - uid: 1154
- components:
- - type: Transform
- pos: 30.40146,28.066427
- parent: 588
- proto: OperatingTable
entities:
- uid: 1389
@@ -8885,105 +8736,25 @@ entities:
- type: Transform
pos: 20.669853,24.52373
parent: 588
-- proto: PaperOffice
+- proto: PartRodMetal1
entities:
- - uid: 327
+ - uid: 1071
components:
- type: Transform
- pos: 21.415642,4.0728827
+ rot: 1.5707963267948966 rad
+ pos: 25.341253,26.595633
parent: 588
- - uid: 328
+ - uid: 1072
components:
- type: Transform
- pos: 21.586027,4.0019264
+ pos: 25.36965,28.11408
parent: 588
- - uid: 1113
+- proto: PhoneInstrument
+ entities:
+ - uid: 371
components:
- type: Transform
- pos: 20.706646,15.341779
- parent: 588
- - uid: 1114
- components:
- - type: Transform
- pos: 20.465267,15.185677
- parent: 588
- - uid: 1115
- components:
- - type: Transform
- pos: 20.30908,14.603841
- parent: 588
- - uid: 1616
- components:
- - type: Transform
- pos: 7.6521306,22.662569
- parent: 588
-- proto: PartRodMetal1
- entities:
- - uid: 1071
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.341253,26.595633
- parent: 588
- - uid: 1072
- components:
- - type: Transform
- pos: 25.36965,28.11408
- parent: 588
-- proto: Pen
- entities:
- - uid: 366
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.352327,3.9473093
- parent: 588
- - uid: 367
- components:
- - type: Transform
- pos: 18.75395,1.1232786
- parent: 588
- - uid: 368
- components:
- - type: Transform
- pos: 24.788435,1.4496742
- parent: 588
- - uid: 731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.36841,19.019064
- parent: 588
- - uid: 732
- components:
- - type: Transform
- pos: 7.4631767,22.637186
- parent: 588
-- proto: PhoneInstrument
- entities:
- - uid: 371
- components:
- - type: Transform
- pos: 25.484175,4.4865713
- parent: 588
-- proto: PillCanister
- entities:
- - uid: 1481
- components:
- - type: Transform
- pos: 14.438607,42.637726
- parent: 588
-- proto: PillSpaceDrugs
- entities:
- - uid: 1479
- components:
- - type: Transform
- pos: 14.438607,42.96412
- parent: 588
- - uid: 1480
- components:
- - type: Transform
- pos: 14.537998,42.878975
+ pos: 25.484175,4.4865713
parent: 588
- proto: PlushieNuke
entities:
@@ -9065,18 +8836,6 @@ entities:
- type: Transform
pos: 22.5,40.5
parent: 588
-- proto: PowerCellHyper
- entities:
- - uid: 469
- components:
- - type: Transform
- pos: 12.355853,25.41643
- parent: 588
- - uid: 590
- components:
- - type: Transform
- pos: 5.381793,16.642464
- parent: 588
- proto: PowerCellRecharger
entities:
- uid: 1103
@@ -9093,8 +8852,6 @@ entities:
entities:
- uid: 1641
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,0.5
@@ -9103,8 +8860,6 @@ entities:
powerLoad: 0
- uid: 1642
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 14.5,0.5
@@ -9113,8 +8868,6 @@ entities:
powerLoad: 0
- uid: 1646
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 24.5,0.5
@@ -9123,8 +8876,6 @@ entities:
powerLoad: 0
- uid: 1647
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 28.5,0.5
@@ -9133,8 +8884,6 @@ entities:
powerLoad: 0
- uid: 1648
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 21.5,6.5
@@ -9143,8 +8892,6 @@ entities:
powerLoad: 0
- uid: 1649
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,10.5
parent: 588
@@ -9152,8 +8899,6 @@ entities:
powerLoad: 0
- uid: 1650
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 16.5,6.5
@@ -9162,8 +8907,6 @@ entities:
powerLoad: 0
- uid: 1651
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,10.5
parent: 588
@@ -9171,8 +8914,6 @@ entities:
powerLoad: 0
- uid: 1693
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 32.5,25.5
@@ -9181,8 +8922,6 @@ entities:
powerLoad: 0
- uid: 1701
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 18.5,12.5
@@ -9191,8 +8930,6 @@ entities:
powerLoad: 0
- uid: 1702
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,16.5
parent: 588
@@ -9200,8 +8937,6 @@ entities:
powerLoad: 0
- uid: 1703
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 34.5,20.5
@@ -9210,8 +8945,6 @@ entities:
powerLoad: 0
- uid: 1704
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 16.5,25.5
@@ -9220,8 +8953,6 @@ entities:
powerLoad: 0
- uid: 1705
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,27.5
@@ -9230,8 +8961,6 @@ entities:
powerLoad: 0
- uid: 1706
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,40.5
parent: 588
@@ -9239,8 +8968,6 @@ entities:
powerLoad: 0
- uid: 1741
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,21.5
@@ -9249,8 +8976,6 @@ entities:
powerLoad: 0
- uid: 1743
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,22.5
parent: 588
@@ -9258,8 +8983,6 @@ entities:
powerLoad: 0
- uid: 1830
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,43.5
@@ -9268,8 +8991,6 @@ entities:
powerLoad: 0
- uid: 1831
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,47.5
@@ -9280,8 +9001,6 @@ entities:
entities:
- uid: 1707
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,42.5
@@ -9290,8 +9009,6 @@ entities:
powerLoad: 0
- uid: 1708
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,42.5
@@ -9300,8 +9017,6 @@ entities:
powerLoad: 0
- uid: 1709
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,46.5
@@ -9310,8 +9025,6 @@ entities:
powerLoad: 0
- uid: 1710
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 8.5,46.5
@@ -9320,8 +9033,6 @@ entities:
powerLoad: 0
- uid: 1725
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 28.5,27.5
@@ -9716,1130 +9427,2117 @@ entities:
- uid: 1694
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,19.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,19.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 13.5,22.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,18.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,18.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,16.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,13.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,42.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1829
+ components:
+ - type: Transform
+ pos: 25.5,48.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 1640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,25.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,27.5
+ parent: 588
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: Rack
+ entities:
+ - uid: 255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,0.5
+ parent: 588
+ - uid: 264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 588
+ - uid: 283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,0.5
+ parent: 588
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 588
+ - uid: 324
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 588
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 588
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 588
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 32.5,8.5
+ parent: 588
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 588
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 12.5,10.5
+ parent: 588
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 22.5,10.5
+ parent: 588
+ - uid: 420
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 588
+ - uid: 478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,15.5
+ parent: 588
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 588
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 588
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 588
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 588
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 588
+ - uid: 771
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 588
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 588
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 588
+ - uid: 1015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,25.5
+ parent: 588
+ - uid: 1016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,24.5
+ parent: 588
+ - uid: 1021
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,25.5
+ parent: 588
+ - uid: 1024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,24.5
+ parent: 588
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 588
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 588
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 26.5,32.5
+ parent: 588
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 588
+ - uid: 1208
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 588
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 2.5,34.5
+ parent: 588
+ - uid: 1319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,40.5
+ parent: 588
+ - uid: 1562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,47.5
+ parent: 588
+- proto: Railing
+ entities:
+ - uid: 313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,4.5
+ parent: 588
+ - uid: 314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,0.5
+ parent: 588
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 588
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 588
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 588
+ - uid: 430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,9.5
+ parent: 588
+ - uid: 431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,9.5
+ parent: 588
+ - uid: 435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,9.5
+ parent: 588
+ - uid: 436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,9.5
+ parent: 588
+ - uid: 437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,9.5
+ parent: 588
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 588
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 588
+ - uid: 850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,30.5
+ parent: 588
+ - uid: 851
+ components:
+ - type: Transform
+ pos: 9.5,32.5
+ parent: 588
+ - uid: 854
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 588
+ - uid: 855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,30.5
+ parent: 588
+ - uid: 1259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,4.5
+ parent: 588
+ - uid: 1260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,4.5
+ parent: 588
+ - uid: 1261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,0.5
+ parent: 588
+ - uid: 1262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,0.5
+ parent: 588
+- proto: RailingCorner
+ entities:
+ - uid: 315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,1.5
+ parent: 588
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 30.5,3.5
+ parent: 588
+ - uid: 845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,32.5
+ parent: 588
+ - uid: 846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,30.5
+ parent: 588
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 10.5,32.5
+ parent: 588
+ - uid: 848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,30.5
+ parent: 588
+ - uid: 849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,30.5
+ parent: 588
+ - uid: 852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,32.5
+ parent: 588
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 588
+ - uid: 856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,30.5
+ parent: 588
+ - uid: 886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,40.5
+ parent: 588
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 2.5,40.5
+ parent: 588
+ - uid: 890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,40.5
+ parent: 588
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 5.5,40.5
+ parent: 588
+ - uid: 892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,38.5
+ parent: 588
+ - uid: 893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,38.5
+ parent: 588
+ - uid: 894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,38.5
+ parent: 588
+ - uid: 895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,38.5
+ parent: 588
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 588
+ - uid: 1256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,3.5
+ parent: 588
+ - uid: 1257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,1.5
+ parent: 588
+ - uid: 1258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,1.5
+ parent: 588
+ - uid: 1351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,44.5
+ parent: 588
+ - uid: 1352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,43.5
+ parent: 588
+ - uid: 1353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,43.5
+ parent: 588
+ - uid: 1354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,44.5
+ parent: 588
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: 1.5,46.5
+ parent: 588
+ - uid: 1356
+ components:
+ - type: Transform
+ pos: 2.5,47.5
+ parent: 588
+ - uid: 1357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,47.5
+ parent: 588
+ - uid: 1358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,46.5
+ parent: 588
+- proto: RailingCornerSmall
+ entities:
+ - uid: 337
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,3.5
+ parent: 588
+ - uid: 338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,1.5
+ parent: 588
+ - uid: 1376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,43.5
+ parent: 588
+ - uid: 1377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,47.5
+ parent: 588
+ - uid: 1378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,47.5
+ parent: 588
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 5.5,43.5
+ parent: 588
+- proto: RandomInstruments
+ entities:
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 588
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 21.5,18.5
+ parent: 588
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: 24.5,42.5
+ parent: 588
+- proto: RandomPosterContraband
+ entities:
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 8.5,9.5
+ parent: 588
+ - uid: 1160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,48.5
+ parent: 588
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 1.5,19.5
+ parent: 588
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 4.5,42.5
+ parent: 588
+ - uid: 1191
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 588
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 588
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: 22.5,1.5
+ parent: 588
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 588
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 3.5,35.5
+ parent: 588
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 588
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 5.5,25.5
+ parent: 588
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 30.5,15.5
+ parent: 588
+ - uid: 1805
+ components:
+ - type: Transform
+ pos: 18.5,43.5
+ parent: 588
+ - uid: 1806
+ components:
+ - type: Transform
+ pos: 20.5,47.5
+ parent: 588
+- proto: RandomSoap
+ entities:
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 588
+- proto: ReinforcedWindow
+ entities:
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 19.5,34.5
+ parent: 588
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 588
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 15.5,9.5
+ parent: 588
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 588
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 19.5,9.5
+ parent: 588
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 588
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 588
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 588
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 588
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: 19.5,36.5
+ parent: 588
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 15.5,36.5
+ parent: 588
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: 15.5,34.5
+ parent: 588
+- proto: RemoteSignaller
+ entities:
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 34.71599,24.503355
+ parent: 588
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1238:
+ - Pressed: Toggle
+ 1239:
+ - Pressed: Toggle
+ 1237:
+ - Pressed: Toggle
+- proto: SalvageCanisterSpawner
+ entities:
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: 9.5,48.5
+ parent: 588
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: 13.5,48.5
+ parent: 588
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 12.5,48.5
+ parent: 588
+- proto: SeedExtractor
+ entities:
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 33.5,21.5
+ parent: 588
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: 28.5,42.5
+ parent: 588
+- proto: ShowcaseRobot
+ entities:
+ - uid: 1621
+ components:
+ - type: Transform
+ pos: 16.5,10.5
+ parent: 588
+ - uid: 1622
+ components:
+ - type: Transform
+ pos: 18.5,6.5
+ parent: 588
+- proto: ShuttersNormal
+ entities:
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 34.5,27.5
+ parent: 588
+ - type: DeviceLinkSink
+ links:
+ - 593
+ - uid: 1238
+ components:
+ - type: Transform
+ pos: 32.5,27.5
+ parent: 588
+ - type: DeviceLinkSink
+ links:
+ - 593
+- proto: ShuttersWindow
+ entities:
+ - uid: 1239
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 588
+ - type: DeviceLinkSink
+ links:
+ - 593
+- proto: SignCloning
+ entities:
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: 12.5,43.5
+ parent: 588
+- proto: SignPrison
+ entities:
+ - uid: 1792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,3.5
+ parent: 588
+ - uid: 1793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,1.5
+ parent: 588
+ - uid: 1794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,21.5
+ parent: 588
+ - uid: 1795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,19.5
+ parent: 588
+ - uid: 1796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,46.5
+ parent: 588
+ - uid: 1797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,44.5
+ parent: 588
+- proto: SignSurgery
+ entities:
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: 10.5,43.5
+ parent: 588
+- proto: Sink
+ entities:
+ - uid: 935
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 588
+- proto: SinkStemlessWater
+ entities:
+ - uid: 1461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,42.5
+ parent: 588
+ - uid: 1462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,42.5
+ parent: 588
+- proto: SMESBasic
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 588
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 588
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 588
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 588
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 588
+- proto: SoapSyndie
+ entities:
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: 10.4890785,27.46785
+ parent: 588
+- proto: SpawnDungeonClutterMedical
+ entities:
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 14.536539,42.80715
+ parent: 588
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 14.427164,43.104027
+ parent: 588
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 8.483693,43.479027
+ parent: 588
+ - uid: 764
+ components:
+ - type: Transform
+ pos: 8.593068,43.61965
+ parent: 588
+ - uid: 765
+ components:
+ - type: Transform
+ pos: 8.483693,43.2134
+ parent: 588
+ - uid: 988
+ components:
+ - type: Transform
+ pos: 10.705685,44.71971
+ parent: 588
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 12.364664,44.541527
+ parent: 588
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 12.677164,44.666527
+ parent: 588
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: 14.552164,43.5259
+ parent: 588
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 8.561818,42.760277
+ parent: 588
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: 10.580685,44.704086
+ parent: 588
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 10.72131,44.516586
+ parent: 588
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 8.593068,42.93215
+ parent: 588
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 14.427164,43.385277
+ parent: 588
+ - uid: 1711
+ components:
+ - type: Transform
+ pos: 10.44006,44.516586
+ parent: 588
+ - uid: 1714
+ components:
+ - type: Transform
+ pos: 10.486935,44.641586
+ parent: 588
+ - uid: 1802
+ components:
+ - type: Transform
+ pos: 14.614664,42.510277
+ parent: 588
+- proto: SpawnDungeonClutterPatientTransport
+ entities:
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 30.5,24.5
+ parent: 588
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 30.5,25.5
+ parent: 588
+- proto: SpawnDungeonLootArmoryClutter
+ entities:
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 15.671364,0.5041659
+ parent: 588
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 5.4864416,12.473498
+ parent: 588
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 12.6695795,25.551918
+ parent: 588
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 12.350797,12.895373
+ parent: 588
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 10.447943,39.550194
+ parent: 588
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 18.418434,25.317543
+ parent: 588
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 18.637184,25.551918
+ parent: 588
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 12.710709,6.5776215
+ parent: 588
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 5.4866366,0.5354159
+ parent: 588
+ - uid: 560
+ components:
+ - type: Transform
+ pos: 1.4083166,12.489123
+ parent: 588
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 22.377771,6.5932465
+ parent: 588
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 3.5647616,0.5510409
+ parent: 588
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 12.6383295,24.614418
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1695
+ - uid: 578
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,19.5
+ pos: 22.596521,10.530746
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1696
+ - uid: 579
components:
- type: Transform
- pos: 13.5,22.5
+ pos: 18.59031,24.536293
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1697
+ - uid: 580
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,18.5
+ pos: 12.647672,12.598498
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1698
+ - uid: 582
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,18.5
+ pos: 18.37156,24.395668
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1699
+ - uid: 583
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,16.5
+ pos: 1.7364416,12.707873
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1700
+ - uid: 600
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,13.5
+ pos: 12.491959,6.3744965
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1828
+ - uid: 601
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,42.5
+ pos: 13.546364,0.6916659
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1829
+ - uid: 603
components:
- type: Transform
- pos: 25.5,48.5
+ pos: 12.4664545,24.520668
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
-- proto: PoweredSmallLightEmpty
- entities:
- - uid: 1640
+ - uid: 606
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,25.5
+ pos: 18.620173,0.71736264
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1658
+ - uid: 930
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,27.5
+ pos: 12.666693,39.643944
parent: 588
- - type: ApcPowerReceiver
- powerLoad: 0
-- proto: Rack
- entities:
- - uid: 255
+ - uid: 954
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,0.5
+ pos: 12.569547,13.114123
parent: 588
- - uid: 264
+ - uid: 968
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,0.5
+ pos: 13.538297,12.582873
parent: 588
- - uid: 283
+ - uid: 1011
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,0.5
+ pos: 12.913297,13.598498
parent: 588
- - uid: 285
+ - uid: 1013
components:
- type: Transform
- pos: 13.5,0.5
+ pos: 22.299646,10.468246
parent: 588
- - uid: 324
+ - uid: 1295
components:
- type: Transform
- pos: 19.5,4.5
+ pos: 5.6739416,12.582873
parent: 588
- - uid: 343
+ - uid: 1614
components:
- type: Transform
- pos: 25.5,21.5
+ pos: 12.616959,10.577621
parent: 588
- - uid: 396
+ - uid: 1615
components:
- type: Transform
- pos: 28.5,8.5
+ pos: 1.3926916,16.676624
parent: 588
- - uid: 401
+ - uid: 1618
components:
- type: Transform
- pos: 32.5,8.5
+ pos: 1.6270666,16.50475
parent: 588
- - uid: 417
+ - uid: 1660
components:
- type: Transform
- pos: 12.5,6.5
+ pos: 12.382584,6.6557465
parent: 588
- - uid: 418
+ - uid: 1712
components:
- type: Transform
- pos: 12.5,10.5
+ pos: 7.4879208,36.41408
parent: 588
- - uid: 419
+ - uid: 1713
components:
- type: Transform
- pos: 22.5,10.5
+ pos: 2.4097958,34.679707
parent: 588
- - uid: 420
+ - uid: 1842
components:
- type: Transform
- pos: 22.5,6.5
+ pos: 1.4866366,0.5510409
parent: 588
- - uid: 478
+ - uid: 1844
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,15.5
+ pos: 12.476334,10.390121
parent: 588
- - uid: 551
+ - uid: 1848
components:
- type: Transform
- pos: 22.5,15.5
+ pos: 15.327614,0.5822909
parent: 588
- - uid: 585
+ - uid: 1862
components:
- type: Transform
- pos: 1.5,12.5
+ pos: 12.5758295,25.661293
parent: 588
- - uid: 596
+ - uid: 1869
components:
- type: Transform
- pos: 1.5,16.5
+ pos: 22.499447,15.519731
parent: 588
- - uid: 597
+ - uid: 1870
components:
- type: Transform
- pos: 5.5,16.5
+ pos: 16.499447,12.597856
parent: 588
- - uid: 598
+ - uid: 1871
components:
- type: Transform
- pos: 5.5,12.5
+ pos: 24.532421,46.44175
parent: 588
- - uid: 771
+ - uid: 1872
components:
- type: Transform
- pos: 27.5,21.5
+ pos: 18.811348,21.555454
parent: 588
- - uid: 966
+ - uid: 1873
components:
- type: Transform
- pos: 25.5,32.5
+ pos: 18.373848,18.69608
parent: 588
- - uid: 977
+ - uid: 1874
components:
- type: Transform
- pos: 15.5,32.5
+ pos: 34.329006,24.6093
parent: 588
- - uid: 1015
+ - uid: 1875
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,25.5
+ pos: 14.056065,14.626548
parent: 588
- - uid: 1016
+ - uid: 1877
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,24.5
+ pos: 0.5479655,13.374699
parent: 588
- - uid: 1021
+ - uid: 1878
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,25.5
+ pos: 25.490873,3.948753
parent: 588
- - uid: 1024
+- proto: SpawnDungeonLootArmoryGuns
+ entities:
+ - uid: 931
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,24.5
+ pos: 26.667719,3.5809813
parent: 588
- - uid: 1068
+ - uid: 1236
components:
- type: Transform
- pos: 30.5,8.5
+ pos: 26.72157,36.340706
parent: 588
- - uid: 1111
+ - uid: 1241
components:
- type: Transform
- pos: 14.5,32.5
+ pos: 12.425599,25.590696
parent: 588
- - uid: 1112
+ - uid: 1576
components:
- type: Transform
- pos: 26.5,32.5
+ pos: 26.44032,36.66883
parent: 588
- - uid: 1206
+ - uid: 1863
components:
- type: Transform
- pos: 1.5,8.5
+ pos: 1.427772,16.411665
parent: 588
- - uid: 1208
+ - uid: 1864
components:
- type: Transform
- pos: 9.5,8.5
+ pos: 12.468034,13.48979
parent: 588
- - uid: 1211
+ - uid: 1867
components:
- type: Transform
- pos: 2.5,34.5
+ pos: 18.409973,24.653196
parent: 588
- - uid: 1319
+ - uid: 1868
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,40.5
+ pos: 11.502557,39.636543
parent: 588
- - uid: 1562
+- proto: SpawnDungeonLootArmoryMelee
+ entities:
+ - uid: 602
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,47.5
+ pos: 7.5035458,36.44533
parent: 588
-- proto: Railing
+- proto: SpawnDungeonLootBureaucracy
entities:
- - uid: 313
+ - uid: 327
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,4.5
+ pos: 21.04433,4.499402
parent: 588
- - uid: 314
+ - uid: 328
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,0.5
+ pos: 24.372105,44.636456
parent: 588
- - uid: 427
+ - uid: 329
components:
- type: Transform
- pos: 6.5,7.5
+ pos: 18.716206,1.140027
parent: 588
- - uid: 428
+ - uid: 340
components:
- type: Transform
- pos: 4.5,7.5
+ pos: 27.820831,1.515027
parent: 588
- - uid: 429
+ - uid: 341
components:
- type: Transform
- pos: 3.5,7.5
+ pos: 24.867706,1.671277
parent: 588
- - uid: 430
+ - uid: 342
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,9.5
+ pos: 10.347084,19.497728
parent: 588
- - uid: 431
+ - uid: 364
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,9.5
+ pos: 28.305206,1.765027
parent: 588
- - uid: 435
+ - uid: 365
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,9.5
+ pos: 7.675209,22.700853
parent: 588
- - uid: 436
+ - uid: 366
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,9.5
+ pos: 10.362709,19.232103
parent: 588
- - uid: 437
+ - uid: 367
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,9.5
+ pos: 24.711456,1.515027
parent: 588
- - uid: 439
+ - uid: 629
components:
- type: Transform
- pos: 5.5,7.5
+ pos: 20.509436,15.525239
parent: 588
- - uid: 440
+ - uid: 1106
components:
- type: Transform
- pos: 7.5,7.5
+ pos: 19.372456,0.60877705
parent: 588
- - uid: 850
+ - uid: 1108
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,30.5
+ pos: 21.38808,3.530652
parent: 588
- - uid: 851
+ - uid: 1113
components:
- type: Transform
- pos: 9.5,32.5
+ pos: 20.321936,15.306489
parent: 588
- - uid: 854
+ - uid: 1114
components:
- type: Transform
- pos: 3.5,32.5
+ pos: 20.571936,14.962739
parent: 588
- - uid: 855
+ - uid: 1115
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,30.5
+ pos: 20.634436,14.462739
parent: 588
- - uid: 1259
+ - uid: 1116
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,4.5
+ pos: 7.190834,22.528978
parent: 588
- - uid: 1260
+ - uid: 1141
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,4.5
+ pos: 21.591206,3.765027
parent: 588
- - uid: 1261
+ - uid: 1142
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,0.5
+ pos: 21.466206,4.093152
parent: 588
- - uid: 1262
+ - uid: 1152
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,0.5
+ pos: 25.242706,1.499402
parent: 588
-- proto: RailingCorner
- entities:
- - uid: 315
+ - uid: 1153
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,1.5
+ pos: 10.565834,18.950853
parent: 588
- - uid: 316
+ - uid: 1154
components:
- type: Transform
- pos: 30.5,3.5
+ pos: 7.518959,22.607103
parent: 588
- - uid: 845
+ - uid: 1800
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,32.5
+ pos: 19.247667,18.638353
parent: 588
- - uid: 846
+ - uid: 1801
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,30.5
+ pos: 19.544542,18.544603
+ parent: 588
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: 24.684605,44.37083
parent: 588
- - uid: 847
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 997
components:
- type: Transform
- pos: 10.5,32.5
+ pos: 19.5,30.5
parent: 588
- - uid: 848
+ - uid: 998
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,30.5
+ pos: 22.5,30.5
parent: 588
- - uid: 849
+ - uid: 1009
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,30.5
+ pos: 21.5,30.5
parent: 588
- - uid: 852
+ - uid: 1025
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,32.5
+ pos: 9.5,36.5
parent: 588
- - uid: 853
+- proto: SpawnDungeonLootChemsHydroponics
+ entities:
+ - uid: 553
components:
- type: Transform
- pos: 4.5,32.5
+ pos: 33.300747,20.507318
parent: 588
- - uid: 856
+ - uid: 1849
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,30.5
+ pos: 33.628872,20.772943
parent: 588
- - uid: 886
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 1782
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,40.5
+ pos: 32.385323,8.6678705
parent: 588
- - uid: 888
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 562
components:
- type: Transform
- pos: 2.5,40.5
+ pos: 25.340492,30.737656
parent: 588
- - uid: 890
+ - uid: 590
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,40.5
+ pos: 16.49381,13.572114
parent: 588
- - uid: 891
+ - uid: 728
components:
- type: Transform
- pos: 5.5,40.5
+ pos: 5.661584,16.545229
parent: 588
- - uid: 892
+ - uid: 761
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,38.5
+ pos: 16.30631,13.243989
parent: 588
- - uid: 893
+ - uid: 1197
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,38.5
+ pos: 5.474084,16.529604
parent: 588
- - uid: 894
+ - uid: 1204
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,38.5
+ pos: 25.606117,30.47203
parent: 588
- - uid: 895
+ - uid: 1205
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,38.5
+ pos: 5.395959,16.717104
parent: 588
- - uid: 1255
+ - uid: 1477
components:
- type: Transform
- pos: 7.5,3.5
+ pos: 16.65006,13.087739
parent: 588
- - uid: 1256
+ - uid: 1762
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,3.5
+ pos: 25.684242,30.737656
parent: 588
- - uid: 1257
+ - uid: 1785
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,1.5
+ pos: 5.692834,16.795229
parent: 588
- - uid: 1258
+ - uid: 1799
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,1.5
+ pos: 18.341417,22.169603
parent: 588
- - uid: 1351
+- proto: SpawnDungeonLootClutterKitchen
+ entities:
+ - uid: 649
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,44.5
+ pos: 17.24381,12.634614
parent: 588
- - uid: 1352
+ - uid: 699
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,43.5
+ pos: 6.6443253,22.508923
parent: 588
- - uid: 1353
+ - uid: 721
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,43.5
+ pos: 18.450792,21.653978
parent: 588
- - uid: 1354
+ - uid: 723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,44.5
+ pos: 6.511057,19.662943
parent: 588
- - uid: 1355
+ - uid: 724
components:
- type: Transform
- pos: 1.5,46.5
+ pos: 6.745432,19.694193
parent: 588
- - uid: 1356
+ - uid: 731
components:
- type: Transform
- pos: 2.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 29.910284,48.55389
parent: 588
- - uid: 1357
+ - uid: 762
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,47.5
+ pos: 17.05631,12.509614
parent: 588
- - uid: 1358
+ - uid: 1006
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,46.5
+ pos: 17.65006,12.525239
parent: 588
-- proto: RailingCornerSmall
- entities:
- - uid: 337
+ - uid: 1019
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 29.5,3.5
+ pos: 29.425909,48.64764
parent: 588
- - uid: 338
+ - uid: 1786
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,1.5
+ pos: 18.669542,22.075853
parent: 588
- - uid: 1376
+ - uid: 1798
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,43.5
+ pos: 18.575792,22.513353
parent: 588
- - uid: 1377
+ - uid: 1804
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,47.5
+ pos: 30.316534,48.58514
parent: 588
- - uid: 1378
+ - uid: 1835
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,47.5
+ pos: 30.582159,48.413265
parent: 588
- - uid: 1379
+ - uid: 1836
components:
- type: Transform
- pos: 5.5,43.5
+ pos: 30.394659,48.132015
parent: 588
-- proto: RandomDrinkBottle
- entities:
- - uid: 580
+ - uid: 1847
components:
- type: Transform
- pos: 12.5,12.5
+ pos: 6.9099503,22.696423
parent: 588
-- proto: RandomInstruments
+- proto: SpawnDungeonLootCrateArmoryWeapon
entities:
- - uid: 546
+ - uid: 1854
components:
- type: Transform
- pos: 1.5,4.5
+ pos: 18.5,27.5
parent: 588
- - uid: 1159
+- proto: SpawnDungeonLootCrateVehicle
+ entities:
+ - uid: 1715
components:
- type: Transform
- pos: 21.5,18.5
+ pos: 32.5,24.5
parent: 588
- - uid: 1833
+- proto: SpawnDungeonLootKitsFirstAid
+ entities:
+ - uid: 1104
components:
- type: Transform
- pos: 24.5,42.5
+ pos: 30.647924,27.510912
parent: 588
-- proto: RandomPosterContraband
- entities:
- - uid: 1119
+ - uid: 1105
components:
- type: Transform
- pos: 8.5,9.5
+ pos: 30.397924,27.885912
parent: 588
- - uid: 1160
+ - uid: 1475
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,48.5
+ pos: 30.6948,28.448412
parent: 588
- - uid: 1161
+- proto: SpawnDungeonLootKitSurgery
+ entities:
+ - uid: 1803
components:
- type: Transform
- pos: 1.5,19.5
+ pos: 8.499318,42.572777
parent: 588
- - uid: 1162
+- proto: SpawnDungeonLootLathe
+ entities:
+ - uid: 1027
components:
- type: Transform
- pos: 4.5,42.5
+ pos: 26.5,8.5
parent: 588
- - uid: 1191
+ - uid: 1846
components:
- type: Transform
- pos: 2.5,7.5
+ pos: 23.5,32.5
parent: 588
- - uid: 1192
+- proto: SpawnDungeonLootLatheEngi
+ entities:
+ - uid: 1843
components:
- type: Transform
- pos: 3.5,21.5
+ pos: 17.5,32.5
parent: 588
- - uid: 1217
+- proto: SpawnDungeonLootLockersArmory
+ entities:
+ - uid: 1233
components:
- type: Transform
- pos: 22.5,1.5
+ pos: 20.5,6.5
parent: 588
- - uid: 1571
+ - uid: 1234
components:
- type: Transform
- pos: 25.5,39.5
+ pos: 12.5,28.5
parent: 588
- - uid: 1572
+ - uid: 1245
components:
- type: Transform
- pos: 3.5,35.5
+ pos: 6.5,12.5
parent: 588
- - uid: 1573
+- proto: SpawnDungeonLootLockersEngi
+ entities:
+ - uid: 561
components:
- type: Transform
- pos: 7.5,35.5
+ pos: 14.5,30.5
parent: 588
- - uid: 1574
+- proto: SpawnDungeonLootLockersMed
+ entities:
+ - uid: 1026
components:
- type: Transform
- pos: 5.5,25.5
+ pos: 28.5,27.5
parent: 588
- - uid: 1575
+- proto: SpawnDungeonLootLockersProtectiveGear
+ entities:
+ - uid: 413
components:
- type: Transform
- pos: 30.5,15.5
+ pos: 20.5,10.5
parent: 588
- - uid: 1805
+ - uid: 415
components:
- type: Transform
- pos: 18.5,43.5
+ pos: 12.5,27.5
parent: 588
- - uid: 1806
+ - uid: 424
components:
- type: Transform
- pos: 20.5,47.5
+ pos: 16.5,27.5
parent: 588
-- proto: RandomSoap
- entities:
- - uid: 397
+ - uid: 524
components:
- type: Transform
- pos: 8.5,24.5
+ pos: 0.5,32.5
parent: 588
-- proto: RandomVending
- entities:
- - uid: 539
+ - uid: 526
components:
- type: Transform
- pos: 17.5,16.5
+ pos: 12.5,30.5
parent: 588
-- proto: ReinforcedWindow
- entities:
- - uid: 214
+ - uid: 528
components:
- type: Transform
- pos: 19.5,34.5
+ pos: 1.5,9.5
parent: 588
- - uid: 409
+ - uid: 529
components:
- type: Transform
- pos: 15.5,7.5
+ pos: 9.5,7.5
parent: 588
- - uid: 410
+ - uid: 530
components:
- type: Transform
- pos: 15.5,9.5
+ pos: 9.5,9.5
parent: 588
- - uid: 411
+ - uid: 531
components:
- type: Transform
- pos: 19.5,7.5
+ pos: 1.5,7.5
parent: 588
- - uid: 412
+ - uid: 532
components:
- type: Transform
- pos: 19.5,9.5
+ pos: 0.5,38.5
parent: 588
- - uid: 591
+ - uid: 538
components:
- type: Transform
- pos: 2.5,12.5
+ pos: 6.5,40.5
parent: 588
- - uid: 592
+ - uid: 552
components:
- type: Transform
- pos: 4.5,12.5
+ pos: 14.5,6.5
parent: 588
- - uid: 594
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 1285
components:
- type: Transform
- pos: 4.5,16.5
+ pos: 14.512367,32.47203
parent: 588
- - uid: 595
+ - uid: 1293
components:
- type: Transform
- pos: 2.5,16.5
+ pos: 17.53475,47.47789
parent: 588
- - uid: 1166
+ - uid: 1294
components:
- type: Transform
- pos: 19.5,36.5
+ pos: 26.449867,32.487656
parent: 588
- - uid: 1168
+ - uid: 1296
components:
- type: Transform
- pos: 15.5,36.5
+ pos: 29.46421,40.47756
parent: 588
- - uid: 1169
+ - uid: 1297
components:
- type: Transform
- pos: 15.5,34.5
+ pos: 25.53798,21.495447
parent: 588
-- proto: RemoteSignaller
+- proto: SpawnDungeonLootMaterialsValuableFull
entities:
- - uid: 593
+ - uid: 732
components:
- type: Transform
- pos: 34.71599,24.503355
+ pos: 10.68364,39.699093
parent: 588
- - type: DeviceLinkSource
- linkedPorts:
- 1238:
- - Pressed: Toggle
- 1239:
- - Pressed: Toggle
- 1237:
- - Pressed: Toggle
- - uid: 1104
+ - uid: 952
components:
- type: Transform
- pos: 25.24476,30.698978
+ pos: 11.136765,39.495968
parent: 588
- - uid: 1105
+ - uid: 1292
components:
- type: Transform
- pos: 25.443544,30.613832
+ pos: 2.5088682,34.597904
parent: 588
- - uid: 1106
+- proto: SpawnDungeonLootMugs
+ entities:
+ - uid: 398
components:
- type: Transform
- pos: 5.677143,16.762346
+ pos: 6.573557,19.428568
parent: 588
-- proto: RiotLaserShield
- entities:
- - uid: 1618
+ - uid: 708
components:
- type: Transform
- pos: 12.616156,10.534842
+ pos: 22.540686,12.493989
parent: 588
-- proto: RiotShield
- entities:
- - uid: 600
+ - uid: 709
components:
- type: Transform
- pos: 1.3209407,16.656654
+ pos: 18.638292,18.591478
parent: 588
- - uid: 601
+ - uid: 720
components:
- type: Transform
- pos: 1.5481212,16.543125
+ pos: 22.36881,12.775239
parent: 588
- - uid: 1615
+ - uid: 722
components:
- type: Transform
- pos: 12.363155,6.657488
+ pos: 6.432932,19.631693
parent: 588
-- proto: SalvageCanisterSpawner
- entities:
- - uid: 998
+ - uid: 1007
components:
- type: Transform
- pos: 22.5,30.5
+ pos: 22.341417,18.622728
parent: 588
- - uid: 1009
+ - uid: 1014
components:
- type: Transform
- pos: 19.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 30.363409,47.600765
parent: 588
- - uid: 1025
+ - uid: 1022
components:
- type: Transform
- pos: 21.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 30.613409,47.975765
parent: 588
- - uid: 1190
+ - uid: 1481
components:
- type: Transform
- pos: 9.5,36.5
+ pos: 22.669542,18.513353
parent: 588
- - uid: 1210
+- proto: SpawnDungeonLootPowerCell
+ entities:
+ - uid: 1267
components:
- type: Transform
- pos: 9.5,48.5
+ pos: 12.6383295,25.426918
parent: 588
- - uid: 1413
+- proto: SpawnDungeonLootSeed
+ entities:
+ - uid: 704
components:
- type: Transform
- pos: 13.5,48.5
+ pos: 31.597622,21.194818
parent: 588
- - uid: 1470
+ - uid: 763
components:
- type: Transform
- pos: 12.5,48.5
+ pos: 8.513129,27.589037
parent: 588
-- proto: SawAdvanced
- entities:
- - uid: 1468
+ - uid: 1851
components:
- type: Transform
- pos: 8.527969,43.529327
+ pos: 31.550747,20.194818
parent: 588
-- proto: ScalpelLaser
- entities:
- - uid: 1472
+ - uid: 1852
components:
- type: Transform
- pos: 8.485372,43.131977
+ pos: 31.472622,19.304193
parent: 588
-- proto: ScalpelShiv
- entities:
- - uid: 708
+ - uid: 1853
components:
- type: Transform
- pos: 16.074419,18.727995
+ pos: 29.210257,44.107086
parent: 588
- - uid: 1592
+ - uid: 1855
components:
- type: Transform
- pos: 10.50393,24.491432
+ pos: 30.538382,44.138336
parent: 588
-- proto: SeedExtractor
- entities:
- - uid: 802
+ - uid: 1858
components:
- type: Transform
- pos: 33.5,21.5
+ pos: 30.491507,42.482086
parent: 588
- - uid: 1776
+ - uid: 1859
components:
- type: Transform
- pos: 28.5,42.5
+ pos: 29.335257,42.37271
parent: 588
-- proto: SheetGlass
- entities:
- - uid: 649
+ - uid: 1860
components:
- type: Transform
- pos: 14.3137455,32.471424
+ pos: 30.663382,47.482086
parent: 588
-- proto: SheetPlasteel
- entities:
- - uid: 866
+ - uid: 1861
components:
- type: Transform
- pos: 2.412651,34.456436
+ pos: 29.725882,48.607086
parent: 588
-- proto: SheetPlastic
+- proto: SpawnDungeonLootSpesos
entities:
- - uid: 398
+ - uid: 1298
components:
- type: Transform
- pos: 17.410288,47.629227
+ pos: 11.90239,39.745968
parent: 588
-- proto: SheetSteel
- entities:
- - uid: 656
+ - uid: 1299
components:
- type: Transform
- pos: 26.36062,32.5183
+ pos: 12.230515,39.417843
parent: 588
- - uid: 699
+ - uid: 1468
components:
- type: Transform
- pos: 29.259031,40.432583
+ pos: 12.136765,39.699093
parent: 588
-- proto: SheetUranium
- entities:
- - uid: 1019
+ - uid: 1471
components:
- type: Transform
- pos: 25.542059,21.475338
+ pos: 11.65239,39.449093
parent: 588
- - type: Stack
- count: 15
- - type: Item
- size: 15
-- proto: ShowcaseRobot
- entities:
- - uid: 1621
+ - uid: 1472
components:
- type: Transform
- pos: 16.5,10.5
+ pos: 11.668015,39.667843
parent: 588
- - uid: 1622
+ - uid: 1474
components:
- type: Transform
- pos: 18.5,6.5
+ pos: 12.043015,39.542843
parent: 588
-- proto: ShuttersNormal
+- proto: SpawnDungeonLootToolsBasicEngineering
entities:
- - uid: 1237
+ - uid: 1479
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 34.5,27.5
+ pos: 15.543617,32.50328
parent: 588
- - type: DeviceLinkSink
- links:
- - 593
- - uid: 1238
+ - uid: 1781
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 32.5,27.5
+ pos: 27.50673,21.511072
parent: 588
- - type: DeviceLinkSink
- links:
- - 593
-- proto: ShuttersWindow
+- proto: SpawnDungeonLootToolsHydroponics
entities:
- - uid: 1239
+ - uid: 1031
components:
- type: Transform
- pos: 33.5,27.5
+ pos: 29.772757,43.763336
parent: 588
- - type: DeviceLinkSink
- links:
- - 593
-- proto: SignCloning
- entities:
- - uid: 1484
+ - uid: 1107
components:
- type: Transform
- pos: 12.5,43.5
+ pos: 30.691372,21.804193
parent: 588
-- proto: SignPrison
- entities:
- - uid: 1792
+ - uid: 1109
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,3.5
+ pos: 30.366507,43.638336
parent: 588
- - uid: 1793
+ - uid: 1110
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,1.5
+ pos: 33.378872,20.757318
parent: 588
- - uid: 1794
+ - uid: 1156
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,21.5
+ pos: 29.944632,43.044586
parent: 588
- - uid: 1795
+ - uid: 1157
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,19.5
+ pos: 33.581997,20.460443
parent: 588
- - uid: 1796
+- proto: SpawnDungeonLootToolsSurgeryCrude
+ entities:
+ - uid: 951
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,46.5
+ pos: 10.497504,24.370287
parent: 588
- - uid: 1797
+ - uid: 1244
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,44.5
+ pos: 16.278917,18.888353
parent: 588
-- proto: SignSurgery
+- proto: SpawnDungeonLootVaultGuns
entities:
- - uid: 1483
+ - uid: 1190
components:
- type: Transform
- pos: 10.5,43.5
+ pos: 26.549694,35.465706
parent: 588
-- proto: Sink
- entities:
- - uid: 935
+ - uid: 1866
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,25.5
+ pos: 28.561361,8.461602
parent: 588
-- proto: SinkStemlessWater
+- proto: SpawnDungeonVendomatsArmory
entities:
- - uid: 1461
+ - uid: 1218
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,42.5
+ pos: 16.5,25.5
parent: 588
- - uid: 1462
+ - uid: 1838
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,42.5
+ pos: 14.5,27.5
parent: 588
-- proto: SMESBasic
- entities:
- - uid: 46
+ - uid: 1841
components:
- type: Transform
- pos: 26.5,13.5
+ pos: 10.5,14.5
parent: 588
- - uid: 56
+- proto: SpawnDungeonVendomatsMed
+ entities:
+ - uid: 1143
components:
- type: Transform
- pos: 28.5,13.5
+ pos: 28.5,28.5
parent: 588
- - uid: 747
+- proto: SpawnDungeonVendomatsRecreational
+ entities:
+ - uid: 656
components:
- type: Transform
- pos: 26.5,19.5
+ pos: 19.5,22.5
parent: 588
- - uid: 1506
+ - uid: 1480
components:
- type: Transform
- pos: 18.5,46.5
+ pos: 18.5,12.5
parent: 588
- - uid: 1507
+ - uid: 1482
components:
- type: Transform
- pos: 20.5,46.5
+ pos: 10.5,22.5
parent: 588
-- proto: SoapSyndie
- entities:
- - uid: 1856
+ - uid: 1592
components:
- type: Transform
- pos: 10.4890785,27.46785
+ pos: 17.5,40.5
parent: 588
-- proto: SpaceCash100
- entities:
- - uid: 1243
+ - uid: 1611
components:
- type: Transform
- pos: 11.887424,39.621456
+ pos: 17.5,16.5
parent: 588
- - uid: 1244
+ - uid: 1616
components:
- type: Transform
- pos: 11.759636,39.479546
+ pos: 30.5,46.5
parent: 588
- - uid: 1296
+ - uid: 1636
components:
- type: Transform
- pos: 12.100407,39.465355
+ pos: 21.5,12.5
parent: 588
- - uid: 1297
+ - uid: 1637
components:
- type: Transform
- pos: 12.100407,39.80594
+ pos: 6.5,18.5
parent: 588
- - uid: 1298
+ - uid: 1638
components:
- type: Transform
- pos: 11.688642,39.720795
+ pos: 22.5,22.5
parent: 588
- - uid: 1299
+ - uid: 1639
components:
- type: Transform
- pos: 11.4330635,39.57888
+ pos: 18.5,40.5
parent: 588
-- proto: SpawnVehicleATV
- entities:
- - uid: 988
+ - uid: 1740
components:
- type: Transform
- pos: 32.5,24.5
+ pos: 16.5,16.5
parent: 588
- proto: Spear
entities:
@@ -10934,13 +11632,6 @@ entities:
- type: Transform
pos: 13.5,43.5
parent: 588
-- proto: StimkitFilled
- entities:
- - uid: 561
- components:
- - type: Transform
- pos: 30.39083,27.514402
- parent: 588
- proto: StimpackMini
entities:
- uid: 1879
@@ -11005,13 +11696,6 @@ entities:
- type: Transform
pos: 32.5,25.5
parent: 588
-- proto: SyringeEphedrine
- entities:
- - uid: 1475
- components:
- - type: Transform
- pos: 14.472328,42.917698
- parent: 588
- proto: Table
entities:
- uid: 525
@@ -11026,12 +11710,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 16.5,12.5
parent: 588
- - uid: 528
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,12.5
- parent: 588
- uid: 535
components:
- type: Transform
@@ -11107,6 +11785,11 @@ entities:
- type: Transform
pos: 33.5,20.5
parent: 588
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 17.5,12.5
+ parent: 588
- uid: 1118
components:
- type: Transform
@@ -11213,12 +11896,6 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,30.5
parent: 588
- - uid: 1006
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,30.5
- parent: 588
- uid: 1012
components:
- type: Transform
@@ -11231,6 +11908,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 16.5,24.5
parent: 588
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: 25.5,30.5
+ parent: 588
- uid: 1235
components:
- type: Transform
@@ -11308,17 +11990,11 @@ entities:
rot: 3.141592653589793 rad
pos: 27.5,3.5
parent: 588
- - uid: 335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,4.5
- parent: 588
- - uid: 336
+ - uid: 335
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,4.5
+ pos: 25.5,4.5
parent: 588
- uid: 563
components:
@@ -11406,23 +12082,17 @@ entities:
entities:
- uid: 567
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,15.5
parent: 588
- uid: 1463
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,43.5
parent: 588
- uid: 1464
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 12.5,43.5
@@ -11447,117 +12117,22 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,25.5
parent: 588
-- proto: UniformScrubsColorPurple
- entities:
- - uid: 1712
- components:
- - type: Transform
- pos: 10.503376,44.53288
- parent: 588
-- proto: VehicleKeyATV
- entities:
- - uid: 602
- components:
- - type: Transform
- pos: 34.288902,24.472105
- parent: 588
-- proto: VendingMachineAmmo
- entities:
- - uid: 1233
- components:
- - type: Transform
- pos: 14.5,27.5
- parent: 588
-- proto: VendingMachineBountyVend
- entities:
- - uid: 1218
- components:
- - type: Transform
- pos: 10.5,14.5
- parent: 588
-- proto: VendingMachineChefvend
- entities:
- - uid: 532
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 18.5,12.5
- parent: 588
-- proto: VendingMachineCigs
- entities:
- - uid: 720
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 22.5,22.5
- parent: 588
-- proto: VendingMachineCoffee
- entities:
- - uid: 765
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 10.5,22.5
- parent: 588
- - uid: 1285
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 18.5,40.5
- parent: 588
-- proto: VendingMachineDinnerware
- entities:
- - uid: 1781
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 30.5,46.5
- parent: 588
-- proto: VendingMachineDonut
- entities:
- - uid: 538
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 16.5,16.5
- parent: 588
- proto: VendingMachineLawDrobe
entities:
- uid: 319
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 18.5,4.5
parent: 588
-- proto: VendingMachineMedical
- entities:
- - uid: 1143
- components:
- - type: MetaData
- flags: SessionSpecific
- - type: Transform
- pos: 28.5,28.5
- parent: 588
- proto: VendingMachineSeedsUnlocked
entities:
- uid: 800
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 33.5,19.5
parent: 588
- uid: 1775
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 28.5,44.5
parent: 588
@@ -11572,134 +12147,96 @@ entities:
entities:
- uid: 377
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,7.5
parent: 588
- uid: 378
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,7.5
parent: 588
- uid: 379
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,9.5
parent: 588
- uid: 380
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,9.5
parent: 588
- uid: 381
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,8.5
parent: 588
- uid: 382
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,9.5
parent: 588
- uid: 383
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,9.5
parent: 588
- uid: 384
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,8.5
parent: 588
- uid: 385
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 31.5,7.5
parent: 588
- uid: 386
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,8.5
parent: 588
- uid: 387
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,7.5
parent: 588
- uid: 388
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,7.5
parent: 588
- uid: 389
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,7.5
parent: 588
- uid: 390
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,9.5
parent: 588
- uid: 391
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,7.5
parent: 588
- uid: 392
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,9.5
parent: 588
- uid: 393
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,8.5
parent: 588
- uid: 394
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 33.5,9.5
parent: 588
- uid: 395
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 32.5,9.5
parent: 588
@@ -11707,233 +12244,171 @@ entities:
entities:
- uid: 45
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,8.5
parent: 588
- uid: 51
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,8.5
parent: 588
- uid: 244
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,4.5
parent: 588
- uid: 245
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,3.5
parent: 588
- uid: 246
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,4.5
parent: 588
- uid: 247
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,3.5
parent: 588
- uid: 266
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,1.5
parent: 588
- uid: 267
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,0.5
parent: 588
- uid: 268
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,1.5
parent: 588
- uid: 269
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,0.5
parent: 588
- uid: 291
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,6.5
parent: 588
- uid: 292
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,6.5
parent: 588
- uid: 405
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,10.5
parent: 588
- uid: 406
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,10.5
parent: 588
- uid: 426
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,9.5
parent: 588
- uid: 432
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,7.5
parent: 588
- uid: 433
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,9.5
parent: 588
- uid: 434
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,7.5
parent: 588
- uid: 570
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,46.5
parent: 588
- uid: 621
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,21.5
parent: 588
- uid: 622
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,19.5
parent: 588
- uid: 623
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,21.5
parent: 588
- uid: 627
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,19.5
parent: 588
- uid: 1078
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 33.5,35.5
parent: 588
- uid: 1330
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,44.5
parent: 588
- uid: 1332
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,42.5
parent: 588
- uid: 1334
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,42.5
parent: 588
- uid: 1335
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,44.5
parent: 588
- uid: 1337
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,48.5
parent: 588
- uid: 1338
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,46.5
parent: 588
- uid: 1340
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,48.5
parent: 588
@@ -11941,281 +12416,203 @@ entities:
entities:
- uid: 140
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,25.5
parent: 588
- uid: 144
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,26.5
parent: 588
- uid: 145
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,25.5
parent: 588
- uid: 146
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,27.5
parent: 588
- uid: 205
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,35.5
parent: 588
- uid: 206
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,35.5
parent: 588
- uid: 207
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,35.5
parent: 588
- uid: 208
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,35.5
parent: 588
- uid: 210
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,34.5
parent: 588
- uid: 305
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,4.5
parent: 588
- uid: 306
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,3.5
parent: 588
- uid: 307
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,0.5
parent: 588
- uid: 308
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,1.5
parent: 588
- uid: 476
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,13.5
parent: 588
- uid: 481
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,15.5
parent: 588
- uid: 483
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 30.5,13.5
parent: 588
- uid: 501
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 25.5,14.5
parent: 588
- uid: 510
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,15.5
parent: 588
- uid: 749
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,19.5
parent: 588
- uid: 750
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,19.5
parent: 588
- uid: 975
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,32.5
parent: 588
- uid: 995
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 21.5,32.5
parent: 588
- uid: 1163
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,36.5
parent: 588
- uid: 1164
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,35.5
parent: 588
- uid: 1165
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,35.5
parent: 588
- uid: 1167
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,35.5
parent: 588
- uid: 1300
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,39.5
parent: 588
- uid: 1303
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,39.5
parent: 588
- uid: 1304
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,39.5
parent: 588
- uid: 1305
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,40.5
parent: 588
- uid: 1485
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,43.5
parent: 588
- uid: 1486
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,44.5
parent: 588
- uid: 1487
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,43.5
parent: 588
- uid: 1488
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,43.5
parent: 588
- uid: 1489
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,43.5
parent: 588
- uid: 1490
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,44.5
parent: 588
- uid: 1491
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,47.5
parent: 588
- uid: 1492
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,47.5
parent: 588
- uid: 1493
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,47.5
parent: 588
@@ -12223,50 +12620,36 @@ entities:
entities:
- uid: 554
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,13.5
parent: 588
- uid: 555
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,14.5
parent: 588
- uid: 556
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,15.5
parent: 588
- uid: 557
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,15.5
parent: 588
- uid: 558
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,15.5
parent: 588
- uid: 559
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,16.5
parent: 588
- uid: 566
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,12.5
parent: 588
@@ -12312,28 +12695,6 @@ entities:
- type: Transform
pos: 24.5,47.5
parent: 588
-- proto: WaterCooler
- entities:
- - uid: 629
- components:
- - type: Transform
- pos: 6.5,18.5
- parent: 588
- - uid: 724
- components:
- - type: Transform
- pos: 19.5,22.5
- parent: 588
- - uid: 1284
- components:
- - type: Transform
- pos: 17.5,40.5
- parent: 588
- - uid: 1292
- components:
- - type: Transform
- pos: 21.5,12.5
- parent: 588
- proto: WaterTankHighCapacity
entities:
- uid: 801
@@ -12369,45 +12730,8 @@ entities:
- type: Transform
pos: 16.5,24.5
parent: 588
-- proto: WeaponDisablerPractice
- entities:
- - uid: 547
- components:
- - type: Transform
- pos: 1.4370823,0.5241035
- parent: 588
- - uid: 930
- components:
- - type: Transform
- pos: 26.440151,36.61676
- parent: 588
- - uid: 1611
- components:
- - type: Transform
- pos: 12.371853,10.605072
- parent: 588
-- proto: WeaponEnergyGun
- entities:
- - uid: 1241
- components:
- - type: Transform
- pos: 26.565222,35.556686
- parent: 588
- - type: EnergyGun
- currentFireMode:
- state: disabler
- name: disable
- fireCost: 100
- proto: BulletDisabler
- - type: Item
- heldPrefix: disabler
- proto: WeaponLaserCarbinePractice
entities:
- - uid: 931
- components:
- - type: Transform
- pos: 26.596338,36.36132
- parent: 588
- uid: 1612
components:
- type: Transform
@@ -12456,19 +12780,10 @@ entities:
entities:
- uid: 1613
components:
- - type: MetaData
- flags: InContainer
- type: Transform
parent: 772
- type: Physics
canCollide: False
-- proto: WeaponSniperHristov
- entities:
- - uid: 997
- components:
- - type: Transform
- pos: 28.37637,8.556908
- parent: 588
- proto: WindoorAssemblySecure
entities:
- uid: 696
@@ -12488,6 +12803,14 @@ entities:
rot: 3.141592653589793 rad
pos: 25.5,25.5
parent: 588
+- proto: WindoorSecure
+ entities:
+ - uid: 1837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,4.5
+ parent: 588
- proto: WindoorSecureEngineeringLocked
entities:
- uid: 1569
@@ -12660,6 +12983,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 20.5,46.5
parent: 588
+ - uid: 1761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,45.5
+ parent: 588
- uid: 1771
components:
- type: Transform
@@ -12678,11 +13007,6 @@ entities:
rot: 3.141592653589793 rad
pos: 30.5,44.5
parent: 588
- - uid: 1782
- components:
- - type: Transform
- pos: 30.5,46.5
- parent: 588
- proto: WindowFrostedDirectional
entities:
- uid: 936
@@ -13081,25 +13405,6 @@ entities:
- type: Transform
pos: 13.5,44.5
parent: 588
-- proto: Wrench
- entities:
- - uid: 424
- components:
- - type: Transform
- pos: 15.156982,32.526764
- parent: 588
- - uid: 1020
- components:
- - type: Transform
- pos: 27.484116,21.506588
- parent: 588
-- proto: Zipties
- entities:
- - uid: 1156
- components:
- - type: Transform
- pos: 15.332411,0.52492684
- parent: 588
- proto: ZiptiesBroken
entities:
- uid: 48
diff --git a/Resources/Maps/_NF/Dungeon/mineshaft.yml b/Resources/Maps/_NF/Dungeon/mineshaft.yml
new file mode 100644
index 00000000000..34e5b7c1da6
--- /dev/null
+++ b/Resources/Maps/_NF/Dungeon/mineshaft.yml
@@ -0,0 +1,6394 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 15: FloorBasalt
+ 23: FloorCaveDrought
+ 67: FloorMiningDark
+ 74: FloorPlanetGrass
+ 84: FloorShuttleOrange
+ 124: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 2
+ components:
+ - type: MetaData
+ - type: Transform
+ - type: Map
+ - type: PhysicsMap
+ - type: Broadphase
+ - type: OccluderTree
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: FwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAA
+ version: 6
+ 2,-1:
+ ind: 2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: FwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAfAAAAAAAQwAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAAFwAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAAFwAAAAAAfAAAAAAAQwAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAASgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAAFwAAAAAAFwAAAAAASgAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfAAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAASgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAASgAAAAAASgAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAASgAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAASgAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAASgAAAAAASgAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAASgAAAAAAFwAAAAAASgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAASgAAAAAASgAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAQwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAFwAAAAAASgAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAQwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ 3,0:
+ ind: 3,0
+ tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,-1:
+ ind: 3,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,1:
+ ind: 3,1
+ tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: FwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAAFwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAFwAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,2:
+ ind: -1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: DwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,2:
+ ind: 3,2
+ tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: RadiationGridResistance
+ - type: LoadedMap
+ - type: SpreaderGrid
+ - type: GridTree
+ - type: MovedGrids
+ - type: GridPathfinding
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: BushCTwo
+ decals:
+ 0: 37,21
+ 1: 35,20
+ - node:
+ color: '#FFFFFFFF'
+ id: BushDOne
+ decals:
+ 11: 3,14
+ - node:
+ color: '#FFFFFFFF'
+ id: Busha1
+ decals:
+ 12: 12,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushb3
+ decals:
+ 14: 13,21
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc2
+ decals:
+ 2: 39,23
+ 3: 38,22
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc3
+ decals:
+ 13: 16,20
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushj3
+ decals:
+ 24: 2,30
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushk3
+ decals:
+ 23: 4,30
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushn1
+ decals:
+ 25: 22,2
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr1
+ decals:
+ 21: 29,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr2
+ decals:
+ 20: 26,21
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv3
+ decals:
+ 17: 15,22
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy4
+ decals:
+ 15: 12,20
+ 16: 16,19
+ 22: 28,24
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassa1
+ decals:
+ 4: 38,21
+ 5: 37,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassa2
+ decals:
+ 18: 15,20
+ 19: 29,23
+ 44: 12,19
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassa5
+ decals:
+ 8: 34,20
+ 9: 39,21
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb3
+ decals:
+ 10: 36,21
+ 41: 16,18
+ 42: 13,22
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb4
+ decals:
+ 43: 16,22
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb5
+ decals:
+ 6: 38,18
+ 7: 36,19
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock01
+ decals:
+ 28: 13,30
+ 29: 8,26
+ 40: 15,1
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock03
+ decals:
+ 36: 9,8
+ 37: 1,4
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock04
+ decals:
+ 27: 21,26
+ 34: 0,12
+ 35: 0,8
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock05
+ decals:
+ 30: 2,24
+ 31: 8,14
+ 33: 19,15
+ 38: 0,0
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock06
+ decals:
+ 48: 15,6
+ 49: 20,9
+ 50: 26,7
+ 54: 20,3
+ 55: 18,12
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock07
+ decals:
+ 32: 12,13
+ 39: 8,0
+ 45: 0,26
+ 46: 10,30
+ 47: 6,4
+ 51: 30,10
+ 52: 31,6
+ 53: 30,1
+ - node:
+ color: '#FFFFFFFF'
+ id: bushsnowb3
+ decals:
+ 26: 26,30
+- proto: AirlockMiningLocked
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 2
+ - uid: 274
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 2
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 30.5,14.5
+ parent: 2
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 2
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 2
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 18.5,21.5
+ parent: 2
+ - uid: 752
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,14.5
+ parent: 2
+ - uid: 753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,14.5
+ parent: 2
+ - uid: 754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,12.5
+ parent: 2
+- proto: AltarHeaven
+ entities:
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 2
+ - uid: 1058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,32.5
+ parent: 2
+- proto: ArtifactFragment1
+ entities:
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 37.25915,14.655882
+ parent: 2
+ - uid: 630
+ components:
+ - type: Transform
+ pos: 35.42342,13.322435
+ parent: 2
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 34.67064,15.487637
+ parent: 2
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 33.138664,14.7483
+ parent: 2
+- proto: BackgammonBoard
+ entities:
+ - uid: 1103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.510723,32.467716
+ parent: 2
+- proto: BarricadeBlock
+ entities:
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 2
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 2
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 2
+- proto: Bed
+ entities:
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 2
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 19.5,23.5
+ parent: 2
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 2
+- proto: BedsheetSpawner
+ entities:
+ - uid: 273
+ components:
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 2
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 2
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 19.5,23.5
+ parent: 2
+- proto: BenchRedComfy
+ entities:
+ - uid: 1100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,32.5
+ parent: 2
+ - uid: 1101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,32.5
+ parent: 2
+- proto: Bible
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 32.50154,9.669387
+ parent: 2
+- proto: Bonfire
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 2
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 2
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 2
+ - uid: 1050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,25.5
+ parent: 2
+- proto: BookRandom
+ entities:
+ - uid: 1061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.711299,33.588463
+ parent: 2
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: 18.431875,32.637886
+ parent: 2
+ - uid: 1063
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.176785,33.36402
+ parent: 2
+ - uid: 1064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.691845,33.984535
+ parent: 2
+ - uid: 1065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.829702,33.588463
+ parent: 2
+- proto: Bookshelf
+ entities:
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: 15.5,34.5
+ parent: 2
+- proto: BookshelfFilled
+ entities:
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 16.5,34.5
+ parent: 2
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 23.5,32.5
+ parent: 2
+ - uid: 687
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 2
+ - uid: 1000
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 2
+- proto: BorgModuleGPS
+ entities:
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 43.60813,21.699238
+ parent: 2
+- proto: BorgModuleMining
+ entities:
+ - uid: 272
+ components:
+ - type: Transform
+ pos: 43.492916,20.446398
+ parent: 2
+- proto: BorgModuleRCD
+ entities:
+ - uid: 801
+ components:
+ - type: Transform
+ pos: 43.352802,21.426386
+ parent: 2
+- proto: Bucket
+ entities:
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 28.308151,23.456257
+ parent: 2
+- proto: CableApcExtension
+ entities:
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 2
+ - uid: 293
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 2
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 2
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 2
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 2
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 2
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 3.5,20.5
+ parent: 2
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 2
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 2
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 2
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 2
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 2
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 2
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 2
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 2
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 2
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 2
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 29.5,14.5
+ parent: 2
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 2
+ - uid: 504
+ components:
+ - type: Transform
+ pos: 23.5,21.5
+ parent: 2
+ - uid: 505
+ components:
+ - type: Transform
+ pos: 22.5,21.5
+ parent: 2
+ - uid: 506
+ components:
+ - type: Transform
+ pos: 18.5,21.5
+ parent: 2
+ - uid: 507
+ components:
+ - type: Transform
+ pos: 19.5,21.5
+ parent: 2
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 20.5,21.5
+ parent: 2
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 21.5,21.5
+ parent: 2
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 2
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 21.5,19.5
+ parent: 2
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 2
+ - uid: 513
+ components:
+ - type: Transform
+ pos: 21.5,23.5
+ parent: 2
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 2
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 44.5,6.5
+ parent: 2
+ - uid: 701
+ components:
+ - type: Transform
+ pos: 43.5,6.5
+ parent: 2
+ - uid: 702
+ components:
+ - type: Transform
+ pos: 42.5,6.5
+ parent: 2
+ - uid: 703
+ components:
+ - type: Transform
+ pos: 41.5,6.5
+ parent: 2
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 39.5,6.5
+ parent: 2
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 42.5,14.5
+ parent: 2
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 42.5,13.5
+ parent: 2
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 43.5,14.5
+ parent: 2
+ - uid: 758
+ components:
+ - type: Transform
+ pos: 45.5,15.5
+ parent: 2
+ - uid: 759
+ components:
+ - type: Transform
+ pos: 45.5,16.5
+ parent: 2
+ - uid: 760
+ components:
+ - type: Transform
+ pos: 44.5,14.5
+ parent: 2
+ - uid: 761
+ components:
+ - type: Transform
+ pos: 41.5,14.5
+ parent: 2
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 48.5,23.5
+ parent: 2
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 48.5,22.5
+ parent: 2
+ - uid: 827
+ components:
+ - type: Transform
+ pos: 48.5,21.5
+ parent: 2
+ - uid: 828
+ components:
+ - type: Transform
+ pos: 48.5,20.5
+ parent: 2
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 48.5,19.5
+ parent: 2
+ - uid: 830
+ components:
+ - type: Transform
+ pos: 47.5,19.5
+ parent: 2
+ - uid: 831
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 2
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 2
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 0.5,33.5
+ parent: 2
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 1.5,33.5
+ parent: 2
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 2.5,33.5
+ parent: 2
+ - uid: 976
+ components:
+ - type: Transform
+ pos: 3.5,33.5
+ parent: 2
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 4.5,33.5
+ parent: 2
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 5.5,33.5
+ parent: 2
+ - uid: 979
+ components:
+ - type: Transform
+ pos: 6.5,33.5
+ parent: 2
+ - uid: 980
+ components:
+ - type: Transform
+ pos: 7.5,33.5
+ parent: 2
+ - uid: 981
+ components:
+ - type: Transform
+ pos: 8.5,33.5
+ parent: 2
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 9.5,33.5
+ parent: 2
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 10.5,33.5
+ parent: 2
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 11.5,33.5
+ parent: 2
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 12.5,33.5
+ parent: 2
+ - uid: 986
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 2
+ - uid: 987
+ components:
+ - type: Transform
+ pos: 2.5,32.5
+ parent: 2
+ - uid: 988
+ components:
+ - type: Transform
+ pos: 5.5,32.5
+ parent: 2
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 31.5,33.5
+ parent: 2
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 31.5,32.5
+ parent: 2
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 32.5,33.5
+ parent: 2
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: 33.5,33.5
+ parent: 2
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 34.5,33.5
+ parent: 2
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: 35.5,33.5
+ parent: 2
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 36.5,33.5
+ parent: 2
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: 37.5,33.5
+ parent: 2
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 38.5,33.5
+ parent: 2
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: 39.5,33.5
+ parent: 2
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 30.5,33.5
+ parent: 2
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: 29.5,33.5
+ parent: 2
+- proto: CableHV
+ entities:
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 25.5,15.5
+ parent: 2
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 2
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 2
+- proto: CableMV
+ entities:
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 2
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 2
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 2
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 2
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 2
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 2
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 2
+- proto: CandleBlack
+ entities:
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 33.477924,9.726638
+ parent: 2
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 31.655748,9.861569
+ parent: 2
+ - uid: 131
+ components:
+ - type: Transform
+ pos: 33.64664,9.541104
+ parent: 2
+- proto: CandleBlackSmall
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 33.140484,9.726638
+ parent: 2
+- proto: Carpet
+ entities:
+ - uid: 40
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,33.5
+ parent: 2
+ - uid: 48
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,32.5
+ parent: 2
+ - uid: 59
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,32.5
+ parent: 2
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 16.5,33.5
+ parent: 2
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 17.5,33.5
+ parent: 2
+ - uid: 1009
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 2
+- proto: CarpetBlack
+ entities:
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 2
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 2
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 2
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 32.5,7.5
+ parent: 2
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 2
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 32.5,8.5
+ parent: 2
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 2
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 32.5,9.5
+ parent: 2
+- proto: Catwalk
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 2
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 2
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 2
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 2
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 2
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 18.5,7.5
+ parent: 2
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 4.5,33.5
+ parent: 2
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 2
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 2
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 2
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 2
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 2
+ - uid: 213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,25.5
+ parent: 2
+ - uid: 214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,29.5
+ parent: 2
+ - uid: 218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,29.5
+ parent: 2
+ - uid: 220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,29.5
+ parent: 2
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 2
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 2
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 2
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 20.5,7.5
+ parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 2
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 34.5,2.5
+ parent: 2
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 2
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 32.5,2.5
+ parent: 2
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 31.5,2.5
+ parent: 2
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 29.5,2.5
+ parent: 2
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 28.5,2.5
+ parent: 2
+ - uid: 268
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 2
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 2
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 2
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 17.5,13.5
+ parent: 2
+ - uid: 329
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 2
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 17.5,12.5
+ parent: 2
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 2
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 21.5,13.5
+ parent: 2
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 21.5,12.5
+ parent: 2
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 5.5,33.5
+ parent: 2
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 2.5,33.5
+ parent: 2
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 1.5,33.5
+ parent: 2
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 2
+ - uid: 423
+ components:
+ - type: Transform
+ pos: 9.5,18.5
+ parent: 2
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 10.5,19.5
+ parent: 2
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 2
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 6.5,33.5
+ parent: 2
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 7.5,21.5
+ parent: 2
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 2
+ - uid: 434
+ components:
+ - type: Transform
+ pos: 7.5,18.5
+ parent: 2
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 2
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 2
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 9.5,22.5
+ parent: 2
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 9.5,21.5
+ parent: 2
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 10.5,21.5
+ parent: 2
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 9.5,19.5
+ parent: 2
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 11.5,33.5
+ parent: 2
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 10.5,33.5
+ parent: 2
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 5.5,25.5
+ parent: 2
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 2
+ - uid: 645
+ components:
+ - type: Transform
+ pos: 4.5,26.5
+ parent: 2
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 2
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 8.5,33.5
+ parent: 2
+ - uid: 738
+ components:
+ - type: Transform
+ pos: 7.5,33.5
+ parent: 2
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 9.5,33.5
+ parent: 2
+ - uid: 809
+ components:
+ - type: Transform
+ pos: 42.5,21.5
+ parent: 2
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 42.5,20.5
+ parent: 2
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 42.5,22.5
+ parent: 2
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 45.5,24.5
+ parent: 2
+ - uid: 813
+ components:
+ - type: Transform
+ pos: 45.5,23.5
+ parent: 2
+ - uid: 814
+ components:
+ - type: Transform
+ pos: 44.5,23.5
+ parent: 2
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 47.5,18.5
+ parent: 2
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 46.5,18.5
+ parent: 2
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 2
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 2
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 2
+ - uid: 820
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 2
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 44.5,18.5
+ parent: 2
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 39.5,2.5
+ parent: 2
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 40.5,2.5
+ parent: 2
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 41.5,2.5
+ parent: 2
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 42.5,2.5
+ parent: 2
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 43.5,2.5
+ parent: 2
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 44.5,2.5
+ parent: 2
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 45.5,2.5
+ parent: 2
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 46.5,2.5
+ parent: 2
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 44.5,3.5
+ parent: 2
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 42.5,1.5
+ parent: 2
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 47.5,2.5
+ parent: 2
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 49.5,2.5
+ parent: 2
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 50.5,2.5
+ parent: 2
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 52.5,2.5
+ parent: 2
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 52.5,3.5
+ parent: 2
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 36.5,2.5
+ parent: 2
+ - uid: 901
+ components:
+ - type: Transform
+ pos: 36.5,3.5
+ parent: 2
+ - uid: 902
+ components:
+ - type: Transform
+ pos: 36.5,1.5
+ parent: 2
+ - uid: 903
+ components:
+ - type: Transform
+ pos: 37.5,2.5
+ parent: 2
+ - uid: 947
+ components:
+ - type: Transform
+ pos: 4.5,27.5
+ parent: 2
+ - uid: 1053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,29.5
+ parent: 2
+ - uid: 1054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,28.5
+ parent: 2
+ - uid: 1055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,27.5
+ parent: 2
+ - uid: 1056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,26.5
+ parent: 2
+ - uid: 1057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,25.5
+ parent: 2
+- proto: Chair
+ entities:
+ - uid: 607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,26.5
+ parent: 2
+- proto: ChairRitual
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,8.5
+ parent: 2
+- proto: ClosetMaintenanceFilledRandom
+ entities:
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 12.5,12.5
+ parent: 2
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 31.5,6.5
+ parent: 2
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 16.5,13.5
+ parent: 2
+- proto: ClothingHeadHatCardborg
+ entities:
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 48.485527,19.798538
+ parent: 2
+- proto: ClothingHeadHatHoodCulthood
+ entities:
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 25.413336,7.589584
+ parent: 2
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 25.308355,7.6870356
+ parent: 2
+- proto: ClothingOuterRobesCult
+ entities:
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 25.728281,7.5071254
+ parent: 2
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 25.570808,7.6870356
+ parent: 2
+- proto: ClothingShoesCult
+ entities:
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 27.247335,6.6999836
+ parent: 2
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 27.4423,6.4601035
+ parent: 2
+- proto: ConveyorBelt
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,2.5
+ parent: 2
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 2
+ - uid: 85
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,2.5
+ parent: 2
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 2
+ - uid: 177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,2.5
+ parent: 2
+ - uid: 367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,33.5
+ parent: 2
+ - uid: 791
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 2
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 2
+ - uid: 793
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 2
+ - uid: 794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,18.5
+ parent: 2
+ - uid: 795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,18.5
+ parent: 2
+ - uid: 948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,33.5
+ parent: 2
+ - uid: 949
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,33.5
+ parent: 2
+ - uid: 950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,33.5
+ parent: 2
+ - uid: 951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,33.5
+ parent: 2
+ - uid: 952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,33.5
+ parent: 2
+ - uid: 953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,33.5
+ parent: 2
+ - uid: 954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,33.5
+ parent: 2
+ - uid: 955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,33.5
+ parent: 2
+- proto: ConveyorBeltAssembly
+ entities:
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 8.552004,33.69986
+ parent: 2
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 11.431062,33.09255
+ parent: 2
+- proto: CrateWoodenGrave
+ entities:
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 2
+- proto: CrystalBlue
+ entities:
+ - uid: 521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,19.5
+ parent: 2
+- proto: CrystalCyan
+ entities:
+ - uid: 488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,23.5
+ parent: 2
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 31.5,18.5
+ parent: 2
+- proto: CrystalOrange
+ entities:
+ - uid: 249
+ components:
+ - type: Transform
+ pos: 23.5,4.5
+ parent: 2
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 25.5,1.5
+ parent: 2
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 30.5,0.5
+ parent: 2
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 31.5,4.5
+ parent: 2
+ - uid: 919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,1.5
+ parent: 2
+ - uid: 920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,3.5
+ parent: 2
+ - uid: 921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,0.5
+ parent: 2
+ - uid: 922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,4.5
+ parent: 2
+ - uid: 923
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,1.5
+ parent: 2
+- proto: CrystalSpawner
+ entities:
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 2
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 2
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 2
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 14.5,2.5
+ parent: 2
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 21.5,9.5
+ parent: 2
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 2
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 2
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 2
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 26.5,9.5
+ parent: 2
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 2
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 14.5,27.5
+ parent: 2
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 2
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 13.5,10.5
+ parent: 2
+ - uid: 332
+ components:
+ - type: Transform
+ pos: 19.5,13.5
+ parent: 2
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 16.5,12.5
+ parent: 2
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 21.5,32.5
+ parent: 2
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 2
+ - uid: 442
+ components:
+ - type: Transform
+ pos: 9.5,21.5
+ parent: 2
+ - uid: 619
+ components:
+ - type: Transform
+ pos: 37.5,19.5
+ parent: 2
+ - uid: 620
+ components:
+ - type: Transform
+ pos: 38.5,24.5
+ parent: 2
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 34.5,19.5
+ parent: 2
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 34.5,28.5
+ parent: 2
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 2
+ - uid: 714
+ components:
+ - type: Transform
+ pos: 36.5,7.5
+ parent: 2
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 44.5,10.5
+ parent: 2
+ - uid: 769
+ components:
+ - type: Transform
+ pos: 42.5,15.5
+ parent: 2
+ - uid: 992
+ components:
+ - type: Transform
+ pos: 1.5,34.5
+ parent: 2
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 10.5,34.5
+ parent: 2
+ - uid: 999
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 2
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 25.5,34.5
+ parent: 2
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 12.5,28.5
+ parent: 2
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 12.5,26.5
+ parent: 2
+- proto: CyborgEndoskeleton
+ entities:
+ - uid: 803
+ components:
+ - type: Transform
+ pos: 46.596577,23.582308
+ parent: 2
+ - uid: 804
+ components:
+ - type: Transform
+ pos: 46.156357,23.503092
+ parent: 2
+ - uid: 805
+ components:
+ - type: Transform
+ pos: 45.2583,23.626316
+ parent: 2
+- proto: DrinkAleBottleFull
+ entities:
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 28.588388,32.850025
+ parent: 2
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 30.140612,34.862766
+ parent: 2
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 30.343075,34.727837
+ parent: 2
+- proto: DrinkBeerBottleFull
+ entities:
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 14.698467,21.394209
+ parent: 2
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: 14.407921,21.143362
+ parent: 2
+- proto: DrinkBeerGrowler
+ entities:
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 15.128302,19.8661
+ parent: 2
+ - uid: 1044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.560413,19.81329
+ parent: 2
+- proto: DrinkBloodGlass
+ entities:
+ - uid: 38
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.35854,32.78117
+ parent: 2
+ - uid: 1059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.649086,32.701954
+ parent: 2
+- proto: DrinkMugOne
+ entities:
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 2.7162292,21.258032
+ parent: 2
+- proto: ExosuitFabricator
+ entities:
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 2
+- proto: FenceMetalBroken
+ entities:
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 32.5,34.5
+ parent: 2
+- proto: FenceMetalEnd
+ entities:
+ - uid: 1104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,32.5
+ parent: 2
+ - uid: 1108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,32.5
+ parent: 2
+- proto: FenceMetalStraight
+ entities:
+ - uid: 151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,29.5
+ parent: 2
+ - uid: 153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,29.5
+ parent: 2
+ - uid: 161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,29.5
+ parent: 2
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 17.5,12.5
+ parent: 2
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 17.5,13.5
+ parent: 2
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 2
+ - uid: 339
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 2
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 2
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 2
+ - uid: 344
+ components:
+ - type: Transform
+ pos: 21.5,13.5
+ parent: 2
+ - uid: 345
+ components:
+ - type: Transform
+ pos: 21.5,12.5
+ parent: 2
+ - uid: 942
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,27.5
+ parent: 2
+ - uid: 943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,27.5
+ parent: 2
+ - uid: 1067
+ components:
+ - type: Transform
+ pos: 32.5,33.5
+ parent: 2
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 36.5,33.5
+ parent: 2
+- proto: FloorLavaEntity
+ entities:
+ - uid: 103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,3.5
+ parent: 2
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 30.5,29.5
+ parent: 2
+ - uid: 224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,3.5
+ parent: 2
+ - uid: 225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,4.5
+ parent: 2
+ - uid: 226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,4.5
+ parent: 2
+ - uid: 227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,1.5
+ parent: 2
+ - uid: 228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,2.5
+ parent: 2
+ - uid: 229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,1.5
+ parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,0.5
+ parent: 2
+ - uid: 231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,0.5
+ parent: 2
+ - uid: 232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,0.5
+ parent: 2
+ - uid: 233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,0.5
+ parent: 2
+ - uid: 234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,1.5
+ parent: 2
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 29.5,29.5
+ parent: 2
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 29.5,30.5
+ parent: 2
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 30.5,30.5
+ parent: 2
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 28.5,29.5
+ parent: 2
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 28.5,28.5
+ parent: 2
+ - uid: 446
+ components:
+ - type: Transform
+ pos: 29.5,28.5
+ parent: 2
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 28.5,27.5
+ parent: 2
+ - uid: 841
+ components:
+ - type: Transform
+ pos: 42.5,2.5
+ parent: 2
+ - uid: 842
+ components:
+ - type: Transform
+ pos: 43.5,2.5
+ parent: 2
+ - uid: 843
+ components:
+ - type: Transform
+ pos: 44.5,2.5
+ parent: 2
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 45.5,2.5
+ parent: 2
+ - uid: 845
+ components:
+ - type: Transform
+ pos: 43.5,1.5
+ parent: 2
+ - uid: 848
+ components:
+ - type: Transform
+ pos: 41.5,1.5
+ parent: 2
+ - uid: 852
+ components:
+ - type: Transform
+ pos: 42.5,1.5
+ parent: 2
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 43.5,3.5
+ parent: 2
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 42.5,3.5
+ parent: 2
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 43.5,4.5
+ parent: 2
+ - uid: 864
+ components:
+ - type: Transform
+ pos: 42.5,4.5
+ parent: 2
+ - uid: 865
+ components:
+ - type: Transform
+ pos: 41.5,4.5
+ parent: 2
+ - uid: 866
+ components:
+ - type: Transform
+ pos: 41.5,2.5
+ parent: 2
+ - uid: 867
+ components:
+ - type: Transform
+ pos: 41.5,3.5
+ parent: 2
+ - uid: 868
+ components:
+ - type: Transform
+ pos: 40.5,2.5
+ parent: 2
+ - uid: 869
+ components:
+ - type: Transform
+ pos: 40.5,3.5
+ parent: 2
+ - uid: 870
+ components:
+ - type: Transform
+ pos: 39.5,1.5
+ parent: 2
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 39.5,2.5
+ parent: 2
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 38.5,1.5
+ parent: 2
+ - uid: 873
+ components:
+ - type: Transform
+ pos: 40.5,4.5
+ parent: 2
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 39.5,4.5
+ parent: 2
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 44.5,1.5
+ parent: 2
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 44.5,3.5
+ parent: 2
+ - uid: 877
+ components:
+ - type: Transform
+ pos: 45.5,1.5
+ parent: 2
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 46.5,1.5
+ parent: 2
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 48.5,0.5
+ parent: 2
+ - uid: 880
+ components:
+ - type: Transform
+ pos: 47.5,0.5
+ parent: 2
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 46.5,0.5
+ parent: 2
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 45.5,0.5
+ parent: 2
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 47.5,1.5
+ parent: 2
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 46.5,2.5
+ parent: 2
+- proto: FloorWaterEntity
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 2
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 2
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 2
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 2
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 13.5,27.5
+ parent: 2
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 2
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 2
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 2
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 2
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 2
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 2
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 2
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 9.5,20.5
+ parent: 2
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 9.5,21.5
+ parent: 2
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 2
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 2
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 2
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 2
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 2
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 7.5,21.5
+ parent: 2
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 29.5,21.5
+ parent: 2
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 29.5,22.5
+ parent: 2
+ - uid: 451
+ components:
+ - type: Transform
+ pos: 30.5,22.5
+ parent: 2
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 2
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 30.5,20.5
+ parent: 2
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 30.5,21.5
+ parent: 2
+ - uid: 465
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 2
+ - uid: 467
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 2
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 2
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 2
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 2
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 29.5,20.5
+ parent: 2
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 29.5,21.5
+ parent: 2
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 2
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 2
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 24.5,29.5
+ parent: 2
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 25.5,29.5
+ parent: 2
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 26.5,27.5
+ parent: 2
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 26.5,28.5
+ parent: 2
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 2
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 2
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 12.5,27.5
+ parent: 2
+- proto: FloraRockSolid01
+ entities:
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 14.417985,10.609197
+ parent: 2
+- proto: FloraRockSolid03
+ entities:
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 30.46267,18.973217
+ parent: 2
+- proto: FoodTinBeans
+ entities:
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 14.063244,25.815691
+ parent: 2
+- proto: FoodTinBeansTrash
+ entities:
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 13.658937,25.452745
+ parent: 2
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 13.096437,25.68712
+ parent: 2
+- proto: GeneratorRTG
+ entities:
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 25.5,15.5
+ parent: 2
+- proto: GeneratorRTGDamaged
+ entities:
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 36.5,26.5
+ parent: 2
+- proto: Grille
+ entities:
+ - uid: 288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,19.5
+ parent: 2
+ - uid: 289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,21.5
+ parent: 2
+ - uid: 290
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,21.5
+ parent: 2
+ - uid: 359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,16.5
+ parent: 2
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 40.5,15.5
+ parent: 2
+ - uid: 375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,18.5
+ parent: 2
+ - uid: 462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,20.5
+ parent: 2
+ - uid: 472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,24.5
+ parent: 2
+ - uid: 599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,18.5
+ parent: 2
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 46.5,15.5
+ parent: 2
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 40.5,13.5
+ parent: 2
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 46.5,13.5
+ parent: 2
+ - uid: 740
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,22.5
+ parent: 2
+ - uid: 745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,20.5
+ parent: 2
+ - uid: 748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,16.5
+ parent: 2
+ - uid: 749
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,16.5
+ parent: 2
+ - uid: 750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,12.5
+ parent: 2
+ - uid: 751
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,12.5
+ parent: 2
+ - uid: 1026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,16.5
+ parent: 2
+ - uid: 1028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,15.5
+ parent: 2
+- proto: GrilleBroken
+ entities:
+ - uid: 275
+ components:
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 2
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 2
+ - uid: 291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,19.5
+ parent: 2
+ - uid: 306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,20.5
+ parent: 2
+ - uid: 307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,20.5
+ parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,12.5
+ parent: 2
+ - uid: 321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,12.5
+ parent: 2
+ - uid: 399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,14.5
+ parent: 2
+ - uid: 408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,16.5
+ parent: 2
+ - uid: 600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,12.5
+ parent: 2
+ - uid: 625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,24.5
+ parent: 2
+ - uid: 626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,21.5
+ parent: 2
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 38.5,21.5
+ parent: 2
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 37.5,21.5
+ parent: 2
+ - uid: 699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,6.5
+ parent: 2
+ - uid: 746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,16.5
+ parent: 2
+ - uid: 747
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,16.5
+ parent: 2
+ - uid: 1029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,13.5
+ parent: 2
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 30.5,13.5
+ parent: 2
+- proto: GrilleDiagonal
+ entities:
+ - uid: 627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,20.5
+ parent: 2
+- proto: LeftLegBorgEngineer
+ entities:
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 46.631798,24.462471
+ parent: 2
+- proto: LegionnaireBonfire
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 20.5,29.5
+ parent: 2
+ - uid: 604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,28.5
+ parent: 2
+- proto: LightHeadBorg
+ entities:
+ - uid: 806
+ components:
+ - type: Transform
+ pos: 43.312515,23.740736
+ parent: 2
+- proto: MachineAnomalySynchronizer
+ entities:
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 36.5,22.5
+ parent: 2
+- proto: MachineArtifactCrusher
+ entities:
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 33.5,15.5
+ parent: 2
+- proto: MachineFrameDestroyed
+ entities:
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 47.5,18.5
+ parent: 2
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 38.5,7.5
+ parent: 2
+- proto: MaintenancePlantSpawner
+ entities:
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 21.5,21.5
+ parent: 2
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 2
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 31.5,23.5
+ parent: 2
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 2
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 27.5,23.5
+ parent: 2
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 30.5,24.5
+ parent: 2
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 2
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 27.5,18.5
+ parent: 2
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 2
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 31.5,21.5
+ parent: 2
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 22.5,22.5
+ parent: 2
+ - uid: 552
+ components:
+ - type: Transform
+ pos: 20.5,23.5
+ parent: 2
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 15.5,18.5
+ parent: 2
+ - uid: 554
+ components:
+ - type: Transform
+ pos: 12.5,21.5
+ parent: 2
+- proto: MaintenanceToolSpawner
+ entities:
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 42.5,7.5
+ parent: 2
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 40.5,7.5
+ parent: 2
+- proto: MiningWindow
+ entities:
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 39.5,8.5
+ parent: 2
+ - uid: 284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,19.5
+ parent: 2
+ - uid: 286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,21.5
+ parent: 2
+ - uid: 317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,16.5
+ parent: 2
+ - uid: 319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,16.5
+ parent: 2
+ - uid: 407
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,24.5
+ parent: 2
+ - uid: 468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,20.5
+ parent: 2
+ - uid: 469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,18.5
+ parent: 2
+ - uid: 473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,20.5
+ parent: 2
+ - uid: 474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,22.5
+ parent: 2
+ - uid: 477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,18.5
+ parent: 2
+ - uid: 556
+ components:
+ - type: Transform
+ pos: 40.5,15.5
+ parent: 2
+ - uid: 560
+ components:
+ - type: Transform
+ pos: 40.5,13.5
+ parent: 2
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 46.5,15.5
+ parent: 2
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 46.5,13.5
+ parent: 2
+ - uid: 689
+ components:
+ - type: Transform
+ pos: 40.5,8.5
+ parent: 2
+ - uid: 690
+ components:
+ - type: Transform
+ pos: 41.5,8.5
+ parent: 2
+ - uid: 742
+ components:
+ - type: Transform
+ pos: 44.5,12.5
+ parent: 2
+ - uid: 743
+ components:
+ - type: Transform
+ pos: 42.5,12.5
+ parent: 2
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 42.5,16.5
+ parent: 2
+ - uid: 1027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,15.5
+ parent: 2
+- proto: OreProcessor
+ entities:
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 2.5,33.5
+ parent: 2
+- proto: PlushieSlime
+ entities:
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 6.3847184,15.547257
+ parent: 2
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 2
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 48.5,23.5
+ parent: 2
+ - uid: 989
+ components:
+ - type: Transform
+ pos: 5.5,32.5
+ parent: 2
+ - uid: 1079
+ components:
+ - type: Transform
+ pos: 31.5,32.5
+ parent: 2
+- proto: PosterLegitScience
+ entities:
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 34.5,22.5
+ parent: 2
+- proto: PoweredLightPostSmall
+ entities:
+ - uid: 822
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 2
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 2
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 2.5,32.5
+ parent: 2
+- proto: PoweredSmallLight
+ entities:
+ - uid: 303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,19.5
+ parent: 2
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 2
+ - uid: 377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,13.5
+ parent: 2
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 29.5,15.5
+ parent: 2
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 25.5,15.5
+ parent: 2
+ - uid: 380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,13.5
+ parent: 2
+- proto: Rack
+ entities:
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 18.5,7.5
+ parent: 2
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 27.5,6.5
+ parent: 2
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 2
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 30.5,4.5
+ parent: 2
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 2
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 20.5,0.5
+ parent: 2
+ - uid: 267
+ components:
+ - type: Transform
+ pos: 32.5,4.5
+ parent: 2
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: 27.5,15.5
+ parent: 2
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 29.5,13.5
+ parent: 2
+ - uid: 485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,20.5
+ parent: 2
+ - uid: 486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,19.5
+ parent: 2
+ - uid: 489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,20.5
+ parent: 2
+ - uid: 490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,19.5
+ parent: 2
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 39.5,20.5
+ parent: 2
+ - uid: 622
+ components:
+ - type: Transform
+ pos: 40.5,20.5
+ parent: 2
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 33.5,12.5
+ parent: 2
+ - uid: 763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,13.5
+ parent: 2
+ - uid: 764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,13.5
+ parent: 2
+ - uid: 789
+ components:
+ - type: Transform
+ pos: 43.5,20.5
+ parent: 2
+ - uid: 790
+ components:
+ - type: Transform
+ pos: 43.5,21.5
+ parent: 2
+ - uid: 924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,4.5
+ parent: 2
+ - uid: 925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,0.5
+ parent: 2
+ - uid: 926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,0.5
+ parent: 2
+ - uid: 927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,0.5
+ parent: 2
+ - uid: 931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,4.5
+ parent: 2
+ - uid: 932
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,4.5
+ parent: 2
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 15.5,22.5
+ parent: 2
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 13.5,18.5
+ parent: 2
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: 12.5,19.5
+ parent: 2
+ - uid: 1048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,24.5
+ parent: 2
+ - uid: 1049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,30.5
+ parent: 2
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: 39.5,34.5
+ parent: 2
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: 40.5,34.5
+ parent: 2
+- proto: Railing
+ entities:
+ - uid: 544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,21.5
+ parent: 2
+ - uid: 798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,21.5
+ parent: 2
+ - uid: 904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,1.5
+ parent: 2
+ - uid: 905
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,1.5
+ parent: 2
+ - uid: 906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,1.5
+ parent: 2
+ - uid: 907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,1.5
+ parent: 2
+ - uid: 908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,1.5
+ parent: 2
+ - uid: 909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,1.5
+ parent: 2
+ - uid: 910
+ components:
+ - type: Transform
+ pos: 43.5,3.5
+ parent: 2
+ - uid: 911
+ components:
+ - type: Transform
+ pos: 42.5,3.5
+ parent: 2
+ - uid: 912
+ components:
+ - type: Transform
+ pos: 41.5,3.5
+ parent: 2
+ - uid: 913
+ components:
+ - type: Transform
+ pos: 40.5,3.5
+ parent: 2
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 39.5,3.5
+ parent: 2
+ - uid: 918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,1.5
+ parent: 2
+- proto: RailingCornerSmall
+ entities:
+ - uid: 545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,22.5
+ parent: 2
+ - uid: 546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,22.5
+ parent: 2
+ - uid: 547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,21.5
+ parent: 2
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 47.5,20.5
+ parent: 2
+ - uid: 915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,3.5
+ parent: 2
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 48.5,1.5
+ parent: 2
+ - uid: 917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,3.5
+ parent: 2
+- proto: RandomArtifactSpawner
+ entities:
+ - uid: 611
+ components:
+ - type: Transform
+ pos: 34.5,14.5
+ parent: 2
+- proto: RandomBoard
+ entities:
+ - uid: 934
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 2
+ - uid: 935
+ components:
+ - type: Transform
+ pos: 49.5,0.5
+ parent: 2
+- proto: RandomBrownStalagmite
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 2
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 2
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 2
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 2
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 2
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 34.5,30.5
+ parent: 2
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 32.5,26.5
+ parent: 2
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 20.5,27.5
+ parent: 2
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 32.5,28.5
+ parent: 2
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 22.5,30.5
+ parent: 2
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 20.5,30.5
+ parent: 2
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 34.5,27.5
+ parent: 2
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 38.5,26.5
+ parent: 2
+ - uid: 322
+ components:
+ - type: Transform
+ pos: 38.5,29.5
+ parent: 2
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 14.5,15.5
+ parent: 2
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 14.5,16.5
+ parent: 2
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 35.5,18.5
+ parent: 2
+ - uid: 636
+ components:
+ - type: Transform
+ pos: 40.5,24.5
+ parent: 2
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - uid: 638
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 2
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 33.5,29.5
+ parent: 2
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 37.5,15.5
+ parent: 2
+ - uid: 675
+ components:
+ - type: Transform
+ pos: 32.5,13.5
+ parent: 2
+ - uid: 676
+ components:
+ - type: Transform
+ pos: 19.5,3.5
+ parent: 2
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 32.5,0.5
+ parent: 2
+ - uid: 678
+ components:
+ - type: Transform
+ pos: 33.5,3.5
+ parent: 2
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 2
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 36.5,10.5
+ parent: 2
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 41.5,9.5
+ parent: 2
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 42.5,9.5
+ parent: 2
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 39.5,9.5
+ parent: 2
+ - uid: 768
+ components:
+ - type: Transform
+ pos: 42.5,14.5
+ parent: 2
+ - uid: 836
+ components:
+ - type: Transform
+ pos: 44.5,18.5
+ parent: 2
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 44.5,22.5
+ parent: 2
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 48.5,22.5
+ parent: 2
+ - uid: 946
+ components:
+ - type: Transform
+ pos: 36.5,30.5
+ parent: 2
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 21.5,34.5
+ parent: 2
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 33.5,33.5
+ parent: 2
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: 35.5,34.5
+ parent: 2
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 2
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 37.5,33.5
+ parent: 2
+- proto: RandomGreyStalagmite
+ entities:
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 2
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 32.5,30.5
+ parent: 2
+ - uid: 770
+ components:
+ - type: Transform
+ pos: 41.5,13.5
+ parent: 2
+- proto: RandomWoodenSupport
+ entities:
+ - uid: 939
+ components:
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 2
+ - uid: 940
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 2
+ - uid: 945
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 2
+ - uid: 1005
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 2
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 2
+- proto: RandomWoodenWall
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 21.5,18.5
+ parent: 2
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 2
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 2
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 2
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 2
+ - uid: 1008
+ components:
+ - type: Transform
+ pos: 23.5,21.5
+ parent: 2
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 2
+- proto: RitualDagger
+ entities:
+ - uid: 58
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.584774,6.677495
+ parent: 2
+- proto: SalvageCanisterSpawner
+ entities:
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 2
+- proto: SalvageHumanCorpseSpawner
+ entities:
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 2
+ - uid: 1012
+ components:
+ - type: Transform
+ pos: 17.5,34.5
+ parent: 2
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 19.5,32.5
+ parent: 2
+- proto: SalvageMaterialCrateSpawner
+ entities:
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 1.5,19.5
+ parent: 2
+ - uid: 767
+ components:
+ - type: Transform
+ pos: 45.5,15.5
+ parent: 2
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 1.5,33.5
+ parent: 2
+- proto: SignDangerMed
+ entities:
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 2
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 10.5,6.5
+ parent: 2
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 2
+ - uid: 422
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 2
+- proto: SignNosmoking
+ entities:
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 20.5,24.5
+ parent: 2
+- proto: SignRadiationMed
+ entities:
+ - uid: 654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,27.5
+ parent: 2
+- proto: SpawnDungeonLootArmoryClutter
+ entities:
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 17.33893,27.368338
+ parent: 2
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 17.33893,27.712088
+ parent: 2
+ - uid: 644
+ components:
+ - type: Transform
+ pos: 18.229555,30.102713
+ parent: 2
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: 18.43268,30.446463
+ parent: 2
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: 18.385805,26.555838
+ parent: 2
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: 21.19949,30.071463
+ parent: 2
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: 21.527615,29.790213
+ parent: 2
+- proto: SpawnDungeonLootArmoryGuns
+ entities:
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 21.604555,26.493338
+ parent: 2
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 9.485243,26.50202
+ parent: 2
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 9.641493,26.93952
+ parent: 2
+- proto: SpawnDungeonLootArmoryMelee
+ entities:
+ - uid: 633
+ components:
+ - type: Transform
+ pos: 20.854555,29.071463
+ parent: 2
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 16.55768,27.758963
+ parent: 2
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 9.282118,27.736395
+ parent: 2
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 2
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 2
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 19.5,10.5
+ parent: 2
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 13.5,19.5
+ parent: 2
+ - uid: 762
+ components:
+ - type: Transform
+ pos: 41.5,7.5
+ parent: 2
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 50.368248,4.5766296
+ parent: 2
+ - uid: 1051
+ components:
+ - type: Transform
+ pos: 50.477623,0.56100464
+ parent: 2
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 765
+ components:
+ - type: Transform
+ pos: 18.509827,7.5301414
+ parent: 2
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: 18.744202,7.5926414
+ parent: 2
+- proto: SpawnDungeonLootClutterSalvage
+ entities:
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 13.53418,18.534971
+ parent: 2
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 27.429394,15.55666
+ parent: 2
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 29.991856,28.373144
+ parent: 2
+ - uid: 650
+ components:
+ - type: Transform
+ pos: 23.38866,20.62388
+ parent: 2
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: 39.45153,7.6384115
+ parent: 2
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 21.623035,20.59263
+ parent: 2
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 45.388588,13.5004015
+ parent: 2
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: 45.716713,13.5941515
+ parent: 2
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 43.404213,20.689926
+ parent: 2
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 48.372963,19.455551
+ parent: 2
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: 12.166151,13.4858
+ parent: 2
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: 11.181776,13.813925
+ parent: 2
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: 4.6505265,15.39205
+ parent: 2
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 15.59473,22.56459
+ parent: 2
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: 15.391605,22.56459
+ parent: 2
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: 17.801481,27.454563
+ parent: 2
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 9.68271,27.517063
+ parent: 2
+- proto: SpawnDungeonLootCrateVehicle
+ entities:
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: 2.5,29.5
+ parent: 2
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 2
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 29.507519,13.46291
+ parent: 2
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 17.734632,29.404394
+ parent: 2
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 17.359632,29.591894
+ parent: 2
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 0.5280714,25.361395
+ parent: 2
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 2.3405714,24.59577
+ parent: 2
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 37.327374,4.5453796
+ parent: 2
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 21.41991,20.014505
+ parent: 2
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: 21.60741,19.545755
+ parent: 2
+- proto: SpawnDungeonLootKitsFirstAid
+ entities:
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 19.435535,20.545755
+ parent: 2
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 19.48241,19.46763
+ parent: 2
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 44.346497,13.572924
+ parent: 2
+ - uid: 457
+ components:
+ - type: Transform
+ pos: 44.627747,13.432299
+ parent: 2
+- proto: SpawnDungeonLootLatheEngi
+ entities:
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 2
+ - uid: 623
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 2
+- proto: SpawnDungeonLootLatheSalvage
+ entities:
+ - uid: 558
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 2
+- proto: SpawnDungeonLootLockersSalvage
+ entities:
+ - uid: 207
+ components:
+ - type: Transform
+ pos: 2.5,25.5
+ parent: 2
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 0.5,29.5
+ parent: 2
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 2.5,26.5
+ parent: 2
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 0.5,28.5
+ parent: 2
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 39.450226,34.5758
+ parent: 2
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 9.485243,28.47077
+ parent: 2
+ - uid: 933
+ components:
+ - type: Transform
+ pos: 40.65335,34.48205
+ parent: 2
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 40.106476,34.5133
+ parent: 2
+- proto: SpawnDungeonLootMaterialsValuableFull
+ entities:
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 13.56543,21.847471
+ parent: 2
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 15.612305,19.363096
+ parent: 2
+- proto: SpawnDungeonLootOresFull
+ entities:
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 37.718,4.4360046
+ parent: 2
+- proto: SpawnDungeonLootOresSingle
+ entities:
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 9.870603,33.31657
+ parent: 2
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 7.5581026,33.644695
+ parent: 2
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 4.4331026,33.44157
+ parent: 2
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 8.870603,33.59782
+ parent: 2
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 3.4956026,33.66032
+ parent: 2
+ - uid: 936
+ components:
+ - type: Transform
+ pos: 11.354978,33.66032
+ parent: 2
+ - uid: 937
+ components:
+ - type: Transform
+ pos: 6.6518526,33.457195
+ parent: 2
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 5.4956026,33.62907
+ parent: 2
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 10.778971,33.37907
+ parent: 2
+- proto: SpawnDungeonLootPartsEngi
+ entities:
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: 19.447327,7.5770164
+ parent: 2
+- proto: SpawnDungeonLootToolbox
+ entities:
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 39.513714,20.608255
+ parent: 2
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 33.458927,12.651049
+ parent: 2
+- proto: SpawnDungeonLootToolsSalvage
+ entities:
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 32.52003,4.4516296
+ parent: 2
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 43.474083,7.4821615
+ parent: 2
+ - uid: 458
+ components:
+ - type: Transform
+ pos: 20.486082,0.61365485
+ parent: 2
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 4.498382,13.615852
+ parent: 2
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 4.5496006,9.405142
+ parent: 2
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 2.482757,13.584602
+ parent: 2
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 46.52404,4.5453796
+ parent: 2
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 12.549805,19.534971
+ parent: 2
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 23.73241,19.483255
+ parent: 2
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 23.404285,19.62388
+ parent: 2
+ - uid: 634
+ components:
+ - type: Transform
+ pos: 23.560535,20.49888
+ parent: 2
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 2.482757,15.522102
+ parent: 2
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 11.433525,2.584891
+ parent: 2
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: 2.701507,15.506477
+ parent: 2
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: 27.679394,15.49416
+ parent: 2
+- proto: SpawnDungeonVendomatsMed
+ entities:
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 41.5,15.5
+ parent: 2
+- proto: SpawnDungeonVendomatsRecreational
+ entities:
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 2
+- proto: StatueVenusBlue
+ entities:
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 29.5,21.5
+ parent: 2
+- proto: StatueVenusRed
+ entities:
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 14.5,20.5
+ parent: 2
+- proto: SubstationBasic
+ entities:
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 2
+- proto: TableCounterMetal
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 2
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ stickers_container: !type:Container
+ showEnts: True
+ ents: []
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 9.5,28.5
+ parent: 2
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 2
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 9.5,26.5
+ parent: 2
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 38.5,6.5
+ parent: 2
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 2
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 21.5,19.5
+ parent: 2
+ - uid: 640
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 2
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 2
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 38.5,7.5
+ parent: 2
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 39.5,7.5
+ parent: 2
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 40.5,7.5
+ parent: 2
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 42.5,7.5
+ parent: 2
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 43.5,7.5
+ parent: 2
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 48.5,19.5
+ parent: 2
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 2
+ - uid: 1102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,32.5
+ parent: 2
+- proto: TableFancyPurple
+ entities:
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 35.5,23.5
+ parent: 2
+- proto: TableFancyRed
+ entities:
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 2
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 32.5,9.5
+ parent: 2
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 2
+- proto: TableStone
+ entities:
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 17.5,29.5
+ parent: 2
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 17.5,27.5
+ parent: 2
+- proto: TorsoBorg
+ entities:
+ - uid: 807
+ components:
+ - type: Transform
+ pos: 42.660984,19.533558
+ parent: 2
+- proto: TorsoBorgJanitor
+ entities:
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 47.640297,19.235235
+ parent: 2
+- proto: VendingMachineChapel
+ entities:
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 33.5,6.5
+ parent: 2
+- proto: WallCobblebrick
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 2
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 10.5,10.5
+ parent: 2
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 2
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 10.5,6.5
+ parent: 2
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 9.5,25.5
+ parent: 2
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 9.5,29.5
+ parent: 2
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 2
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 6.5,22.5
+ parent: 2
+ - uid: 420
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 2
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 2
+- proto: WallMining
+ entities:
+ - uid: 281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,18.5
+ parent: 2
+ - uid: 282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,22.5
+ parent: 2
+ - uid: 283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,22.5
+ parent: 2
+ - uid: 295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,18.5
+ parent: 2
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 2
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 2
+ - uid: 357
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 2
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 26.5,12.5
+ parent: 2
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 25.5,12.5
+ parent: 2
+ - uid: 393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,15.5
+ parent: 2
+ - uid: 394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,13.5
+ parent: 2
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 24.5,19.5
+ parent: 2
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 19.5,24.5
+ parent: 2
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 18.5,23.5
+ parent: 2
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 18.5,19.5
+ parent: 2
+ - uid: 476
+ components:
+ - type: Transform
+ pos: 19.5,18.5
+ parent: 2
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 23.5,18.5
+ parent: 2
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 34.5,23.5
+ parent: 2
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 34.5,22.5
+ parent: 2
+ - uid: 616
+ components:
+ - type: Transform
+ pos: 35.5,24.5
+ parent: 2
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 36.5,24.5
+ parent: 2
+ - uid: 657
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,27.5
+ parent: 2
+ - uid: 691
+ components:
+ - type: Transform
+ pos: 38.5,8.5
+ parent: 2
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 42.5,8.5
+ parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 43.5,8.5
+ parent: 2
+ - uid: 698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,7.5
+ parent: 2
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 41.5,12.5
+ parent: 2
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 41.5,16.5
+ parent: 2
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 45.5,16.5
+ parent: 2
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 45.5,12.5
+ parent: 2
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 32.5,32.5
+ parent: 2
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 36.5,34.5
+ parent: 2
+- proto: WallMiningDiagonal
+ entities:
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 2
+ - uid: 277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,22.5
+ parent: 2
+ - uid: 278
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,18.5
+ parent: 2
+ - uid: 279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,18.5
+ parent: 2
+ - uid: 362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,16.5
+ parent: 2
+ - uid: 363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,12.5
+ parent: 2
+ - uid: 481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,18.5
+ parent: 2
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 2
+ - uid: 484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,18.5
+ parent: 2
+ - uid: 555
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 2
+ - uid: 561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,16.5
+ parent: 2
+ - uid: 562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,12.5
+ parent: 2
+ - uid: 583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,30.5
+ parent: 2
+ - uid: 584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,30.5
+ parent: 2
+ - uid: 598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,12.5
+ parent: 2
+ - uid: 694
+ components:
+ - type: Transform
+ pos: 37.5,8.5
+ parent: 2
+ - uid: 697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,8.5
+ parent: 2
+- proto: WallRock
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 2
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 2
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 2
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 5.5,15.5
+ parent: 2
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 2
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 2
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 2
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 12.5,10.5
+ parent: 2
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 21.5,10.5
+ parent: 2
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 2
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 22.5,10.5
+ parent: 2
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 22.5,9.5
+ parent: 2
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 2
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 2
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 15.5,9.5
+ parent: 2
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 2
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 2
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 2
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 2
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 18.5,6.5
+ parent: 2
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 15.5,3.5
+ parent: 2
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 13.5,16.5
+ parent: 2
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 16.5,4.5
+ parent: 2
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 14.5,4.5
+ parent: 2
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 18.5,4.5
+ parent: 2
+ - uid: 104
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 2
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 2
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 2
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 19.5,6.5
+ parent: 2
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 14.5,6.5
+ parent: 2
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 2
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 16.5,0.5
+ parent: 2
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 2
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 2
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 2
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 12.5,15.5
+ parent: 2
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 15.5,0.5
+ parent: 2
+ - uid: 145
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 2
+ - uid: 147
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 2
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 33.5,10.5
+ parent: 2
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 2
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 2
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 2
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 2
+ - uid: 160
+ components:
+ - type: Transform
+ pos: 34.5,10.5
+ parent: 2
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 2
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 2
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 24.5,7.5
+ parent: 2
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 24.5,6.5
+ parent: 2
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 26.5,6.5
+ parent: 2
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 2
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 32.5,10.5
+ parent: 2
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 24.5,10.5
+ parent: 2
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 25.5,6.5
+ parent: 2
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 15.5,10.5
+ parent: 2
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 2
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 28.5,9.5
+ parent: 2
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 34.5,6.5
+ parent: 2
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 14.5,9.5
+ parent: 2
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 6.5,25.5
+ parent: 2
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 2
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 27.5,9.5
+ parent: 2
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 34.5,9.5
+ parent: 2
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 1.5,15.5
+ parent: 2
+ - uid: 235
+ components:
+ - type: Transform
+ pos: 19.5,0.5
+ parent: 2
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 2
+ - uid: 237
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 2
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 18.5,3.5
+ parent: 2
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 21.5,0.5
+ parent: 2
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 33.5,0.5
+ parent: 2
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 34.5,0.5
+ parent: 2
+ - uid: 242
+ components:
+ - type: Transform
+ pos: 34.5,4.5
+ parent: 2
+ - uid: 243
+ components:
+ - type: Transform
+ pos: 34.5,3.5
+ parent: 2
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 33.5,4.5
+ parent: 2
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 27.5,1.5
+ parent: 2
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 28.5,1.5
+ parent: 2
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 2
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 24.5,2.5
+ parent: 2
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 24.5,1.5
+ parent: 2
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 2
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 13.5,12.5
+ parent: 2
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 14.5,12.5
+ parent: 2
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 5.5,26.5
+ parent: 2
+ - uid: 324
+ components:
+ - type: Transform
+ pos: 13.5,13.5
+ parent: 2
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 22.5,12.5
+ parent: 2
+ - uid: 331
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 2
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 21.5,15.5
+ parent: 2
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 20.5,15.5
+ parent: 2
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 2
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 2
+ - uid: 351
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 2
+ - uid: 353
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 2
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 2
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 22.5,23.5
+ parent: 2
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 24.5,22.5
+ parent: 2
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 13.5,15.5
+ parent: 2
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 23.5,22.5
+ parent: 2
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 23.5,23.5
+ parent: 2
+ - uid: 494
+ components:
+ - type: Transform
+ pos: 24.5,23.5
+ parent: 2
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 24.5,24.5
+ parent: 2
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 23.5,24.5
+ parent: 2
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 22.5,24.5
+ parent: 2
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 26.5,23.5
+ parent: 2
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 26.5,24.5
+ parent: 2
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 27.5,24.5
+ parent: 2
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 32.5,18.5
+ parent: 2
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 32.5,24.5
+ parent: 2
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 26.5,18.5
+ parent: 2
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 2
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 31.5,19.5
+ parent: 2
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 2
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 29.5,19.5
+ parent: 2
+ - uid: 533
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 2
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 30.5,27.5
+ parent: 2
+ - uid: 559
+ components:
+ - type: Transform
+ pos: 24.5,27.5
+ parent: 2
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 26.5,26.5
+ parent: 2
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 24.5,30.5
+ parent: 2
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 34.5,24.5
+ parent: 2
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 40.5,18.5
+ parent: 2
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 39.5,18.5
+ parent: 2
+ - uid: 586
+ components:
+ - type: Transform
+ pos: 40.5,19.5
+ parent: 2
+ - uid: 587
+ components:
+ - type: Transform
+ pos: 39.5,19.5
+ parent: 2
+ - uid: 588
+ components:
+ - type: Transform
+ pos: 38.5,20.5
+ parent: 2
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 38.5,19.5
+ parent: 2
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 16.5,26.5
+ parent: 2
+ - uid: 632
+ components:
+ - type: Transform
+ pos: 34.5,18.5
+ parent: 2
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 16.5,30.5
+ parent: 2
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 22.5,27.5
+ parent: 2
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 20.5,26.5
+ parent: 2
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 2
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 2
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 34.5,26.5
+ parent: 2
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 32.5,29.5
+ parent: 2
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 38.5,16.5
+ parent: 2
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 37.5,16.5
+ parent: 2
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 38.5,15.5
+ parent: 2
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 38.5,12.5
+ parent: 2
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 33.5,16.5
+ parent: 2
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 32.5,16.5
+ parent: 2
+ - uid: 672
+ components:
+ - type: Transform
+ pos: 32.5,15.5
+ parent: 2
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 32.5,12.5
+ parent: 2
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 34.5,13.5
+ parent: 2
+ - uid: 682
+ components:
+ - type: Transform
+ pos: 34.5,12.5
+ parent: 2
+ - uid: 688
+ components:
+ - type: Transform
+ pos: 18.5,34.5
+ parent: 2
+ - uid: 695
+ components:
+ - type: Transform
+ pos: 37.5,7.5
+ parent: 2
+ - uid: 696
+ components:
+ - type: Transform
+ pos: 37.5,6.5
+ parent: 2
+ - uid: 705
+ components:
+ - type: Transform
+ pos: 36.5,6.5
+ parent: 2
+ - uid: 706
+ components:
+ - type: Transform
+ pos: 45.5,10.5
+ parent: 2
+ - uid: 707
+ components:
+ - type: Transform
+ pos: 46.5,9.5
+ parent: 2
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 46.5,6.5
+ parent: 2
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 46.5,10.5
+ parent: 2
+ - uid: 771
+ components:
+ - type: Transform
+ pos: 42.5,18.5
+ parent: 2
+ - uid: 772
+ components:
+ - type: Transform
+ pos: 43.5,18.5
+ parent: 2
+ - uid: 773
+ components:
+ - type: Transform
+ pos: 43.5,19.5
+ parent: 2
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 47.5,23.5
+ parent: 2
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 48.5,24.5
+ parent: 2
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 47.5,24.5
+ parent: 2
+ - uid: 777
+ components:
+ - type: Transform
+ pos: 47.5,22.5
+ parent: 2
+ - uid: 778
+ components:
+ - type: Transform
+ pos: 46.5,22.5
+ parent: 2
+ - uid: 779
+ components:
+ - type: Transform
+ pos: 44.5,20.5
+ parent: 2
+ - uid: 780
+ components:
+ - type: Transform
+ pos: 45.5,20.5
+ parent: 2
+ - uid: 781
+ components:
+ - type: Transform
+ pos: 44.5,19.5
+ parent: 2
+ - uid: 782
+ components:
+ - type: Transform
+ pos: 45.5,21.5
+ parent: 2
+ - uid: 783
+ components:
+ - type: Transform
+ pos: 44.5,21.5
+ parent: 2
+ - uid: 784
+ components:
+ - type: Transform
+ pos: 45.5,22.5
+ parent: 2
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 42.5,24.5
+ parent: 2
+ - uid: 786
+ components:
+ - type: Transform
+ pos: 42.5,23.5
+ parent: 2
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 43.5,24.5
+ parent: 2
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 48.5,18.5
+ parent: 2
+ - uid: 839
+ components:
+ - type: Transform
+ pos: 45.5,4.5
+ parent: 2
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 45.5,3.5
+ parent: 2
+ - uid: 846
+ components:
+ - type: Transform
+ pos: 40.5,1.5
+ parent: 2
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 41.5,0.5
+ parent: 2
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 40.5,0.5
+ parent: 2
+ - uid: 850
+ components:
+ - type: Transform
+ pos: 46.5,3.5
+ parent: 2
+ - uid: 851
+ components:
+ - type: Transform
+ pos: 47.5,3.5
+ parent: 2
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 2
+ - uid: 854
+ components:
+ - type: Transform
+ pos: 52.5,1.5
+ parent: 2
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 51.5,0.5
+ parent: 2
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 51.5,4.5
+ parent: 2
+ - uid: 857
+ components:
+ - type: Transform
+ pos: 36.5,4.5
+ parent: 2
+ - uid: 858
+ components:
+ - type: Transform
+ pos: 36.5,0.5
+ parent: 2
+ - uid: 859
+ components:
+ - type: Transform
+ pos: 39.5,0.5
+ parent: 2
+ - uid: 860
+ components:
+ - type: Transform
+ pos: 38.5,0.5
+ parent: 2
+ - uid: 930
+ components:
+ - type: Transform
+ pos: 50.5,3.5
+ parent: 2
+ - uid: 941
+ components:
+ - type: Transform
+ pos: 38.5,30.5
+ parent: 2
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 2
+ - uid: 969
+ components:
+ - type: Transform
+ pos: 0.5,34.5
+ parent: 2
+ - uid: 970
+ components:
+ - type: Transform
+ pos: 12.5,34.5
+ parent: 2
+ - uid: 1001
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 2
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: 6.5,16.5
+ parent: 2
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 2
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: 22.5,32.5
+ parent: 2
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 12.5,18.5
+ parent: 2
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 2
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 16.5,18.5
+ parent: 2
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 2
+ - uid: 1066
+ components:
+ - type: Transform
+ pos: 40.5,32.5
+ parent: 2
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 37.5,34.5
+ parent: 2
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: 28.5,34.5
+ parent: 2
+ - uid: 1074
+ components:
+ - type: Transform
+ pos: 36.5,32.5
+ parent: 2
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: 37.5,32.5
+ parent: 2
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: 38.5,32.5
+ parent: 2
+- proto: WaterTankFull
+ entities:
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: 38.5,34.5
+ parent: 2
+- proto: WeaponPistolCHIMP
+ entities:
+ - uid: 617
+ components:
+ - type: Transform
+ pos: 35.42519,23.6449
+ parent: 2
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 48.5,20.5
+ parent: 2
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 11.5,34.5
+ parent: 2
+- proto: WeldingFuelTankHighCapacity
+ entities:
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: 39.5,32.5
+ parent: 2
+- proto: WindowFrostedDirectional
+ entities:
+ - uid: 142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,26.5
+ parent: 2
+ - uid: 179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,29.5
+ parent: 2
+ - uid: 222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,25.5
+ parent: 2
+ - uid: 354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,27.5
+ parent: 2
+ - uid: 594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,28.5
+ parent: 2
+ - uid: 1047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,24.5
+ parent: 2
+- proto: WoodenSign
+ entities:
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 7.4139023,8.307723
+ parent: 2
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 10.363173,19.50409
+ parent: 2
+- proto: WoodenSignRight
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 3.4060895,8.378036
+ parent: 2
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 5.481395,27.427502
+ parent: 2
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 20.401012,2.5267615
+ parent: 2
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 9.592986,14.552987
+ parent: 2
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 7.494245,21.359413
+ parent: 2
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 20.46358,14.338741
+ parent: 2
+ - uid: 991
+ components:
+ - type: Transform
+ pos: 10.697649,32.293045
+ parent: 2
+- proto: WoodenSupport
+ entities:
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 12.5,9.5
+ parent: 2
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 21.5,6.5
+ parent: 2
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 31.5,10.5
+ parent: 2
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 20.5,10.5
+ parent: 2
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 25.5,10.5
+ parent: 2
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 32.5,6.5
+ parent: 2
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 2
+- proto: WoodenSupportBeam
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 2
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 2
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 2
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 2
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 38.5,9.5
+ parent: 2
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 38.5,10.5
+ parent: 2
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 43.5,9.5
+ parent: 2
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 43.5,10.5
+ parent: 2
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 4.5,34.5
+ parent: 2
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 4.5,33.5
+ parent: 2
+ - uid: 995
+ components:
+ - type: Transform
+ pos: 8.5,34.5
+ parent: 2
+ - uid: 996
+ components:
+ - type: Transform
+ pos: 8.5,33.5
+ parent: 2
+ - uid: 997
+ components:
+ - type: Transform
+ pos: 8.5,32.5
+ parent: 2
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: 20.5,32.5
+ parent: 2
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 20.5,34.5
+ parent: 2
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 23.5,34.5
+ parent: 2
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 26.5,33.5
+ parent: 2
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 26.5,34.5
+ parent: 2
+- proto: WoodenSupportWall
+ entities:
+ - uid: 928
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,3.5
+ parent: 2
+ - uid: 929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,3.5
+ parent: 2
+...
diff --git a/Resources/Maps/_NF/Dungeon/snowy_labs.yml b/Resources/Maps/_NF/Dungeon/snowy_labs.yml
new file mode 100644
index 00000000000..667b216f1db
--- /dev/null
+++ b/Resources/Maps/_NF/Dungeon/snowy_labs.yml
@@ -0,0 +1,15338 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 12: FloorAstroGrass
+ 13: FloorAstroIce
+ 17: FloorBlueCircuit
+ 29: FloorDark
+ 32: FloorDarkHerringbone
+ 36: FloorDarkPavement
+ 37: FloorDarkPavementVertical
+ 38: FloorDarkPlastic
+ 44: FloorFreezer
+ 49: FloorGrassJungle
+ 58: FloorHydro
+ 61: FloorLaundry
+ 62: FloorLino
+ 74: FloorPlanetGrass
+ 75: FloorPlastic
+ 77: FloorReinforced
+ 78: FloorReinforcedHardened
+ 80: FloorShowroom
+ 84: FloorShuttleOrange
+ 89: FloorSnow
+ 90: FloorSnowDug
+ 91: FloorSteel
+ 96: FloorSteelDiagonal
+ 101: FloorSteelMini
+ 102: FloorSteelMono
+ 105: FloorSteelPavementVertical
+ 106: FloorTechMaint
+ 107: FloorTechMaint2
+ 108: FloorTechMaint3
+ 110: FloorWhite
+ 115: FloorWhiteMono
+ 119: FloorWhitePlastic
+ 120: FloorWood
+ 121: FloorWoodLarge
+ 124: Plating
+ 128: PlatingSnow
+entities:
+- proto: ""
+ entities:
+ - uid: 1653
+ components:
+ - type: MetaData
+ - type: Transform
+ - type: Map
+ - type: PhysicsMap
+ - type: Broadphase
+ - type: OccluderTree
+ - type: MapGrid
+ chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: WQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAASwAAAAAAdwAAAAABSwAAAAAASwAAAAABdwAAAAABSwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABVAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAASwAAAAADdwAAAAABSwAAAAAASwAAAAACdwAAAAAASwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADVAAAAAAAJQAAAAAAOgAAAAAAaQAAAAAAOgAAAAAAWwAAAAAAeAAAAAABeAAAAAAAeAAAAAABeAAAAAAAeAAAAAADeAAAAAACeAAAAAABeAAAAAAAeAAAAAABeAAAAAADVAAAAAAAJQAAAAAAOgAAAAAAaQAAAAAAOgAAAAAASwAAAAACeAAAAAABeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAAAeAAAAAACeAAAAAAAeAAAAAACVAAAAAAAJQAAAAAAOgAAAAAAaQAAAAAAOgAAAAAASwAAAAABSwAAAAACSwAAAAAASwAAAAACSwAAAAABSwAAAAABSwAAAAABSwAAAAAASwAAAAACSwAAAAABSwAAAAABVAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAHQAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAVAAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: WwAAAAAAWwAAAAAAWQAAAAAAWQAAAAAAWwAAAAAAWwAAAAAAWQAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAVAAAAAAAWwAAAAABbgAAAAACbgAAAAACbgAAAAADWwAAAAABVAAAAAAAWgAAAAAAbgAAAAADbgAAAAADbgAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAbgAAAAABbgAAAAADWgAAAAAAbgAAAAADbgAAAAADVAAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACLAAAAAAALAAAAAAAdwAAAAADdwAAAAADdwAAAAADVAAAAAAAbgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAbgAAAAABVAAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADLAAAAAAAfAAAAAAAdwAAAAADbgAAAAACbgAAAAACVAAAAAAAbgAAAAABbgAAAAACWgAAAAAAbgAAAAABbgAAAAAAVAAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABLAAAAAAAfAAAAAAAdwAAAAADbgAAAAAAbgAAAAADVAAAAAAAWwAAAAAAbgAAAAADbgAAAAAAbgAAAAABWwAAAAABVAAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAADVAAAAAAAUAAAAAAAUAAAAAAALAAAAAAAVAAAAAAAZQAAAAACZQAAAAACZgAAAAAAVAAAAAAATQAAAAAAEQAAAAAATQAAAAAAVAAAAAAAagAAAAAAWwAAAAAAWwAAAAADVAAAAAAALAAAAAAAUAAAAAAALAAAAAAAVAAAAAAAZQAAAAACZQAAAAACZgAAAAACVAAAAAAATQAAAAAAEQAAAAAATQAAAAAAVAAAAAAAWwAAAAADWwAAAAACWwAAAAADVAAAAAAALAAAAAAALAAAAAAALAAAAAAAVAAAAAAAWQAAAAAAZQAAAAACZgAAAAACVAAAAAAATQAAAAAAEQAAAAAATQAAAAAAVAAAAAAAWwAAAAADWwAAAAABWwAAAAABVAAAAAAALAAAAAAAUAAAAAAALAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAZgAAAAABVAAAAAAATQAAAAAATQAAAAAATQAAAAAAVAAAAAAAWwAAAAABWwAAAAAAWwAAAAACVAAAAAAALAAAAAAALAAAAAAAUAAAAAAAVAAAAAAAZQAAAAADZQAAAAAAZgAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAbgAAAAAAbgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAbgAAAAACbgAAAAAC
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: WQAAAAAAVAAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAAWwAAAAAAVAAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAATQAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAAATQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAATQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAATQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWQAAAAAAVAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAVAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAWwAAAAAAaQAAAAAAWwAAAAAAOgAAAAAAaQAAAAAAOgAAAAAAJQAAAAAAVAAAAAAAagAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAaQAAAAAAWwAAAAAAOgAAAAAAaQAAAAAAOgAAAAAAJQAAAAAAVAAAAAAAagAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAaQAAAAAAWwAAAAAAOgAAAAAAaQAAAAAAOgAAAAAAJQAAAAAAVAAAAAAAagAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAVAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAADVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAWwAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAWwAAAAABVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAWwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAWwAAAAADVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATgAAAAAATgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAWwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAWwAAAAAAVAAAAAAAbgAAAAAAWQAAAAAATgAAAAAATgAAAAAATgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: WwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAADVAAAAAAAMQAAAAAAWwAAAAABWwAAAAABWwAAAAABMQAAAAAAVAAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAADVAAAAAAAWwAAAAAAWwAAAAAAbgAAAAAAVAAAAAAAWwAAAAAAWgAAAAAAWwAAAAAAWwAAAAADWwAAAAADVAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADVAAAAAAAWwAAAAAAWwAAAAAAbgAAAAABVAAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAACWwAAAAABVAAAAAAAWwAAAAADfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACVAAAAAAAWwAAAAAAWwAAAAAAbgAAAAABVAAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAABWwAAAAADVAAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAACVAAAAAAAWwAAAAAAWwAAAAAAbgAAAAADVAAAAAAAMQAAAAAAWwAAAAACWwAAAAAAWwAAAAABMQAAAAAAVAAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAADfAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAHQAAAAADHQAAAAACWQAAAAAAVAAAAAAAYAAAAAAAYAAAAAADYAAAAAABVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAHQAAAAADHQAAAAAAWQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAawAAAAAAVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAHQAAAAABHQAAAAAAHQAAAAADVAAAAAAAYAAAAAADYAAAAAACawAAAAAAVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACVAAAAAAAWQAAAAAAYAAAAAABawAAAAAAVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAACVAAAAAAAWQAAAAAAYAAAAAABYAAAAAADVAAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAADfAAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAADagAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ -1,2:
+ ind: -1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAA
+ version: 6
+ -1,3:
+ ind: -1,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAbgAAAAADbgAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADcwAAAAAAcwAAAAAAcwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAABVAAAAAAAWwAAAAADWwAAAAABgAAAAAAAWQAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAAAZgAAAAADZgAAAAAAZgAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAABVAAAAAAAWwAAAAACcwAAAAABcwAAAAABWQAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAABcwAAAAABcwAAAAAAcwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAABVAAAAAAAWwAAAAADWwAAAAADWwAAAAACWQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADVAAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAABVAAAAAAAWwAAAAADWwAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWwAAAAABWwAAAAADVAAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAfAAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAABVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAHQAAAAABHQAAAAAAHQAAAAACfAAAAAAAfAAAAAAAVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAWwAAAAACawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAWwAAAAADawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAWwAAAAABVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAWwAAAAACawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAWwAAAAABVAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAVAAAAAAAWwAAAAADbAAAAAACawAAAAAAbAAAAAAAawAAAAAAbAAAAAAAWwAAAAABVAAAAAAA
+ version: 6
+ 0,3:
+ ind: 0,3
+ tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: bgAAAAABfAAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACVAAAAAAAWgAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcwAAAAAAgAAAAAAAWwAAAAADVAAAAAAAbgAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWwAAAAADWwAAAAAAWwAAAAACVAAAAAAAWgAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAABVAAAAAAAWwAAAAABWwAAAAADfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAACWwAAAAADVAAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAVAAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADVAAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACVAAAAAAAWwAAAAACWwAAAAADfAAAAAAAWwAAAAADfAAAAAAAWwAAAAACWwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAADAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAADAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADAAAAAAAbgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAADAAAAAAAfAAAAAAADAAAAAAAfAAAAAAADAAAAAAADAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAADAAAAAAADAAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,3:
+ ind: 1,3
+ tiles: bgAAAAAAbgAAAAAAbgAAAAAADAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: TQAAAAAATQAAAAAAWwAAAAAAVAAAAAAAWwAAAAADWwAAAAACWwAAAAACfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAAWwAAAAAAVAAAAAAAWwAAAAACWwAAAAACWwAAAAABfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWQAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAABfAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAABWwAAAAACfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAagAAAAAAagAAAAAAagAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAHQAAAAAAWwAAAAAAagAAAAAAVAAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAAAVAAAAAAAHQAAAAAAWwAAAAAAagAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAHQAAAAAAWwAAAAAAagAAAAAAVAAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAAAVAAAAAAAagAAAAAAagAAAAAAagAAAAAAVAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAWwAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAWwAAAAAAVAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAADWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAADVAAAAAAA
+ version: 6
+ 3,0:
+ ind: 3,0
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAABWwAAAAACWwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAADWwAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAACWwAAAAAAWwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAABWwAAAAADWwAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,-1:
+ ind: 2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ 3,-1:
+ ind: 3,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,1:
+ ind: 3,1
+ tiles: JgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,2:
+ ind: 3,2
+ tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAADQAAAAAADQAAAAAADQAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAAWwAAAAAADQAAAAAADQAAAAAADQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAACWwAAAAACWgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAACWwAAAAADbgAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWQAAAAAAWwAAAAADfAAAAAAAVAAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAACVAAAAAAAWwAAAAAAWwAAAAACWQAAAAAAfAAAAAAAWwAAAAACWwAAAAAAWwAAAAACVAAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAABWwAAAAAAVAAAAAAAWwAAAAAAWQAAAAAAWQAAAAAAWwAAAAACWwAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAWwAAAAADWwAAAAACfAAAAAAAWwAAAAABfAAAAAAAWwAAAAABWwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA
+ version: 6
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 176: 40,39
+ 271: 10,35
+ 428: 17,25
+ 429: 17,26
+ 430: 17,27
+ - node:
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 778: 41,14
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 177: 46,39
+ 272: 0,35
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 425: 16,25
+ 426: 16,26
+ 427: 16,27
+ 453: 0,6
+ 454: 0,7
+ 455: 7,10
+ 456: 8,10
+ 457: 9,10
+ 846: 3,14
+ 1649: 3,7
+ 1650: 3,6
+ 1651: 34,28
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 416: 14,42
+ - node:
+ color: '#8BDA8EB4'
+ id: Box
+ decals:
+ 1162: 45,12
+ - node:
+ color: '#8BDA8EFF'
+ id: Box
+ decals:
+ 1430: 51,14
+ - node:
+ color: '#8BDABA6F'
+ id: BrickCornerOverlayNE
+ decals:
+ 1025: 22,10
+ - node:
+ color: '#8BDABA6F'
+ id: BrickCornerOverlayNW
+ decals:
+ 1024: 12,10
+ - node:
+ color: '#8BDABA6F'
+ id: BrickCornerOverlaySE
+ decals:
+ 1019: 22,6
+ - node:
+ color: '#8BDABA6F'
+ id: BrickCornerOverlaySW
+ decals:
+ 1020: 12,6
+ - node:
+ color: '#8BDABA6F'
+ id: BrickLineOverlayE
+ decals:
+ 1035: 22,9
+ 1036: 22,8
+ 1037: 22,7
+ - node:
+ color: '#8BDB9B85'
+ id: BrickLineOverlayE
+ decals:
+ 1209: 18,4
+ 1210: 18,2
+ 1211: 18,1
+ 1212: 18,0
+ - node:
+ color: '#8BDABA6F'
+ id: BrickLineOverlayN
+ decals:
+ 1026: 13,10
+ 1027: 14,10
+ 1028: 15,10
+ 1029: 16,10
+ 1030: 17,10
+ 1031: 18,10
+ 1032: 19,10
+ 1033: 20,10
+ 1034: 21,10
+ - node:
+ color: '#8BDABA6F'
+ id: BrickLineOverlayS
+ decals:
+ 1010: 13,6
+ 1011: 14,6
+ 1012: 15,6
+ 1013: 16,6
+ 1014: 17,6
+ 1015: 18,6
+ 1016: 19,6
+ 1017: 20,6
+ 1018: 21,6
+ - node:
+ color: '#8BDABA6F'
+ id: BrickLineOverlayW
+ decals:
+ 1021: 12,7
+ 1022: 12,8
+ 1023: 12,9
+ - node:
+ color: '#8BDB9B85'
+ id: BrickLineOverlayW
+ decals:
+ 1205: 34,2
+ 1206: 34,1
+ 1207: 34,0
+ 1208: 34,4
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 1408: 30,24
+ 1431: 54,16
+ 1536: 38,16
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerNe
+ decals:
+ 561: 14,16
+ 670: 22,10
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 1428: 34,27
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 1410: 28,24
+ 1434: 48,16
+ 1535: 32,16
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerNw
+ decals:
+ 562: 8,16
+ 671: 12,10
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 1426: 32,27
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 1413: 30,28
+ 1432: 54,12
+ 1537: 38,12
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerSe
+ decals:
+ 669: 22,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 1424: 34,25
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 1411: 28,28
+ 1433: 48,12
+ 1534: 32,12
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelCornerSw
+ decals:
+ 668: 12,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 1423: 32,25
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelEndN
+ decals:
+ 480: 1,7
+ 481: 4,7
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileSteelLineE
+ decals:
+ 1443: 54,15
+ 1444: 54,14
+ 1445: 54,13
+ 1538: 38,13
+ 1539: 38,14
+ 1540: 38,15
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineE
+ decals:
+ 662: 22,7
+ 663: 22,8
+ 664: 22,9
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 482: 4,6
+ 483: 1,6
+ 1358: 36,9
+ 1360: 41,9
+ 1364: 41,7
+ 1365: 36,7
+ 1398: 25,24
+ 1399: 25,25
+ 1400: 25,26
+ 1401: 25,27
+ 1402: 25,28
+ 1429: 34,26
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileSteelLineN
+ decals:
+ 1409: 29,24
+ 1438: 49,16
+ 1439: 50,16
+ 1440: 51,16
+ 1441: 52,16
+ 1442: 53,16
+ 1541: 37,16
+ 1542: 36,16
+ 1543: 35,16
+ 1544: 34,16
+ 1545: 33,16
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineN
+ decals:
+ 556: 11,16
+ 557: 10,16
+ 558: 9,16
+ 559: 12,16
+ 560: 13,16
+ 653: 21,10
+ 654: 20,10
+ 655: 18,10
+ 656: 19,10
+ 657: 17,10
+ 658: 16,10
+ 659: 15,10
+ 660: 13,10
+ 661: 14,10
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 672: 21,6
+ 673: 20,6
+ 674: 19,6
+ 675: 17,6
+ 676: 18,6
+ 677: 16,6
+ 678: 15,6
+ 679: 14,6
+ 680: 13,6
+ 1382: 37,8
+ 1383: 38,8
+ 1384: 39,8
+ 1385: 40,8
+ 1386: 42,8
+ 1387: 43,8
+ 1388: 44,8
+ 1389: 45,8
+ 1390: 45,6
+ 1391: 44,6
+ 1392: 43,6
+ 1393: 42,6
+ 1394: 40,6
+ 1395: 39,6
+ 1396: 38,6
+ 1397: 37,6
+ 1427: 33,27
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileSteelLineS
+ decals:
+ 1412: 29,28
+ 1446: 53,12
+ 1447: 52,12
+ 1448: 51,12
+ 1449: 50,12
+ 1450: 49,12
+ 1546: 33,12
+ 1547: 34,12
+ 1548: 35,12
+ 1549: 36,12
+ 1550: 37,12
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineS
+ decals:
+ 644: 21,6
+ 645: 20,6
+ 646: 18,6
+ 647: 19,6
+ 648: 17,6
+ 649: 16,6
+ 650: 15,6
+ 651: 14,6
+ 652: 13,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineS
+ decals:
+ 681: 21,10
+ 682: 20,10
+ 683: 19,10
+ 684: 18,10
+ 685: 17,10
+ 686: 16,10
+ 687: 15,10
+ 688: 14,10
+ 689: 13,10
+ 1366: 37,8
+ 1367: 38,8
+ 1368: 39,8
+ 1369: 40,8
+ 1370: 42,8
+ 1371: 43,8
+ 1372: 44,8
+ 1373: 45,8
+ 1374: 45,10
+ 1375: 44,10
+ 1376: 43,10
+ 1377: 42,10
+ 1378: 40,10
+ 1379: 39,10
+ 1380: 38,10
+ 1381: 37,10
+ 1422: 33,25
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileSteelLineW
+ decals:
+ 1435: 48,13
+ 1436: 48,14
+ 1437: 48,15
+ 1529: 32,15
+ 1530: 32,14
+ 1531: 32,14
+ 1532: 32,12
+ 1533: 32,13
+ - node:
+ color: '#D381C996'
+ id: BrickTileSteelLineW
+ decals:
+ 553: 8,13
+ 554: 8,14
+ 555: 8,15
+ 665: 12,7
+ 666: 12,8
+ 667: 12,9
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 484: 4,6
+ 485: 1,6
+ 1359: 41,9
+ 1361: 46,9
+ 1362: 46,7
+ 1363: 41,7
+ 1403: 25,24
+ 1404: 25,25
+ 1405: 25,26
+ 1406: 25,27
+ 1407: 25,28
+ 1425: 32,26
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteBox
+ decals:
+ 1143: 32,20
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 1136: 34,22
+ 1147: 33,21
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 862: 14,16
+ 1340: 46,10
+ 1414: 30,27
+ 1467: 15,4
+ 1468: 16,3
+ 1595: 6,48
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 845: 6,28
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 10: 6,40
+ 27: 14,40
+ 54: 22,40
+ 99: 30,40
+ 100: 46,40
+ 244: 10,36
+ 284: 22,36
+ 320: 33,36
+ 365: 26,32
+ 591: 38,4
+ 594: 54,4
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 1130: 30,22
+ 1146: 31,21
+ 1155: 0,16
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 868: 8,16
+ 1330: 36,10
+ 1415: 28,27
+ 1451: 1,4
+ 1452: 0,3
+ 1594: 0,48
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 513: 24,22
+ 836: 4,28
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 13: 0,40
+ 28: 8,40
+ 53: 16,40
+ 96: 40,40
+ 97: 32,40
+ 98: 24,40
+ 246: 0,36
+ 283: 12,36
+ 319: 25,36
+ 364: 18,32
+ 589: 52,4
+ 590: 36,4
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 1135: 34,18
+ 1149: 33,19
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 858: 14,12
+ 1344: 46,6
+ 1417: 30,25
+ 1469: 16,1
+ 1470: 15,0
+ 1597: 6,42
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 841: 6,24
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 11: 6,38
+ 26: 14,38
+ 52: 22,38
+ 94: 30,38
+ 95: 46,38
+ 243: 10,34
+ 289: 22,34
+ 318: 33,34
+ 366: 26,30
+ 587: 38,0
+ 588: 54,0
+ 639: 46,0
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 1134: 30,18
+ 1145: 31,19
+ 1159: 0,12
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 872: 8,12
+ 1354: 36,6
+ 1418: 28,25
+ 1471: 1,0
+ 1472: 0,1
+ 1596: 0,42
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 517: 24,18
+ 840: 4,24
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 12: 0,38
+ 29: 8,38
+ 55: 16,38
+ 101: 40,38
+ 102: 32,38
+ 103: 24,38
+ 245: 0,34
+ 290: 12,34
+ 321: 25,34
+ 367: 18,30
+ 592: 36,0
+ 593: 52,0
+ 640: 44,0
+ - node:
+ color: '#8BDABAFF'
+ id: BrickTileWhiteEndE
+ decals:
+ 909: 9,39
+ 929: 26,39
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteEndE
+ decals:
+ 47: 9,39
+ - node:
+ color: '#8BDABAFF'
+ id: BrickTileWhiteEndW
+ decals:
+ 910: 13,39
+ 930: 28,39
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteEndW
+ decals:
+ 46: 13,39
+ 130: 28,39
+ - node:
+ color: '#8BDA8E88'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 1642: 0,42
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 1113: 21,21
+ 1123: 9,21
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 1475: 15,3
+ - node:
+ color: '#8BDABAFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 905: 9,38
+ 934: 25,39
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 852: 1,12
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 51: 9,38
+ 133: 25,39
+ 138: 25,38
+ 505: 21,21
+ - node:
+ color: '#D4D4D4FF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 1524: 32,14
+ 1525: 32,12
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 638: 38,2
+ - node:
+ color: '#8BDA8E88'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 1641: 6,42
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 1114: 19,21
+ 1124: 7,21
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 1453: 1,3
+ - node:
+ color: '#8BDABAFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 904: 13,38
+ 933: 29,39
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 50: 13,38
+ 134: 29,39
+ 137: 29,38
+ 504: 19,21
+ - node:
+ color: '#D4D4D4FF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 1522: 38,12
+ 1523: 38,14
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 637: 52,2
+ - node:
+ color: '#8BDA8E88'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 1640: 0,48
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 1112: 21,19
+ 1126: 9,19
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 1474: 15,1
+ - node:
+ color: '#8BDABAFF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 908: 9,40
+ 932: 25,39
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 49: 9,40
+ 132: 25,39
+ 136: 25,40
+ 506: 21,19
+ - node:
+ color: '#D4D4D4FF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 1518: 32,16
+ 1519: 32,14
+ - node:
+ color: '#8BDA8E88'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 1639: 6,48
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 1125: 7,19
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 1473: 1,1
+ - node:
+ color: '#8BDABAFF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 903: 13,40
+ 931: 29,39
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 48: 13,40
+ 131: 29,39
+ 135: 29,40
+ - node:
+ color: '#D4D4D4FF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 1520: 38,16
+ 1521: 38,14
+ - node:
+ color: '#8BDA8E88'
+ id: BrickTileWhiteLineE
+ decals:
+ 1619: 0,47
+ 1620: 0,46
+ 1621: 0,45
+ 1622: 0,44
+ 1623: 0,43
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteLineE
+ decals:
+ 1106: 21,22
+ 1107: 21,18
+ 1120: 9,18
+ 1122: 9,22
+ 1137: 34,21
+ 1138: 34,20
+ 1139: 34,19
+ 1150: 33,20
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 859: 14,13
+ 860: 14,14
+ 861: 14,15
+ 1341: 46,9
+ 1342: 46,8
+ 1343: 46,7
+ 1416: 30,26
+ 1476: 16,2
+ 1614: 6,47
+ 1615: 6,46
+ 1616: 6,45
+ 1617: 6,44
+ 1618: 6,43
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteLineE
+ decals:
+ 847: 1,13
+ 848: 1,14
+ 849: 1,15
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineE
+ decals:
+ 498: 21,22
+ 499: 21,18
+ 730: 18,0
+ 731: 18,1
+ 732: 18,2
+ 733: 18,4
+ - node:
+ color: '#D4D4D4FF'
+ id: BrickTileWhiteLineE
+ decals:
+ 1502: 32,13
+ 1504: 32,15
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineE
+ decals:
+ 507: 28,19
+ 508: 28,20
+ 509: 28,21
+ 842: 6,25
+ 843: 6,26
+ 844: 6,27
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 24: 6,39
+ 39: 14,39
+ 61: 22,39
+ 123: 30,39
+ 124: 38,39
+ 125: 46,39
+ 247: 10,35
+ 292: 22,35
+ 322: 33,35
+ 375: 26,31
+ 598: 38,1
+ 599: 38,3
+ 600: 54,1
+ 601: 54,2
+ 602: 54,3
+ 642: 46,1
+ 1561: 7,19
+ 1562: 7,21
+ 1564: 6,20
+ - node:
+ color: '#8BDA8E88'
+ id: BrickTileWhiteLineN
+ decals:
+ 1624: 1,42
+ 1625: 2,42
+ 1626: 3,42
+ 1627: 4,42
+ 1628: 5,42
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteLineN
+ decals:
+ 1108: 18,21
+ 1109: 22,21
+ 1115: 6,21
+ 1121: 10,21
+ 1127: 31,22
+ 1128: 32,22
+ 1129: 33,22
+ 1148: 32,21
+ 1156: 1,16
+ 1157: 4,16
+ 1158: 5,16
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 863: 13,16
+ 864: 12,16
+ 865: 11,16
+ 866: 10,16
+ 867: 9,16
+ 1331: 37,10
+ 1332: 38,10
+ 1333: 39,10
+ 1334: 40,10
+ 1335: 41,10
+ 1336: 42,10
+ 1337: 43,10
+ 1338: 44,10
+ 1339: 45,10
+ 1454: 2,4
+ 1455: 3,4
+ 1456: 4,4
+ 1457: 5,4
+ 1458: 6,4
+ 1459: 7,4
+ 1460: 8,4
+ 1461: 9,4
+ 1462: 10,4
+ 1463: 11,4
+ 1464: 12,4
+ 1465: 13,4
+ 1466: 14,4
+ 1609: 1,48
+ 1610: 2,48
+ 1611: 3,48
+ 1612: 4,48
+ 1613: 5,48
+ - node:
+ color: '#8BDABAFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 898: 11,38
+ 899: 12,38
+ 906: 10,38
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteLineN
+ decals:
+ 706: 21,6
+ 707: 19,6
+ 708: 13,6
+ 709: 15,6
+ 851: 2,12
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineN
+ decals:
+ 41: 12,38
+ 42: 11,38
+ 293: 21,34
+ 294: 20,34
+ 295: 19,34
+ 296: 13,34
+ 496: 18,21
+ 497: 22,21
+ - node:
+ color: '#D4D4D4FF'
+ id: BrickTileWhiteLineN
+ decals:
+ 1492: 34,12
+ 1493: 35,12
+ 1494: 36,12
+ 1498: 33,12
+ 1499: 37,12
+ 1506: 37,14
+ 1507: 36,14
+ 1508: 36,14
+ 1509: 34,14
+ 1510: 35,14
+ 1511: 33,14
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineN
+ decals:
+ 510: 27,22
+ 511: 26,22
+ 512: 25,22
+ 755: 31,9
+ 756: 32,9
+ 761: 27,9
+ 762: 26,9
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 14: 1,40
+ 15: 2,40
+ 16: 5,40
+ 17: 4,40
+ 18: 3,40
+ 30: 9,40
+ 31: 10,40
+ 32: 11,40
+ 33: 12,40
+ 34: 13,40
+ 63: 17,40
+ 64: 19,40
+ 65: 18,40
+ 66: 20,40
+ 67: 21,40
+ 104: 29,40
+ 105: 35,40
+ 106: 36,40
+ 107: 41,40
+ 108: 42,40
+ 109: 43,40
+ 110: 44,40
+ 111: 45,40
+ 129: 25,40
+ 231: 9,36
+ 232: 8,36
+ 233: 7,36
+ 234: 3,36
+ 235: 1,36
+ 236: 2,36
+ 279: 14,36
+ 280: 13,36
+ 281: 20,36
+ 282: 21,36
+ 331: 26,36
+ 332: 27,36
+ 333: 28,36
+ 334: 29,36
+ 335: 30,36
+ 336: 31,36
+ 337: 32,36
+ 357: 25,32
+ 358: 24,32
+ 359: 23,32
+ 360: 22,32
+ 361: 21,32
+ 362: 20,32
+ 363: 19,32
+ 595: 53,4
+ 596: 37,4
+ 627: 51,2
+ 628: 50,2
+ 629: 48,2
+ 630: 47,2
+ 631: 46,2
+ 632: 44,2
+ 633: 42,2
+ 634: 43,2
+ 635: 40,2
+ 636: 39,2
+ 939: 29,40
+ 940: 25,40
+ 1560: 8,18
+ 1565: 7,19
+ 1566: 9,19
+ - node:
+ color: '#8BDA8E88'
+ id: BrickTileWhiteLineS
+ decals:
+ 1634: 5,48
+ 1635: 4,48
+ 1636: 3,48
+ 1637: 2,48
+ 1638: 1,48
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteLineS
+ decals:
+ 1110: 22,19
+ 1111: 18,19
+ 1118: 6,19
+ 1119: 10,19
+ 1140: 33,18
+ 1141: 32,18
+ 1142: 31,18
+ 1144: 32,19
+ 1160: 1,12
+ 1161: 2,12
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 853: 10,12
+ 854: 11,12
+ 855: 12,12
+ 856: 13,12
+ 857: 9,12
+ 1345: 45,6
+ 1346: 44,6
+ 1347: 43,6
+ 1348: 42,6
+ 1349: 41,6
+ 1350: 40,6
+ 1351: 39,6
+ 1352: 38,6
+ 1353: 37,6
+ 1477: 14,0
+ 1478: 13,0
+ 1479: 12,0
+ 1480: 11,0
+ 1481: 10,0
+ 1482: 9,0
+ 1483: 7,0
+ 1484: 7,0
+ 1485: 8,0
+ 1486: 6,0
+ 1487: 5,0
+ 1488: 4,0
+ 1489: 3,0
+ 1490: 2,0
+ 1598: 1,42
+ 1599: 2,42
+ 1600: 4,42
+ 1601: 4,42
+ 1602: 3,42
+ 1603: 5,42
+ - node:
+ color: '#8BDABAFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 900: 10,40
+ 901: 11,40
+ 902: 12,40
+ - node:
+ color: '#9FED5896'
+ id: BrickTileWhiteLineS
+ decals:
+ 702: 21,10
+ 703: 19,10
+ 704: 15,10
+ 705: 13,10
+ 850: 4,16
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineS
+ decals:
+ 43: 12,40
+ 44: 11,40
+ 45: 10,40
+ 297: 21,36
+ 298: 20,36
+ 299: 14,36
+ 300: 13,36
+ 500: 22,19
+ 501: 18,19
+ - node:
+ color: '#D4D4D4FF'
+ id: BrickTileWhiteLineS
+ decals:
+ 1495: 34,14
+ 1496: 35,14
+ 1497: 36,14
+ 1500: 37,14
+ 1501: 33,14
+ 1512: 33,16
+ 1513: 34,16
+ 1514: 34,16
+ 1515: 35,16
+ 1516: 36,16
+ 1517: 37,16
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineS
+ decals:
+ 518: 25,18
+ 519: 26,18
+ 520: 27,18
+ 757: 32,7
+ 758: 31,7
+ 759: 27,7
+ 760: 26,7
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 19: 5,38
+ 20: 4,38
+ 21: 3,38
+ 22: 2,38
+ 23: 1,38
+ 35: 13,38
+ 36: 12,38
+ 37: 11,38
+ 38: 9,38
+ 56: 21,38
+ 57: 20,38
+ 58: 19,38
+ 59: 18,38
+ 60: 17,38
+ 112: 45,38
+ 113: 44,38
+ 114: 43,38
+ 115: 42,38
+ 116: 41,38
+ 117: 37,38
+ 118: 34,38
+ 119: 35,38
+ 120: 33,38
+ 121: 29,38
+ 122: 25,38
+ 237: 9,34
+ 238: 7,34
+ 239: 8,34
+ 240: 3,34
+ 241: 2,34
+ 242: 1,34
+ 285: 21,34
+ 286: 20,34
+ 287: 19,34
+ 288: 13,34
+ 324: 26,34
+ 325: 27,34
+ 326: 28,34
+ 327: 29,34
+ 328: 30,34
+ 329: 31,34
+ 330: 32,34
+ 368: 19,30
+ 369: 20,30
+ 370: 21,30
+ 371: 22,30
+ 372: 23,30
+ 373: 24,30
+ 374: 25,30
+ 597: 37,0
+ 603: 53,0
+ 641: 45,0
+ 907: 10,38
+ 941: 25,38
+ 942: 29,38
+ 1563: 7,21
+ 1569: 9,21
+ 1570: 8,22
+ - node:
+ color: '#8BDA8E88'
+ id: BrickTileWhiteLineW
+ decals:
+ 1629: 6,43
+ 1630: 6,44
+ 1631: 6,45
+ 1632: 6,46
+ 1633: 6,47
+ - node:
+ color: '#8BDA8EB4'
+ id: BrickTileWhiteLineW
+ decals:
+ 1104: 19,18
+ 1105: 19,22
+ 1116: 7,22
+ 1117: 7,18
+ 1131: 30,21
+ 1132: 30,20
+ 1133: 30,19
+ 1151: 31,20
+ 1152: 0,13
+ 1153: 0,14
+ 1154: 0,15
+ - node:
+ color: '#8BDA8EFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 869: 8,14
+ 870: 8,15
+ 871: 8,13
+ 1355: 36,7
+ 1356: 36,8
+ 1357: 36,9
+ 1419: 28,26
+ 1491: 0,2
+ 1526: 32,14
+ 1527: 32,13
+ 1528: 32,15
+ 1604: 0,43
+ 1605: 0,44
+ 1606: 0,45
+ 1607: 0,46
+ 1608: 0,47
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineW
+ decals:
+ 502: 19,18
+ 503: 19,22
+ 734: 34,0
+ 735: 34,1
+ 736: 34,2
+ 737: 34,4
+ - node:
+ color: '#D4D4D4FF'
+ id: BrickTileWhiteLineW
+ decals:
+ 1503: 38,13
+ 1505: 38,15
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineW
+ decals:
+ 514: 24,21
+ 515: 24,20
+ 516: 24,19
+ 837: 4,27
+ 838: 4,26
+ 839: 4,25
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 25: 0,39
+ 40: 8,39
+ 62: 16,39
+ 126: 40,39
+ 127: 32,39
+ 128: 24,39
+ 248: 0,35
+ 291: 12,35
+ 323: 25,35
+ 376: 18,31
+ 604: 52,1
+ 605: 52,3
+ 606: 36,1
+ 607: 36,2
+ 608: 36,3
+ 643: 44,1
+ 1567: 9,19
+ 1568: 10,20
+ 1571: 9,21
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 415: 11,42
+ - node:
+ color: '#8BDABAFF'
+ id: CheckerNESW
+ decals:
+ 911: 17,39
+ 912: 18,39
+ 913: 19,39
+ 914: 20,39
+ 915: 21,39
+ 1073: 20,20
+ 1074: 21,20
+ 1075: 20,21
+ 1076: 20,19
+ 1077: 19,20
+ - node:
+ color: '#D381C996'
+ id: CheckerNESW
+ decals:
+ 68: 17,39
+ 69: 18,39
+ 70: 19,39
+ 71: 20,39
+ 72: 21,39
+ 338: 31,35
+ 339: 30,35
+ 340: 29,35
+ 341: 28,35
+ 342: 27,35
+ 490: 19,20
+ 491: 20,21
+ 492: 20,20
+ 493: 21,20
+ 494: 20,19
+ - node:
+ color: '#EFB34196'
+ id: CheckerNESW
+ decals:
+ 182: 8,48
+ - node:
+ color: '#8BDABAFF'
+ id: CheckerNWSE
+ decals:
+ 883: 3,39
+ 884: 2,39
+ 885: 1,39
+ 886: 4,39
+ 887: 5,39
+ 952: 45,39
+ 953: 44,39
+ 954: 43,39
+ 955: 42,39
+ 956: 41,39
+ - node:
+ color: '#D381C996'
+ id: CheckerNWSE
+ decals:
+ 161: 45,39
+ 162: 44,39
+ 163: 43,39
+ 164: 42,39
+ 165: 41,39
+ 249: 1,35
+ 250: 2,35
+ 251: 3,35
+ 252: 7,35
+ 253: 8,35
+ 254: 9,35
+ 396: 16,30
+ 397: 16,31
+ 398: 16,32
+ 399: 15,32
+ 400: 15,31
+ 401: 15,30
+ 402: 14,30
+ 403: 14,31
+ 404: 14,32
+ 609: 37,1
+ 610: 37,2
+ 611: 37,3
+ 612: 53,1
+ 613: 53,2
+ 614: 53,3
+ - node:
+ color: '#EFB34196'
+ id: CheckerNWSE
+ decals:
+ 183: 14,48
+ 830: 5,27
+ 831: 5,26
+ 832: 5,25
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 211: 13,47
+ 212: 11,47
+ 213: 9,47
+ 214: 12,43
+ 215: 11,43
+ 216: 10,43
+ 431: 4,22
+ 432: 3,22
+ 544: 11,13
+ 724: 24,2
+ 725: 20,2
+ 751: 33,7
+ 752: 33,9
+ 753: 25,7
+ 754: 25,9
+ 775: 40,16
+ 776: 41,15
+ 777: 43,16
+ - node:
+ color: '#8BDB9BFF'
+ id: DeliveryGreyscale
+ decals:
+ 1328: 34,35
+ 1329: 24,35
+ - node:
+ color: '#79DA8EA1'
+ id: DiagonalCheckerBOverlay
+ decals:
+ 801: 20,24
+ 802: 20,25
+ 803: 20,26
+ 804: 20,27
+ 805: 20,28
+ 806: 21,28
+ 807: 22,28
+ 808: 21,27
+ 809: 21,26
+ 810: 21,25
+ 811: 21,24
+ 812: 22,24
+ - node:
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 982: 16,48
+ 983: 16,48
+ 984: 17,48
+ 985: 16,47
+ 986: 16,46
+ 987: 16,45
+ 988: 17,44
+ 989: 17,42
+ 990: 19,42
+ 991: 21,42
+ 992: 21,47
+ 993: 21,47
+ 994: 21,47
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 156: 38,38
+ 157: 38,40
+ 158: 37,40
+ 159: 34,40
+ 160: 36,38
+ 313: 15,34
+ 314: 19,35
+ 315: 17,35
+ 316: 16,34
+ 317: 18,36
+ 771: 44,12
+ 772: 44,15
+ 773: 42,16
+ 774: 46,14
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 995: 20,47
+ 996: 20,47
+ 997: 16,48
+ 998: 16,46
+ 999: 16,45
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 83: 17,38
+ 84: 17,39
+ 85: 18,39
+ 86: 21,38
+ 88: 16,40
+ 89: 20,39
+ 90: 13,38
+ 91: 8,40
+ 92: 6,39
+ 93: 22,40
+ 148: 29,39
+ 149: 29,40
+ 150: 24,39
+ 151: 30,38
+ 152: 33,39
+ 153: 37,39
+ 154: 37,38
+ 155: 38,39
+ 218: 10,44
+ 219: 9,45
+ 220: 8,46
+ 221: 8,47
+ 222: 13,48
+ 223: 14,44
+ 224: 13,42
+ 226: 10,42
+ 228: 8,44
+ 229: 13,45
+ 301: 22,35
+ 302: 22,34
+ 303: 21,34
+ 304: 12,36
+ 305: 13,36
+ 306: 12,35
+ 307: 13,34
+ 309: 12,34
+ 310: 19,34
+ 311: 15,34
+ 312: 19,35
+ 393: 8,31
+ 394: 10,32
+ 395: 11,32
+ 405: 15,31
+ 406: 16,30
+ 407: 14,31
+ 408: 15,32
+ 409: 19,31
+ 410: 20,30
+ 411: 21,30
+ 412: 24,30
+ 413: 26,31
+ 414: 8,28
+ 527: 21,18
+ 528: 22,19
+ 529: 21,19
+ 530: 19,18
+ 531: 18,21
+ 532: 25,18
+ 533: 24,19
+ 534: 28,20
+ 535: 26,22
+ 536: 14,22
+ 537: 15,18
+ 538: 16,20
+ 539: 4,20
+ 540: 2,22
+ 541: 2,18
+ 542: 0,21
+ 543: 0,19
+ 767: 30,15
+ 768: 28,15
+ 769: 27,14
+ 770: 33,12
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 1000: 16,42
+ 1001: 16,42
+ 1002: 18,42
+ 1003: 20,43
+ 1004: 22,44
+ 1005: 18,48
+ 1006: 22,47
+ 1007: 16,45
+ 1008: 19,42
+ 1009: 20,43
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 87: 17,39
+ 225: 11,42
+ 227: 8,45
+ 308: 12,35
+ - node:
+ color: '#8BDABA82'
+ id: FullTileOverlayGreyscale
+ decals:
+ 926: 27,38
+ 927: 27,39
+ 928: 27,40
+ - node:
+ color: '#8BDABAFF'
+ id: FullTileOverlayGreyscale
+ decals:
+ 943: 33,39
+ 944: 36,39
+ 945: 37,39
+ - node:
+ color: '#9FED5896'
+ id: FullTileOverlayGreyscale
+ decals:
+ 690: 21,7
+ 691: 21,8
+ 692: 21,9
+ 693: 19,7
+ 694: 19,8
+ 695: 19,9
+ 696: 15,7
+ 697: 15,8
+ 698: 15,9
+ 699: 13,7
+ 700: 13,8
+ 701: 13,9
+ - node:
+ color: '#D381C996'
+ id: FullTileOverlayGreyscale
+ decals:
+ 139: 36,39
+ 140: 33,39
+ 141: 37,39
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 764: 28,16
+ 765: 29,16
+ 1042: 27,16
+ 1043: 26,16
+ 1044: 25,16
+ - node:
+ color: '#8BDA8E9B'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1190: 30,2
+ 1191: 29,2
+ 1192: 31,2
+ 1193: 27,2
+ 1194: 26,2
+ 1195: 22,2
+ 1196: 33,2
+ - node:
+ color: '#8BDA8EB4'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1095: 13,22
+ 1096: 15,22
+ 1097: 14,22
+ - node:
+ color: '#8BDA8EFF'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1179: 24,4
+ 1180: 23,4
+ 1181: 22,4
+ 1182: 21,4
+ 1183: 20,4
+ 1184: 27,4
+ 1185: 28,4
+ 1186: 29,4
+ 1187: 30,4
+ 1188: 31,4
+ 1189: 32,4
+ - node:
+ color: '#8BDABAFF'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 946: 33,38
+ 947: 34,38
+ 948: 35,38
+ 951: 37,38
+ - node:
+ color: '#8BDB8E99'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1197: 25,4
+ 1198: 25,4
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 144: 37,38
+ 145: 35,38
+ 146: 34,38
+ 147: 33,38
+ 441: 13,22
+ 442: 14,22
+ 443: 15,22
+ 740: 27,4
+ 741: 28,4
+ 742: 24,4
+ 743: 29,4
+ 744: 30,4
+ 745: 31,4
+ 746: 32,4
+ 747: 23,4
+ 748: 22,4
+ 749: 21,4
+ 750: 20,4
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1040: 29,12
+ 1041: 28,12
+ - node:
+ color: '#8BDA8EB4'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1098: 15,18
+ 1099: 14,18
+ 1100: 13,18
+ - node:
+ color: '#8BDA8EFF'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1164: 19,3
+ 1165: 20,3
+ 1166: 21,3
+ 1167: 22,3
+ 1168: 24,3
+ 1169: 23,3
+ 1170: 25,3
+ 1171: 26,3
+ 1172: 27,3
+ 1173: 28,3
+ 1174: 29,3
+ 1175: 30,3
+ 1176: 31,3
+ 1177: 32,3
+ 1178: 33,3
+ - node:
+ color: '#8BDABAFF'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 949: 35,40
+ 950: 36,40
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 142: 36,40
+ 143: 35,40
+ 438: 13,18
+ 439: 14,18
+ 440: 15,18
+ 710: 19,3
+ 711: 20,3
+ 712: 21,3
+ 713: 22,3
+ 714: 23,3
+ 715: 24,3
+ 716: 26,3
+ 717: 25,3
+ 718: 28,3
+ 719: 29,3
+ 720: 30,3
+ 721: 31,3
+ 722: 32,3
+ 723: 33,3
+ 1163: 27,3
+ - node:
+ color: '#4B709CFF'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1084: 15,20
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1045: 24,15
+ - node:
+ color: '#8BDA8EB4'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1092: 12,19
+ 1093: 12,20
+ 1094: 12,21
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 447: 12,19
+ 448: 12,20
+ 449: 12,21
+ - node:
+ color: '#4B709CFF'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 1079: 13,20
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 766: 30,15
+ 1038: 30,14
+ 1039: 30,13
+ - node:
+ color: '#8BDA8EB4'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 1089: 16,19
+ 1090: 16,20
+ 1091: 16,21
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 444: 16,19
+ 445: 16,20
+ 446: 16,21
+ - node:
+ color: '#8BDA8EFF'
+ id: MiniTileWhiteCornerNe
+ decals:
+ 791: 13,28
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteCornerNe
+ decals:
+ 419: 13,28
+ - node:
+ color: '#8BDA8EFF'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 792: 12,28
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 420: 12,28
+ - node:
+ color: '#8BDA8EFF'
+ id: MiniTileWhiteCornerSe
+ decals:
+ 787: 13,24
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteCornerSe
+ decals:
+ 424: 13,24
+ - node:
+ color: '#8BDA8EFF'
+ id: MiniTileWhiteCornerSw
+ decals:
+ 795: 12,24
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteCornerSw
+ decals:
+ 423: 12,24
+ - node:
+ color: '#8BDA8EFF'
+ id: MiniTileWhiteLineE
+ decals:
+ 786: 13,24
+ 788: 13,25
+ 789: 13,25
+ 790: 13,26
+ - node:
+ color: '#8BDABAFF'
+ id: MiniTileWhiteLineE
+ decals:
+ 935: 25,38
+ 937: 25,40
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteLineE
+ decals:
+ 417: 13,25
+ 418: 13,26
+ - node:
+ color: '#8BDA8EFF'
+ id: MiniTileWhiteLineW
+ decals:
+ 793: 12,27
+ 794: 12,25
+ - node:
+ color: '#8BDABAFF'
+ id: MiniTileWhiteLineW
+ decals:
+ 936: 29,38
+ 938: 29,40
+ - node:
+ color: '#D381C996'
+ id: MiniTileWhiteLineW
+ decals:
+ 421: 12,27
+ 422: 12,25
+ - node:
+ color: '#79DA8E6F'
+ id: MonoOverlay
+ decals:
+ 796: 14,24
+ 797: 14,25
+ 798: 14,26
+ 799: 14,27
+ 800: 14,28
+ - node:
+ color: '#8BDB9BFF'
+ id: MonoOverlay
+ decals:
+ 1271: 4,34
+ 1272: 4,36
+ 1273: 6,36
+ 1274: 6,34
+ - node:
+ color: '#D381C996'
+ id: MonoOverlay
+ decals:
+ 267: 4,34
+ 268: 6,34
+ 269: 4,36
+ 270: 6,36
+ - node:
+ color: '#4B709CFF'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1083: 15,19
+ 1085: 14,20
+ - node:
+ color: '#8BDABAFF'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 893: 1,38
+ 894: 2,38
+ 895: 3,38
+ 896: 4,38
+ 897: 5,38
+ 957: 41,38
+ 958: 42,38
+ 959: 42,38
+ 960: 43,38
+ 961: 44,38
+ 962: 45,38
+ 968: 8,44
+ 969: 8,45
+ 970: 8,46
+ 971: 8,47
+ 972: 8,48
+ 973: 9,48
+ 974: 10,48
+ 1049: 16,16
+ 1050: 17,16
+ 1051: 18,16
+ 1052: 19,16
+ 1053: 20,16
+ 1054: 21,16
+ 1055: 22,16
+ 1056: 16,15
+ 1057: 16,14
+ 1058: 16,13
+ 1059: 16,12
+ - node:
+ color: '#8BDB9BFF'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1219: 53,1
+ 1220: 53,2
+ 1221: 53,3
+ 1222: 54,3
+ 1223: 54,2
+ 1224: 54,1
+ 1225: 38,2
+ 1226: 38,1
+ 1227: 38,3
+ 1228: 37,3
+ 1229: 37,2
+ 1230: 37,1
+ 1262: 16,32
+ 1263: 16,31
+ 1264: 16,30
+ 1265: 15,30
+ 1266: 15,31
+ 1267: 15,32
+ 1268: 14,32
+ 1269: 14,31
+ 1270: 14,30
+ 1275: 1,35
+ 1276: 2,35
+ 1277: 3,35
+ 1278: 3,34
+ 1279: 2,34
+ 1280: 1,34
+ 1281: 7,34
+ 1282: 7,35
+ 1283: 8,35
+ 1284: 8,34
+ 1285: 9,34
+ 1286: 9,35
+ - node:
+ color: '#9EDA8E28'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1572: 4,45
+ 1575: 4,44
+ 1576: 4,46
+ 1579: 3,45
+ 1585: 2,46
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 5: 5,38
+ 6: 4,38
+ 7: 3,38
+ 8: 2,38
+ 9: 1,38
+ 166: 45,38
+ 167: 44,38
+ 168: 43,38
+ 169: 42,38
+ 170: 41,38
+ 192: 8,44
+ 193: 8,45
+ 194: 8,46
+ 195: 8,47
+ 196: 8,48
+ 197: 9,48
+ 198: 10,48
+ 261: 9,34
+ 262: 8,34
+ 263: 7,34
+ 264: 3,34
+ 265: 2,34
+ 266: 1,34
+ 570: 22,16
+ 571: 21,16
+ 572: 20,16
+ 573: 19,16
+ 574: 18,16
+ 575: 17,16
+ 576: 16,16
+ 577: 16,15
+ 578: 16,14
+ 579: 16,13
+ 580: 16,12
+ 615: 38,1
+ 616: 38,3
+ 622: 54,1
+ 623: 54,2
+ 624: 54,3
+ 625: 38,2
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 190: 13,48
+ 191: 12,48
+ - node:
+ color: '#4B709CFF'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1081: 13,21
+ 1086: 14,20
+ - node:
+ color: '#8BDA8E5D'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1592: 4,44
+ 1593: 2,44
+ - node:
+ color: '#8BDABAFF'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 888: 5,40
+ 889: 4,40
+ 890: 3,40
+ 891: 2,40
+ 892: 1,40
+ 963: 45,40
+ 964: 44,40
+ 965: 43,40
+ 966: 42,40
+ 967: 41,40
+ 1060: 16,12
+ 1061: 17,12
+ 1062: 18,12
+ 1063: 19,12
+ 1064: 20,12
+ 1065: 21,12
+ 1066: 22,12
+ 1067: 22,13
+ 1068: 22,14
+ 1069: 22,15
+ 1070: 22,16
+ - node:
+ color: '#8BDB9BFF'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1213: 52,2
+ 1214: 52,1
+ 1215: 52,3
+ 1216: 53,3
+ 1217: 53,2
+ 1218: 53,1
+ 1231: 37,3
+ 1232: 36,3
+ 1233: 36,2
+ 1234: 37,2
+ 1235: 37,1
+ 1236: 36,1
+ 1237: 18,32
+ 1238: 19,32
+ 1239: 20,32
+ 1240: 21,32
+ 1241: 22,32
+ 1242: 24,32
+ 1243: 23,32
+ 1244: 25,32
+ 1253: 14,30
+ 1254: 14,31
+ 1255: 14,32
+ 1256: 15,32
+ 1257: 15,31
+ 1258: 15,30
+ 1259: 16,30
+ 1260: 16,31
+ 1261: 16,32
+ 1287: 7,35
+ 1288: 8,35
+ 1289: 9,35
+ 1290: 9,36
+ 1291: 8,36
+ 1292: 7,36
+ 1293: 3,36
+ 1294: 2,36
+ 1295: 1,36
+ 1296: 1,35
+ 1297: 2,35
+ 1298: 3,35
+ - node:
+ color: '#9EDA8E28'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1580: 3,45
+ 1583: 2,45
+ 1584: 2,46
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 0: 5,40
+ 1: 4,40
+ 2: 3,40
+ 3: 2,40
+ 4: 1,40
+ 171: 41,40
+ 172: 42,40
+ 173: 43,40
+ 174: 44,40
+ 175: 45,40
+ 255: 9,36
+ 256: 8,36
+ 257: 7,36
+ 258: 3,36
+ 259: 2,36
+ 260: 1,36
+ 377: 25,32
+ 378: 24,32
+ 379: 23,32
+ 380: 22,32
+ 381: 21,32
+ 382: 20,32
+ 383: 19,32
+ 384: 18,32
+ 565: 22,12
+ 566: 22,13
+ 567: 22,14
+ 568: 22,15
+ 569: 22,16
+ 581: 16,12
+ 582: 17,12
+ 583: 18,12
+ 584: 19,12
+ 585: 20,12
+ 586: 21,12
+ 617: 36,1
+ 618: 36,2
+ 619: 36,3
+ 620: 52,1
+ 621: 52,3
+ 626: 52,2
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 184: 14,44
+ 185: 14,45
+ 186: 14,46
+ 187: 14,47
+ - node:
+ color: '#4B709CFF'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1082: 15,21
+ 1087: 16,21
+ - node:
+ color: '#8BDA8E5D'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1589: 2,46
+ 1590: 4,44
+ 1591: 3,45
+ - node:
+ color: '#8BDABAFF'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 921: 21,40
+ 922: 20,40
+ 923: 18,40
+ 924: 19,40
+ 925: 17,40
+ 1071: 20,19
+ 1072: 19,20
+ 1078: 21,21
+ - node:
+ color: '#8BDB9BFF'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1306: 32,35
+ 1307: 31,35
+ 1308: 30,35
+ 1309: 29,35
+ 1310: 28,35
+ 1311: 27,35
+ 1312: 26,36
+ 1313: 26,36
+ 1314: 27,36
+ 1315: 28,36
+ 1316: 29,36
+ 1317: 30,36
+ 1318: 31,36
+ 1325: 32,36
+ 1326: 26,35
+ - node:
+ color: '#9EDA8E28'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1573: 4,45
+ 1577: 4,46
+ 1587: 3,46
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 73: 17,40
+ 74: 18,40
+ 75: 19,40
+ 76: 20,40
+ 77: 21,40
+ 343: 32,35
+ 350: 27,36
+ 351: 28,36
+ 352: 29,36
+ 353: 30,36
+ 354: 31,36
+ 356: 26,36
+ 495: 21,21
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 178: 8,44
+ 179: 8,45
+ 180: 8,46
+ 181: 8,47
+ - node:
+ color: '#4B709CFF'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1080: 13,19
+ 1088: 12,19
+ - node:
+ color: '#79DA8EA1'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 813: 18,24
+ 814: 18,25
+ 815: 18,26
+ 816: 18,27
+ 817: 18,28
+ - node:
+ color: '#8BDA8E5D'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1588: 3,44
+ - node:
+ color: '#8BDABAFF'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 916: 17,38
+ 917: 18,38
+ 918: 19,38
+ 919: 20,38
+ 920: 21,38
+ 975: 12,48
+ 976: 13,48
+ 977: 14,48
+ 978: 14,47
+ 979: 14,46
+ 980: 14,45
+ 981: 14,44
+ - node:
+ color: '#8BDB9BFF'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1245: 18,30
+ 1246: 19,30
+ 1247: 20,30
+ 1248: 22,30
+ 1249: 21,30
+ 1250: 23,30
+ 1251: 24,30
+ 1252: 25,30
+ 1299: 26,35
+ 1300: 27,35
+ 1301: 28,35
+ 1302: 30,35
+ 1303: 29,35
+ 1304: 31,35
+ 1305: 32,35
+ 1319: 32,34
+ 1320: 31,34
+ 1321: 30,34
+ 1322: 29,34
+ 1323: 28,34
+ 1324: 27,34
+ 1327: 26,34
+ - node:
+ color: '#9EDA8E28'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1574: 4,44
+ 1578: 3,45
+ 1581: 2,45
+ 1582: 2,44
+ 1586: 2,46
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 78: 21,38
+ 79: 20,38
+ 80: 19,38
+ 81: 18,38
+ 82: 17,38
+ 199: 14,44
+ 200: 14,45
+ 201: 14,46
+ 202: 14,47
+ 203: 14,48
+ 204: 13,48
+ 205: 12,48
+ 344: 26,35
+ 345: 31,34
+ 346: 30,34
+ 347: 29,34
+ 348: 28,34
+ 349: 27,34
+ 355: 32,34
+ 385: 18,30
+ 386: 19,30
+ 387: 20,30
+ 388: 21,30
+ 389: 22,30
+ 390: 23,30
+ 391: 24,30
+ 392: 25,30
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 188: 9,48
+ 189: 10,48
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock01
+ decals:
+ 486: 22,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock03
+ decals:
+ 487: 18,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock04
+ decals:
+ 489: 18,22
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock05
+ decals:
+ 488: 22,22
+ - node:
+ color: '#FFFFFFFF'
+ id: StandClear
+ decals:
+ 217: 11,44
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 1046: 24,16
+ - node:
+ color: '#8BDA8EB4'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 1102: 12,22
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 452: 12,22
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 1047: 30,12
+ - node:
+ color: '#8BDA8EB4'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 1103: 16,18
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 450: 16,18
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 763: 30,16
+ - node:
+ color: '#8BDA8EB4'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 1101: 16,22
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 451: 16,22
+ - node:
+ color: '#79DA8EFF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 821: 2,28
+ - node:
+ color: '#79DA8EFF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 823: 0,28
+ - node:
+ color: '#79DA8EFF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 824: 2,24
+ - node:
+ color: '#79DA8EFF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 826: 0,24
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 726: 21,2
+ 727: 25,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 728: 23,2
+ 729: 19,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 435: 2,20
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNE
+ decals:
+ 874: 8,12
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 873: 14,12
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSE
+ decals:
+ 564: 8,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 563: 14,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 276: 6,34
+ 277: 6,35
+ 278: 6,36
+ 550: 8,13
+ 551: 8,14
+ 552: 8,15
+ - node:
+ color: '#79DA8EFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 818: 2,25
+ 819: 2,26
+ 820: 2,27
+ - node:
+ color: '#8BDB8E99'
+ id: WarnLineGreyscaleE
+ decals:
+ 1201: 18,3
+ 1202: 18,3
+ - node:
+ color: '#8BDB8EFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 1203: 18,3
+ - node:
+ color: '#D381C996'
+ id: WarnLineGreyscaleE
+ decals:
+ 739: 18,3
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleN
+ decals:
+ 1048: 27,15
+ - node:
+ color: '#79DA8EFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 822: 1,28
+ - node:
+ color: '#8BDA8EFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 1421: 29,27
+ - node:
+ color: '#8BDB8E99'
+ id: WarnLineGreyscaleN
+ decals:
+ 1199: 26,4
+ 1200: 26,4
+ - node:
+ color: '#DABC8BFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 833: 5,28
+ - node:
+ color: '#79DA8EFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 825: 1,24
+ - node:
+ color: '#8BDA8EFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 1420: 29,25
+ - node:
+ color: '#DABC8BFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 834: 5,24
+ 835: 5,24
+ - node:
+ color: '#79DA8EFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 827: 0,25
+ 828: 0,26
+ 829: 0,27
+ - node:
+ color: '#8BDB8EFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 1204: 34,3
+ - node:
+ color: '#D381C996'
+ id: WarnLineGreyscaleW
+ decals:
+ 738: 34,3
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 209: 12,47
+ 210: 10,47
+ 433: 4,20
+ 434: 3,20
+ 524: 27,22
+ 525: 26,22
+ 526: 25,22
+ 545: 13,16
+ 546: 11,16
+ 547: 12,16
+ 548: 10,16
+ 549: 9,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 273: 4,34
+ 274: 4,36
+ 275: 4,35
+ 436: 2,21
+ 437: 2,22
+ 880: 14,13
+ 881: 14,14
+ 882: 14,15
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 206: 12,44
+ 207: 11,44
+ 208: 10,44
+ 521: 27,18
+ 522: 26,18
+ 523: 25,18
+ 779: 45,13
+ 780: 46,13
+ 781: 44,13
+ 782: 43,13
+ 783: 42,13
+ 784: 41,13
+ 785: 40,13
+ 875: 9,12
+ 876: 10,12
+ 877: 11,12
+ 878: 12,12
+ 879: 13,12
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 461: 10,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 460: 1,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 458: 10,8
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 459: 1,8
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 462: 9,9
+ 463: 8,9
+ 464: 7,9
+ 465: 6,9
+ 466: 5,9
+ 467: 4,9
+ 468: 3,9
+ 469: 2,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 470: 10,8
+ 471: 9,8
+ 472: 8,8
+ 473: 7,8
+ 474: 6,8
+ 475: 5,8
+ 476: 4,8
+ 477: 3,8
+ 478: 2,8
+ 479: 1,8
+ - node:
+ color: '#FFFFFFFF'
+ id: bushsnowa1
+ decals:
+ 1558: 34.098167,13.033111
+ - node:
+ color: '#FFFFFFFF'
+ id: bushsnowb1
+ decals:
+ 1559: 35.707542,12.970611
+ - node:
+ color: '#FFFFFFFF'
+ id: chevron
+ decals:
+ 230: 11,48
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow
+ decals:
+ 1643: 10.225454,38.990788
+ 1644: 11.037954,39.022038
+ 1645: 11.834829,39.022038
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow02
+ decals:
+ 1552: 34.973167,13.060861
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow10
+ decals:
+ 1551: 34.004417,13.045236
+ 1553: 35.316917,13.060861
+ 1554: 36.035667,13.029611
+ 1555: 34.535667,12.998361
+ 1556: 36.129417,13.076486
+ 1557: 34.238792,13.076486
+ 1646: 10.491079,38.975163
+ 1647: 11.600454,38.959538
+ 1648: 11.006704,39.178288
+ - type: RadiationGridResistance
+ - type: LoadedMap
+ - type: SpreaderGrid
+ - type: GridTree
+ - type: MovedGrids
+ - type: GridPathfinding
+- proto: Airlock
+ entities:
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: 41.5,3.5
+ parent: 1653
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 41.5,1.5
+ parent: 1653
+ - uid: 1223
+ components:
+ - type: Transform
+ pos: 49.5,1.5
+ parent: 1653
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: 49.5,3.5
+ parent: 1653
+- proto: AirlockFreezer
+ entities:
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 1653
+- proto: AirlockHydroGlassLocked
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 1653
+- proto: AnomalyScanner
+ entities:
+ - uid: 2182
+ components:
+ - type: Transform
+ pos: 53.56535,13.579968
+ parent: 1653
+- proto: APCBasic
+ entities:
+ - uid: 353
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+- proto: Barricade
+ entities:
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 22.5,36.5
+ parent: 1653
+- proto: BaseComputer
+ entities:
+ - uid: 121
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,14.5
+ parent: 1653
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 21.5,48.5
+ parent: 1653
+ - uid: 296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,14.5
+ parent: 1653
+ - uid: 495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,19.5
+ parent: 1653
+ - uid: 730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,14.5
+ parent: 1653
+ - uid: 880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,21.5
+ parent: 1653
+ - uid: 1067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,14.5
+ parent: 1653
+ - uid: 2131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,14.5
+ parent: 1653
+ - uid: 2134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,14.5
+ parent: 1653
+- proto: Bed
+ entities:
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: 42.5,4.5
+ parent: 1653
+ - uid: 1234
+ components:
+ - type: Transform
+ pos: 42.5,0.5
+ parent: 1653
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 50.5,0.5
+ parent: 1653
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 1653
+- proto: BedsheetSpawner
+ entities:
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 42.5,4.5
+ parent: 1653
+ - uid: 1238
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 1653
+ - uid: 1239
+ components:
+ - type: Transform
+ pos: 50.5,0.5
+ parent: 1653
+ - uid: 1240
+ components:
+ - type: Transform
+ pos: 42.5,0.5
+ parent: 1653
+- proto: Bookshelf
+ entities:
+ - uid: 1241
+ components:
+ - type: Transform
+ pos: 40.5,4.5
+ parent: 1653
+- proto: BookshelfFilled
+ entities:
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 8.5,32.5
+ parent: 1653
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 11.5,32.5
+ parent: 1653
+ - uid: 864
+ components:
+ - type: Transform
+ pos: 8.5,30.5
+ parent: 1653
+ - uid: 865
+ components:
+ - type: Transform
+ pos: 11.5,31.5
+ parent: 1653
+ - uid: 866
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 1653
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: 1.5,30.5
+ parent: 1653
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 1.5,32.5
+ parent: 1653
+ - uid: 1414
+ components:
+ - type: Transform
+ pos: 7.5,32.5
+ parent: 1653
+ - uid: 1426
+ components:
+ - type: Transform
+ pos: 5.5,32.5
+ parent: 1653
+ - uid: 1480
+ components:
+ - type: Transform
+ pos: 2.5,32.5
+ parent: 1653
+- proto: BoxFolderWhite
+ entities:
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: 21.488142,22.553272
+ parent: 1653
+ - uid: 1755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.416601,13.653091
+ parent: 1653
+ - uid: 1756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.322851,13.512466
+ parent: 1653
+- proto: CableApcExtension
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 0.5,39.5
+ parent: 1653
+ - uid: 2
+ components:
+ - type: Transform
+ pos: 1.5,39.5
+ parent: 1653
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 2.5,39.5
+ parent: 1653
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 3.5,39.5
+ parent: 1653
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 4.5,39.5
+ parent: 1653
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 5.5,39.5
+ parent: 1653
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 6.5,39.5
+ parent: 1653
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 8.5,39.5
+ parent: 1653
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 9.5,39.5
+ parent: 1653
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 13.5,39.5
+ parent: 1653
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 14.5,39.5
+ parent: 1653
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 16.5,39.5
+ parent: 1653
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 17.5,39.5
+ parent: 1653
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 18.5,39.5
+ parent: 1653
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 19.5,39.5
+ parent: 1653
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 20.5,39.5
+ parent: 1653
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 1653
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 22.5,39.5
+ parent: 1653
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 24.5,39.5
+ parent: 1653
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 1653
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 26.5,39.5
+ parent: 1653
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 27.5,39.5
+ parent: 1653
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 28.5,39.5
+ parent: 1653
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 29.5,39.5
+ parent: 1653
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 30.5,39.5
+ parent: 1653
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 32.5,39.5
+ parent: 1653
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 33.5,39.5
+ parent: 1653
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 34.5,39.5
+ parent: 1653
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 35.5,39.5
+ parent: 1653
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 36.5,39.5
+ parent: 1653
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 37.5,39.5
+ parent: 1653
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 38.5,39.5
+ parent: 1653
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 40.5,39.5
+ parent: 1653
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 41.5,39.5
+ parent: 1653
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 42.5,39.5
+ parent: 1653
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 43.5,39.5
+ parent: 1653
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 44.5,39.5
+ parent: 1653
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 45.5,39.5
+ parent: 1653
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 46.5,39.5
+ parent: 1653
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 34.5,35.5
+ parent: 1653
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 33.5,35.5
+ parent: 1653
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 32.5,35.5
+ parent: 1653
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 31.5,35.5
+ parent: 1653
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 30.5,35.5
+ parent: 1653
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 1653
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 28.5,35.5
+ parent: 1653
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1653
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 26.5,35.5
+ parent: 1653
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 25.5,35.5
+ parent: 1653
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 24.5,35.5
+ parent: 1653
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 22.5,35.5
+ parent: 1653
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 21.5,35.5
+ parent: 1653
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 20.5,35.5
+ parent: 1653
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 19.5,35.5
+ parent: 1653
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 18.5,35.5
+ parent: 1653
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 1653
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 16.5,35.5
+ parent: 1653
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 15.5,35.5
+ parent: 1653
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 14.5,35.5
+ parent: 1653
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 13.5,35.5
+ parent: 1653
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 12.5,35.5
+ parent: 1653
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 10.5,35.5
+ parent: 1653
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 9.5,35.5
+ parent: 1653
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 1653
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 1653
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 6.5,35.5
+ parent: 1653
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 5.5,35.5
+ parent: 1653
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 4.5,35.5
+ parent: 1653
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 3.5,35.5
+ parent: 1653
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 1653
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 1653
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 1653
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 34.5,14.5
+ parent: 1653
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 33.5,14.5
+ parent: 1653
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 37.5,14.5
+ parent: 1653
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 8.5,45.5
+ parent: 1653
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 9.5,45.5
+ parent: 1653
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 1653
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 13.5,45.5
+ parent: 1653
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 14.5,45.5
+ parent: 1653
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 1653
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 11.5,44.5
+ parent: 1653
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 11.5,48.5
+ parent: 1653
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 16.5,45.5
+ parent: 1653
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 22.5,45.5
+ parent: 1653
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 19.5,42.5
+ parent: 1653
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 19.5,48.5
+ parent: 1653
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 9.5,40.5
+ parent: 1653
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 13.5,40.5
+ parent: 1653
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 26.5,31.5
+ parent: 1653
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 1653
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 1653
+ - uid: 131
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 1653
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 22.5,31.5
+ parent: 1653
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 21.5,31.5
+ parent: 1653
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 20.5,31.5
+ parent: 1653
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 19.5,31.5
+ parent: 1653
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 18.5,31.5
+ parent: 1653
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 1653
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 16.5,31.5
+ parent: 1653
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 15.5,31.5
+ parent: 1653
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 14.5,31.5
+ parent: 1653
+ - uid: 142
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1653
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 12.5,31.5
+ parent: 1653
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 1653
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 1653
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 1.5,26.5
+ parent: 1653
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 1.5,27.5
+ parent: 1653
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 1.5,28.5
+ parent: 1653
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1653
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 6.5,26.5
+ parent: 1653
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 2.5,26.5
+ parent: 1653
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 0.5,26.5
+ parent: 1653
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 3.5,38.5
+ parent: 1653
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 3.5,40.5
+ parent: 1653
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 11.5,38.5
+ parent: 1653
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 11.5,40.5
+ parent: 1653
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 19.5,38.5
+ parent: 1653
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 19.5,40.5
+ parent: 1653
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 27.5,38.5
+ parent: 1653
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 27.5,40.5
+ parent: 1653
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 35.5,38.5
+ parent: 1653
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 35.5,40.5
+ parent: 1653
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 43.5,38.5
+ parent: 1653
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 43.5,40.5
+ parent: 1653
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 29.5,36.5
+ parent: 1653
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 1653
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 17.5,34.5
+ parent: 1653
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 17.5,36.5
+ parent: 1653
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 5.5,34.5
+ parent: 1653
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 5.5,36.5
+ parent: 1653
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 20.5,32.5
+ parent: 1653
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 20.5,30.5
+ parent: 1653
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 13.5,24.5
+ parent: 1653
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 13.5,25.5
+ parent: 1653
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 13.5,26.5
+ parent: 1653
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 1653
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 14.5,26.5
+ parent: 1653
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 1653
+ - uid: 207
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 1653
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 17.5,26.5
+ parent: 1653
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 17.5,27.5
+ parent: 1653
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 17.5,28.5
+ parent: 1653
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 16.5,26.5
+ parent: 1653
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 1653
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 1653
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 1653
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 21.5,26.5
+ parent: 1653
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 21.5,27.5
+ parent: 1653
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 21.5,28.5
+ parent: 1653
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 20.5,26.5
+ parent: 1653
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 22.5,26.5
+ parent: 1653
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 1653
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 1653
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 1653
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 1653
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 1653
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 3.5,20.5
+ parent: 1653
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 1653
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1653
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 1653
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 1653
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 1653
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 7.5,21.5
+ parent: 1653
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 7.5,18.5
+ parent: 1653
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 8.5,22.5
+ parent: 1653
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 1653
+ - uid: 235
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 1653
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 1653
+ - uid: 237
+ components:
+ - type: Transform
+ pos: 10.5,20.5
+ parent: 1653
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 14.5,18.5
+ parent: 1653
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 14.5,19.5
+ parent: 1653
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 14.5,20.5
+ parent: 1653
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 14.5,21.5
+ parent: 1653
+ - uid: 242
+ components:
+ - type: Transform
+ pos: 14.5,22.5
+ parent: 1653
+ - uid: 243
+ components:
+ - type: Transform
+ pos: 13.5,20.5
+ parent: 1653
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 12.5,20.5
+ parent: 1653
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 15.5,20.5
+ parent: 1653
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 16.5,20.5
+ parent: 1653
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 20.5,18.5
+ parent: 1653
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 20.5,19.5
+ parent: 1653
+ - uid: 249
+ components:
+ - type: Transform
+ pos: 20.5,20.5
+ parent: 1653
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 20.5,21.5
+ parent: 1653
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 20.5,22.5
+ parent: 1653
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 19.5,20.5
+ parent: 1653
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 18.5,20.5
+ parent: 1653
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 1653
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 22.5,20.5
+ parent: 1653
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 26.5,18.5
+ parent: 1653
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1653
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 1653
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 26.5,22.5
+ parent: 1653
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 1653
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1653
+ - uid: 274
+ components:
+ - type: Transform
+ pos: 19.5,12.5
+ parent: 1653
+ - uid: 275
+ components:
+ - type: Transform
+ pos: 16.5,12.5
+ parent: 1653
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 16.5,15.5
+ parent: 1653
+ - uid: 277
+ components:
+ - type: Transform
+ pos: 17.5,12.5
+ parent: 1653
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 1653
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 16.5,16.5
+ parent: 1653
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 1653
+ - uid: 281
+ components:
+ - type: Transform
+ pos: 16.5,14.5
+ parent: 1653
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 16.5,13.5
+ parent: 1653
+ - uid: 283
+ components:
+ - type: Transform
+ pos: 18.5,12.5
+ parent: 1653
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 22.5,14.5
+ parent: 1653
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1653
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 10.5,12.5
+ parent: 1653
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 1653
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 1653
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 1653
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 14.5,14.5
+ parent: 1653
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 11.5,16.5
+ parent: 1653
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 1653
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 1653
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 32.5,14.5
+ parent: 1653
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1653
+ - uid: 329
+ components:
+ - type: Transform
+ pos: 40.5,14.5
+ parent: 1653
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 41.5,14.5
+ parent: 1653
+ - uid: 331
+ components:
+ - type: Transform
+ pos: 42.5,14.5
+ parent: 1653
+ - uid: 332
+ components:
+ - type: Transform
+ pos: 43.5,14.5
+ parent: 1653
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 44.5,14.5
+ parent: 1653
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 45.5,14.5
+ parent: 1653
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 46.5,14.5
+ parent: 1653
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 1653
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 43.5,12.5
+ parent: 1653
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 43.5,15.5
+ parent: 1653
+ - uid: 339
+ components:
+ - type: Transform
+ pos: 43.5,16.5
+ parent: 1653
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 34.5,8.5
+ parent: 1653
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1653
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 32.5,8.5
+ parent: 1653
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 1653
+ - uid: 344
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+ - uid: 345
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 1653
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 1653
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1653
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 24.5,8.5
+ parent: 1653
+ - uid: 351
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 29.5,10.5
+ parent: 1653
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 22.5,8.5
+ parent: 1653
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 21.5,8.5
+ parent: 1653
+ - uid: 357
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 1653
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 1653
+ - uid: 359
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 1653
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 1653
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 1653
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 1653
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 1653
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 1653
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 1653
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 1653
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 1653
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 1653
+ - uid: 369
+ components:
+ - type: Transform
+ pos: 17.5,6.5
+ parent: 1653
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1653
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1653
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1653
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1653
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1653
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1653
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1653
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1653
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1653
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 1653
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1653
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 1653
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 1653
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 1653
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1653
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 18.5,2.5
+ parent: 1653
+ - uid: 407
+ components:
+ - type: Transform
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 408
+ components:
+ - type: Transform
+ pos: 20.5,2.5
+ parent: 1653
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 1653
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 23.5,2.5
+ parent: 1653
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 24.5,2.5
+ parent: 1653
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 26.5,2.5
+ parent: 1653
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 422
+ components:
+ - type: Transform
+ pos: 34.5,2.5
+ parent: 1653
+ - uid: 423
+ components:
+ - type: Transform
+ pos: 36.5,2.5
+ parent: 1653
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 26.5,3.5
+ parent: 1653
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 1653
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 26.5,1.5
+ parent: 1653
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 26.5,0.5
+ parent: 1653
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 37.5,2.5
+ parent: 1653
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 38.5,2.5
+ parent: 1653
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 39.5,2.5
+ parent: 1653
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 40.5,2.5
+ parent: 1653
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 41.5,2.5
+ parent: 1653
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 42.5,2.5
+ parent: 1653
+ - uid: 434
+ components:
+ - type: Transform
+ pos: 43.5,2.5
+ parent: 1653
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 44.5,2.5
+ parent: 1653
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 45.5,2.5
+ parent: 1653
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 46.5,2.5
+ parent: 1653
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 47.5,2.5
+ parent: 1653
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 48.5,2.5
+ parent: 1653
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 49.5,2.5
+ parent: 1653
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 50.5,2.5
+ parent: 1653
+ - uid: 442
+ components:
+ - type: Transform
+ pos: 51.5,2.5
+ parent: 1653
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 52.5,2.5
+ parent: 1653
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 53.5,2.5
+ parent: 1653
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 54.5,2.5
+ parent: 1653
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 45.5,3.5
+ parent: 1653
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 45.5,4.5
+ parent: 1653
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 45.5,0.5
+ parent: 1653
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 45.5,1.5
+ parent: 1653
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1653
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 1653
+ - uid: 494
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 1653
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1653
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1653
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1653
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 1653
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 1653
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 8.5,31.5
+ parent: 1653
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1653
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 38.5,14.5
+ parent: 1653
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 12.5,43.5
+ parent: 1653
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 28.5,2.5
+ parent: 1653
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 12.5,38.5
+ parent: 1653
+ - uid: 672
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1653
+ - uid: 688
+ components:
+ - type: Transform
+ pos: 27.5,2.5
+ parent: 1653
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 5.5,31.5
+ parent: 1653
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 1653
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 0.5,14.5
+ parent: 1653
+ - uid: 748
+ components:
+ - type: Transform
+ pos: 30.5,20.5
+ parent: 1653
+ - uid: 749
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 1653
+ - uid: 750
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 1653
+ - uid: 751
+ components:
+ - type: Transform
+ pos: 34.5,20.5
+ parent: 1653
+ - uid: 752
+ components:
+ - type: Transform
+ pos: 32.5,22.5
+ parent: 1653
+ - uid: 753
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 1653
+ - uid: 754
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 1653
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 1653
+ - uid: 761
+ components:
+ - type: Transform
+ pos: 17.5,45.5
+ parent: 1653
+ - uid: 762
+ components:
+ - type: Transform
+ pos: 32.5,18.5
+ parent: 1653
+ - uid: 767
+ components:
+ - type: Transform
+ pos: 31.5,2.5
+ parent: 1653
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 1653
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 1653
+ - uid: 906
+ components:
+ - type: Transform
+ pos: 9.5,18.5
+ parent: 1653
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 10.5,21.5
+ parent: 1653
+ - uid: 910
+ components:
+ - type: Transform
+ pos: 9.5,22.5
+ parent: 1653
+ - uid: 911
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 1653
+ - uid: 912
+ components:
+ - type: Transform
+ pos: 9.5,19.5
+ parent: 1653
+ - uid: 913
+ components:
+ - type: Transform
+ pos: 10.5,19.5
+ parent: 1653
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 9.5,21.5
+ parent: 1653
+ - uid: 976
+ components:
+ - type: Transform
+ pos: 32.5,2.5
+ parent: 1653
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 30.5,2.5
+ parent: 1653
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 20.5,45.5
+ parent: 1653
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 3.5,43.5
+ parent: 1653
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1653
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 25.5,18.5
+ parent: 1653
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 24.5,18.5
+ parent: 1653
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 25.5,22.5
+ parent: 1653
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 24.5,22.5
+ parent: 1653
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 1653
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 1653
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 24.5,19.5
+ parent: 1653
+ - uid: 1053
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1653
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 1653
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: 3.5,47.5
+ parent: 1653
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 3.5,45.5
+ parent: 1653
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 1653
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: 1.5,45.5
+ parent: 1653
+ - uid: 1134
+ components:
+ - type: Transform
+ pos: 3.5,48.5
+ parent: 1653
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 1653
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 1653
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 1653
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 1653
+ - uid: 1139
+ components:
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 1653
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 12.5,16.5
+ parent: 1653
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 13.5,16.5
+ parent: 1653
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 14.5,16.5
+ parent: 1653
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 14.5,15.5
+ parent: 1653
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 14.5,13.5
+ parent: 1653
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 14.5,12.5
+ parent: 1653
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 13.5,12.5
+ parent: 1653
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 12.5,12.5
+ parent: 1653
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 1653
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 1653
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 1653
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 1653
+ - uid: 1163
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 1653
+ - uid: 1164
+ components:
+ - type: Transform
+ pos: 22.5,13.5
+ parent: 1653
+ - uid: 1165
+ components:
+ - type: Transform
+ pos: 22.5,12.5
+ parent: 1653
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: 21.5,12.5
+ parent: 1653
+ - uid: 1167
+ components:
+ - type: Transform
+ pos: 20.5,12.5
+ parent: 1653
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 0.5,45.5
+ parent: 1653
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: 2.5,45.5
+ parent: 1653
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 3.5,42.5
+ parent: 1653
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 3.5,44.5
+ parent: 1653
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: 41.5,1.5
+ parent: 1653
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: 41.5,0.5
+ parent: 1653
+ - uid: 1227
+ components:
+ - type: Transform
+ pos: 41.5,3.5
+ parent: 1653
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: 41.5,4.5
+ parent: 1653
+ - uid: 1229
+ components:
+ - type: Transform
+ pos: 49.5,3.5
+ parent: 1653
+ - uid: 1230
+ components:
+ - type: Transform
+ pos: 49.5,4.5
+ parent: 1653
+ - uid: 1231
+ components:
+ - type: Transform
+ pos: 49.5,1.5
+ parent: 1653
+ - uid: 1232
+ components:
+ - type: Transform
+ pos: 49.5,0.5
+ parent: 1653
+ - uid: 1299
+ components:
+ - type: Transform
+ pos: 35.5,13.5
+ parent: 1653
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 1653
+ - uid: 1303
+ components:
+ - type: Transform
+ pos: 35.5,16.5
+ parent: 1653
+ - uid: 1306
+ components:
+ - type: Transform
+ pos: 35.5,15.5
+ parent: 1653
+ - uid: 1310
+ components:
+ - type: Transform
+ pos: 35.5,12.5
+ parent: 1653
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: 10.5,31.5
+ parent: 1653
+ - uid: 1393
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 1653
+ - uid: 1397
+ components:
+ - type: Transform
+ pos: 19.5,45.5
+ parent: 1653
+ - uid: 1410
+ components:
+ - type: Transform
+ pos: 19.5,42.5
+ parent: 1653
+ - uid: 1411
+ components:
+ - type: Transform
+ pos: 16.5,45.5
+ parent: 1653
+ - uid: 1412
+ components:
+ - type: Transform
+ pos: 21.5,45.5
+ parent: 1653
+ - uid: 1419
+ components:
+ - type: Transform
+ pos: 11.5,31.5
+ parent: 1653
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: 19.5,43.5
+ parent: 1653
+ - uid: 1440
+ components:
+ - type: Transform
+ pos: 19.5,44.5
+ parent: 1653
+ - uid: 1441
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 1653
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: 19.5,47.5
+ parent: 1653
+ - uid: 1447
+ components:
+ - type: Transform
+ pos: 22.5,45.5
+ parent: 1653
+ - uid: 1457
+ components:
+ - type: Transform
+ pos: 18.5,45.5
+ parent: 1653
+ - uid: 1461
+ components:
+ - type: Transform
+ pos: 19.5,48.5
+ parent: 1653
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1653
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 1653
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: 31.5,6.5
+ parent: 1653
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: 30.5,6.5
+ parent: 1653
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: 29.5,6.5
+ parent: 1653
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: 28.5,6.5
+ parent: 1653
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: 27.5,6.5
+ parent: 1653
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1653
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: 10.5,38.5
+ parent: 1653
+ - uid: 1570
+ components:
+ - type: Transform
+ pos: 10.5,40.5
+ parent: 1653
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: 12.5,40.5
+ parent: 1653
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 9.5,38.5
+ parent: 1653
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: 13.5,38.5
+ parent: 1653
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1653
+ - uid: 1708
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1653
+ - uid: 1709
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 1653
+ - uid: 1715
+ components:
+ - type: Transform
+ pos: 3.5,46.5
+ parent: 1653
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: 4.5,45.5
+ parent: 1653
+ - uid: 1718
+ components:
+ - type: Transform
+ pos: 5.5,45.5
+ parent: 1653
+ - uid: 1719
+ components:
+ - type: Transform
+ pos: 6.5,45.5
+ parent: 1653
+ - uid: 1726
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 1653
+ - uid: 1735
+ components:
+ - type: Transform
+ pos: 24.5,14.5
+ parent: 1653
+ - uid: 1736
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 1653
+ - uid: 1737
+ components:
+ - type: Transform
+ pos: 30.5,14.5
+ parent: 1653
+ - uid: 1738
+ components:
+ - type: Transform
+ pos: 29.5,14.5
+ parent: 1653
+ - uid: 1739
+ components:
+ - type: Transform
+ pos: 29.5,15.5
+ parent: 1653
+ - uid: 1740
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 1653
+ - uid: 1741
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 1653
+ - uid: 1742
+ components:
+ - type: Transform
+ pos: 27.5,16.5
+ parent: 1653
+ - uid: 1743
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 1653
+ - uid: 1744
+ components:
+ - type: Transform
+ pos: 25.5,16.5
+ parent: 1653
+ - uid: 1745
+ components:
+ - type: Transform
+ pos: 25.5,15.5
+ parent: 1653
+ - uid: 1746
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 1653
+ - uid: 1747
+ components:
+ - type: Transform
+ pos: 25.5,12.5
+ parent: 1653
+ - uid: 1748
+ components:
+ - type: Transform
+ pos: 26.5,12.5
+ parent: 1653
+ - uid: 1749
+ components:
+ - type: Transform
+ pos: 27.5,12.5
+ parent: 1653
+ - uid: 1750
+ components:
+ - type: Transform
+ pos: 28.5,12.5
+ parent: 1653
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 1653
+ - uid: 1752
+ components:
+ - type: Transform
+ pos: 29.5,13.5
+ parent: 1653
+ - uid: 1876
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1653
+ - uid: 1877
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 1653
+ - uid: 1879
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1653
+ - uid: 1881
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1653
+ - uid: 1888
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1653
+ - uid: 1889
+ components:
+ - type: Transform
+ pos: 14.5,2.5
+ parent: 1653
+ - uid: 1890
+ components:
+ - type: Transform
+ pos: 15.5,2.5
+ parent: 1653
+ - uid: 1891
+ components:
+ - type: Transform
+ pos: 16.5,2.5
+ parent: 1653
+ - uid: 1895
+ components:
+ - type: Transform
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 1961
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 1653
+ - uid: 1962
+ components:
+ - type: Transform
+ pos: 25.5,27.5
+ parent: 1653
+ - uid: 1963
+ components:
+ - type: Transform
+ pos: 25.5,26.5
+ parent: 1653
+ - uid: 1964
+ components:
+ - type: Transform
+ pos: 25.5,25.5
+ parent: 1653
+ - uid: 1965
+ components:
+ - type: Transform
+ pos: 25.5,24.5
+ parent: 1653
+ - uid: 1966
+ components:
+ - type: Transform
+ pos: 24.5,26.5
+ parent: 1653
+ - uid: 1967
+ components:
+ - type: Transform
+ pos: 26.5,26.5
+ parent: 1653
+ - uid: 1968
+ components:
+ - type: Transform
+ pos: 48.5,39.5
+ parent: 1653
+ - uid: 1969
+ components:
+ - type: Transform
+ pos: 49.5,39.5
+ parent: 1653
+ - uid: 1970
+ components:
+ - type: Transform
+ pos: 50.5,39.5
+ parent: 1653
+ - uid: 1971
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1653
+ - uid: 1972
+ components:
+ - type: Transform
+ pos: 52.5,39.5
+ parent: 1653
+ - uid: 1973
+ components:
+ - type: Transform
+ pos: 53.5,39.5
+ parent: 1653
+ - uid: 1974
+ components:
+ - type: Transform
+ pos: 54.5,39.5
+ parent: 1653
+ - uid: 1975
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1653
+ - uid: 1976
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1653
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: 6.5,31.5
+ parent: 1653
+ - uid: 2031
+ components:
+ - type: Transform
+ pos: 29.5,24.5
+ parent: 1653
+ - uid: 2032
+ components:
+ - type: Transform
+ pos: 29.5,25.5
+ parent: 1653
+ - uid: 2033
+ components:
+ - type: Transform
+ pos: 29.5,26.5
+ parent: 1653
+ - uid: 2034
+ components:
+ - type: Transform
+ pos: 29.5,27.5
+ parent: 1653
+ - uid: 2035
+ components:
+ - type: Transform
+ pos: 29.5,28.5
+ parent: 1653
+ - uid: 2036
+ components:
+ - type: Transform
+ pos: 28.5,26.5
+ parent: 1653
+ - uid: 2037
+ components:
+ - type: Transform
+ pos: 30.5,26.5
+ parent: 1653
+ - uid: 2038
+ components:
+ - type: Transform
+ pos: 33.5,24.5
+ parent: 1653
+ - uid: 2039
+ components:
+ - type: Transform
+ pos: 33.5,25.5
+ parent: 1653
+ - uid: 2040
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 1653
+ - uid: 2041
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 1653
+ - uid: 2042
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 1653
+ - uid: 2043
+ components:
+ - type: Transform
+ pos: 32.5,26.5
+ parent: 1653
+ - uid: 2044
+ components:
+ - type: Transform
+ pos: 34.5,26.5
+ parent: 1653
+ - uid: 2045
+ components:
+ - type: Transform
+ pos: 36.5,8.5
+ parent: 1653
+ - uid: 2046
+ components:
+ - type: Transform
+ pos: 37.5,8.5
+ parent: 1653
+ - uid: 2047
+ components:
+ - type: Transform
+ pos: 38.5,8.5
+ parent: 1653
+ - uid: 2048
+ components:
+ - type: Transform
+ pos: 39.5,8.5
+ parent: 1653
+ - uid: 2049
+ components:
+ - type: Transform
+ pos: 40.5,8.5
+ parent: 1653
+ - uid: 2050
+ components:
+ - type: Transform
+ pos: 41.5,8.5
+ parent: 1653
+ - uid: 2051
+ components:
+ - type: Transform
+ pos: 42.5,8.5
+ parent: 1653
+ - uid: 2052
+ components:
+ - type: Transform
+ pos: 43.5,8.5
+ parent: 1653
+ - uid: 2053
+ components:
+ - type: Transform
+ pos: 44.5,8.5
+ parent: 1653
+ - uid: 2054
+ components:
+ - type: Transform
+ pos: 45.5,8.5
+ parent: 1653
+ - uid: 2055
+ components:
+ - type: Transform
+ pos: 46.5,8.5
+ parent: 1653
+ - uid: 2056
+ components:
+ - type: Transform
+ pos: 41.5,9.5
+ parent: 1653
+ - uid: 2057
+ components:
+ - type: Transform
+ pos: 41.5,10.5
+ parent: 1653
+ - uid: 2058
+ components:
+ - type: Transform
+ pos: 41.5,7.5
+ parent: 1653
+ - uid: 2059
+ components:
+ - type: Transform
+ pos: 41.5,6.5
+ parent: 1653
+ - uid: 2061
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 2188
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 1653
+ - uid: 2189
+ components:
+ - type: Transform
+ pos: 14.5,1.5
+ parent: 1653
+ - uid: 2190
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 1653
+ - uid: 2191
+ components:
+ - type: Transform
+ pos: 14.5,4.5
+ parent: 1653
+ - uid: 2192
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1653
+ - uid: 2193
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1653
+ - uid: 2194
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1653
+ - uid: 2195
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1653
+ - uid: 2240
+ components:
+ - type: Transform
+ pos: 2.5,31.5
+ parent: 1653
+ - uid: 2241
+ components:
+ - type: Transform
+ pos: 1.5,31.5
+ parent: 1653
+ - uid: 2242
+ components:
+ - type: Transform
+ pos: 0.5,31.5
+ parent: 1653
+ - uid: 2243
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 1653
+ - uid: 2244
+ components:
+ - type: Transform
+ pos: 6.5,32.5
+ parent: 1653
+- proto: CableApcStack
+ entities:
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 27.694578,8.767019
+ parent: 1653
+- proto: CableHV
+ entities:
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 10.5,46.5
+ parent: 1653
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 9.5,46.5
+ parent: 1653
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 12.5,46.5
+ parent: 1653
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 13.5,46.5
+ parent: 1653
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 13.5,47.5
+ parent: 1653
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 1653
+ - uid: 552
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 11.5,44.5
+ parent: 1653
+ - uid: 554
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+ - uid: 555
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 1653
+ - uid: 556
+ components:
+ - type: Transform
+ pos: 10.5,42.5
+ parent: 1653
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 9.5,42.5
+ parent: 1653
+ - uid: 558
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 1653
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1653
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 1653
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1653
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 1653
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1653
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 1653
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 1653
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 1489
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 1490
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 28.5,7.5
+ parent: 1653
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 1653
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 1653
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1653
+ - uid: 1495
+ components:
+ - type: Transform
+ pos: 26.5,7.5
+ parent: 1653
+ - uid: 1496
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 1653
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: 32.5,7.5
+ parent: 1653
+ - uid: 1498
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 1653
+ - uid: 1499
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1653
+ - uid: 1500
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 1653
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 1653
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1653
+ - uid: 1505
+ components:
+ - type: Transform
+ pos: 25.5,9.5
+ parent: 1653
+- proto: CableHVStack
+ entities:
+ - uid: 1543
+ components:
+ - type: Transform
+ pos: 27.850828,8.329519
+ parent: 1653
+- proto: CableMV
+ entities:
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 1653
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 9.5,42.5
+ parent: 1653
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 10.5,42.5
+ parent: 1653
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 1653
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 12.5,42.5
+ parent: 1653
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 13.5,42.5
+ parent: 1653
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1653
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 1653
+ - uid: 1026
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1653
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1653
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1508
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 1509
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 1653
+- proto: CableMVStack
+ entities:
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: 27.819578,8.595144
+ parent: 1653
+- proto: CableTerminal
+ entities:
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 1038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 1518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,7.5
+ parent: 1653
+ - uid: 1519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,7.5
+ parent: 1653
+ - uid: 1520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,7.5
+ parent: 1653
+- proto: CarpetGreen
+ entities:
+ - uid: 271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,30.5
+ parent: 1653
+ - uid: 272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,30.5
+ parent: 1653
+ - uid: 273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,30.5
+ parent: 1653
+ - uid: 307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,31.5
+ parent: 1653
+ - uid: 308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,30.5
+ parent: 1653
+ - uid: 309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,32.5
+ parent: 1653
+ - uid: 310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,30.5
+ parent: 1653
+ - uid: 311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,30.5
+ parent: 1653
+ - uid: 312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,30.5
+ parent: 1653
+ - uid: 314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,31.5
+ parent: 1653
+ - uid: 614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,6.5
+ parent: 1653
+ - uid: 617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,7.5
+ parent: 1653
+ - uid: 618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,6.5
+ parent: 1653
+ - uid: 620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,7.5
+ parent: 1653
+ - uid: 621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,7.5
+ parent: 1653
+ - uid: 622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,7.5
+ parent: 1653
+ - uid: 623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,6.5
+ parent: 1653
+ - uid: 628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,30.5
+ parent: 1653
+ - uid: 643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,32.5
+ parent: 1653
+ - uid: 674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,6.5
+ parent: 1653
+ - uid: 1244
+ components:
+ - type: Transform
+ pos: 49.5,4.5
+ parent: 1653
+ - uid: 1827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,6.5
+ parent: 1653
+ - uid: 1831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,7.5
+ parent: 1653
+- proto: Catwalk
+ entities:
+ - uid: 560
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 1653
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 10.5,46.5
+ parent: 1653
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 12.5,46.5
+ parent: 1653
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1653
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 1653
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 1653
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 1653
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 1653
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1653
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 1653
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: 28.5,7.5
+ parent: 1653
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 1653
+ - uid: 1523
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 1653
+ - uid: 1927
+ components:
+ - type: Transform
+ pos: 52.5,39.5
+ parent: 1653
+ - uid: 1928
+ components:
+ - type: Transform
+ pos: 54.5,39.5
+ parent: 1653
+ - uid: 1929
+ components:
+ - type: Transform
+ pos: 50.5,38.5
+ parent: 1653
+ - uid: 1930
+ components:
+ - type: Transform
+ pos: 53.5,39.5
+ parent: 1653
+ - uid: 1931
+ components:
+ - type: Transform
+ pos: 49.5,39.5
+ parent: 1653
+ - uid: 1932
+ components:
+ - type: Transform
+ pos: 50.5,39.5
+ parent: 1653
+ - uid: 1933
+ components:
+ - type: Transform
+ pos: 52.5,38.5
+ parent: 1653
+ - uid: 1934
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1653
+ - uid: 1935
+ components:
+ - type: Transform
+ pos: 48.5,39.5
+ parent: 1653
+- proto: Chair
+ entities:
+ - uid: 388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 1653
+ - uid: 389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,0.5
+ parent: 1653
+ - uid: 390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,2.5
+ parent: 1653
+ - uid: 392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 1653
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1653
+ - uid: 394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,2.5
+ parent: 1653
+ - uid: 397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1653
+ - uid: 398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,3.5
+ parent: 1653
+ - uid: 401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,2.5
+ parent: 1653
+ - uid: 402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,2.5
+ parent: 1653
+ - uid: 404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,0.5
+ parent: 1653
+ - uid: 458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,0.5
+ parent: 1653
+ - uid: 460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,2.5
+ parent: 1653
+ - uid: 462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,4.5
+ parent: 1653
+ - uid: 464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,0.5
+ parent: 1653
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 2.5,40.5
+ parent: 1653
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 4.5,40.5
+ parent: 1653
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 17.5,40.5
+ parent: 1653
+ - uid: 504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,39.5
+ parent: 1653
+ - uid: 505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,39.5
+ parent: 1653
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 18.5,40.5
+ parent: 1653
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 25.5,40.5
+ parent: 1653
+ - uid: 519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,38.5
+ parent: 1653
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 44.5,40.5
+ parent: 1653
+ - uid: 630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,35.5
+ parent: 1653
+ - uid: 638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,35.5
+ parent: 1653
+ - uid: 682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,34.5
+ parent: 1653
+ - uid: 683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,34.5
+ parent: 1653
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 32.5,36.5
+ parent: 1653
+ - uid: 779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,32.5
+ parent: 1653
+ - uid: 780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,30.5
+ parent: 1653
+ - uid: 783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,32.5
+ parent: 1653
+ - uid: 784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,30.5
+ parent: 1653
+ - uid: 1004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,21.5
+ parent: 1653
+ - uid: 1005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,19.5
+ parent: 1653
+ - uid: 1008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,19.5
+ parent: 1653
+ - uid: 1009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,21.5
+ parent: 1653
+ - uid: 1264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,0.5
+ parent: 1653
+ - uid: 1265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,0.5
+ parent: 1653
+ - uid: 1266
+ components:
+ - type: Transform
+ pos: 37.5,1.5
+ parent: 1653
+ - uid: 1267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,4.5
+ parent: 1653
+ - uid: 1268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,4.5
+ parent: 1653
+ - uid: 1295
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 1653
+ - uid: 1298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,1.5
+ parent: 1653
+ - uid: 1945
+ components:
+ - type: Transform
+ pos: 49.5,40.5
+ parent: 1653
+ - uid: 1946
+ components:
+ - type: Transform
+ pos: 48.5,40.5
+ parent: 1653
+ - uid: 1956
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,30.5
+ parent: 1653
+- proto: ChairFolding
+ entities:
+ - uid: 929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,22.5
+ parent: 1653
+ - uid: 931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,21.5
+ parent: 1653
+- proto: ChairOfficeDark
+ entities:
+ - uid: 146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,47.5
+ parent: 1653
+ - uid: 482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,14.5
+ parent: 1653
+ - uid: 1071
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,32.5
+ parent: 1653
+ - uid: 1311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,46.5
+ parent: 1653
+ - uid: 1315
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,14.5
+ parent: 1653
+ - uid: 1713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,44.5
+ parent: 1653
+- proto: ChairOfficeLight
+ entities:
+ - uid: 317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,19.5
+ parent: 1653
+ - uid: 981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,21.5
+ parent: 1653
+ - uid: 1455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,3.5
+ parent: 1653
+ - uid: 1467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,3.5
+ parent: 1653
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 22.5,1.5
+ parent: 1653
+ - uid: 1623
+ components:
+ - type: Transform
+ pos: 41.5,13.5
+ parent: 1653
+- proto: ChairWood
+ entities:
+ - uid: 1271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,1.5
+ parent: 1653
+ - uid: 1272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,1.5
+ parent: 1653
+- proto: chem_master
+ entities:
+ - uid: 1454
+ components:
+ - type: Transform
+ pos: 29.5,4.5
+ parent: 1653
+- proto: ChessBoard
+ entities:
+ - uid: 1273
+ components:
+ - type: Transform
+ pos: 45.521095,1.5328176
+ parent: 1653
+- proto: CloningPod
+ entities:
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 1653
+- proto: ClosetMaintenanceFilledRandom
+ entities:
+ - uid: 745
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1653
+- proto: ClosetSteelBase
+ entities:
+ - uid: 2010
+ components:
+ - type: Transform
+ pos: 30.5,25.5
+ parent: 1653
+ - uid: 2012
+ components:
+ - type: Transform
+ pos: 28.5,27.5
+ parent: 1653
+- proto: ClothingOuterApronBotanist
+ entities:
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 33.50576,36.565666
+ parent: 1653
+- proto: ClothingShoeSlippersDuck
+ entities:
+ - uid: 2030
+ components:
+ - type: Transform
+ pos: 13.532652,9.379251
+ parent: 1653
+- proto: ComfyChair
+ entities:
+ - uid: 268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,30.5
+ parent: 1653
+ - uid: 313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,30.5
+ parent: 1653
+ - uid: 619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,6.5
+ parent: 1653
+ - uid: 675
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,8.5
+ parent: 1653
+ - uid: 935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,18.5
+ parent: 1653
+ - uid: 937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,21.5
+ parent: 1653
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 13.5,22.5
+ parent: 1653
+ - uid: 939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,19.5
+ parent: 1653
+ - uid: 987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,7.5
+ parent: 1653
+ - uid: 988
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,6.5
+ parent: 1653
+ - uid: 989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1653
+ - uid: 1247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,0.5
+ parent: 1653
+ - uid: 1568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,8.5
+ parent: 1653
+ - uid: 1698
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 1653
+- proto: ComputerBroken
+ entities:
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 22.5,48.5
+ parent: 1653
+ - uid: 801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,26.5
+ parent: 1653
+ - uid: 1732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,15.5
+ parent: 1653
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 2215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,22.5
+ parent: 1653
+- proto: ComputerFrame
+ entities:
+ - uid: 825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,13.5
+ parent: 1653
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 22.5,34.5
+ parent: 1653
+- proto: CrateHydroponicsSeeds
+ entities:
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 22.5,27.5
+ parent: 1653
+- proto: CrateHydroponicsTools
+ entities:
+ - uid: 1958
+ components:
+ - type: Transform
+ pos: 24.5,28.5
+ parent: 1653
+- proto: CrateHydroSecure
+ entities:
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 26.5,0.5
+ parent: 1653
+- proto: CrystalBlue
+ entities:
+ - uid: 194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,30.5
+ parent: 1653
+ - uid: 197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,32.5
+ parent: 1653
+ - uid: 316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,31.5
+ parent: 1653
+ - uid: 1668
+ components:
+ - type: Transform
+ pos: 13.5,38.5
+ parent: 1653
+- proto: CrystalCyan
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,36.5
+ parent: 1653
+ - uid: 193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,31.5
+ parent: 1653
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1653
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 16.5,28.5
+ parent: 1653
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 2.5,24.5
+ parent: 1653
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: 0.5,27.5
+ parent: 1653
+ - uid: 1189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,34.5
+ parent: 1653
+ - uid: 1666
+ components:
+ - type: Transform
+ pos: 4.5,38.5
+ parent: 1653
+ - uid: 1669
+ components:
+ - type: Transform
+ pos: 10.5,40.5
+ parent: 1653
+ - uid: 1670
+ components:
+ - type: Transform
+ pos: 16.5,40.5
+ parent: 1653
+ - uid: 1917
+ components:
+ - type: Transform
+ pos: 32.5,35.5
+ parent: 1653
+ - uid: 1918
+ components:
+ - type: Transform
+ pos: 26.5,36.5
+ parent: 1653
+ - uid: 2083
+ components:
+ - type: Transform
+ pos: 34.5,25.5
+ parent: 1653
+ - uid: 2084
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 1653
+ - uid: 2085
+ components:
+ - type: Transform
+ pos: 33.5,22.5
+ parent: 1653
+ - uid: 2086
+ components:
+ - type: Transform
+ pos: 43.5,12.5
+ parent: 1653
+ - uid: 2087
+ components:
+ - type: Transform
+ pos: 40.5,15.5
+ parent: 1653
+ - uid: 2088
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 1653
+- proto: CrystalGreen
+ entities:
+ - uid: 836
+ components:
+ - type: Transform
+ pos: 12.5,25.5
+ parent: 1653
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 1653
+ - uid: 1667
+ components:
+ - type: Transform
+ pos: 1.5,39.5
+ parent: 1653
+- proto: DisposalTrunk
+ entities:
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 1442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 1443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,1.5
+ parent: 1653
+- proto: DisposalUnit
+ entities:
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+- proto: EmergencyLight
+ entities:
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - type: PointLight
+ enabled: True
+ - uid: 1606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,16.5
+ parent: 1653
+ - type: PointLight
+ enabled: True
+ - uid: 1607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,44.5
+ parent: 1653
+ - type: PointLight
+ enabled: True
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: 51.5,1.5
+ parent: 1653
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: 39.5,1.5
+ parent: 1653
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 1279
+ components:
+ - type: Transform
+ pos: 36.5,4.5
+ parent: 1653
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 1653
+- proto: filingCabinetRandom
+ entities:
+ - uid: 1482
+ components:
+ - type: Transform
+ pos: 34.5,0.5
+ parent: 1653
+- proto: Floodlight
+ entities:
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 19.496153,34.502384
+ parent: 1653
+- proto: FloodlightBroken
+ entities:
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 36.481613,40.499622
+ parent: 1653
+- proto: FloorDrain
+ entities:
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+- proto: FloraTreeSnow01
+ entities:
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: 34.488148,39.383087
+ parent: 1653
+- proto: FloraTreeSnow03
+ entities:
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 0.431108,0.37702036
+ parent: 1653
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 16.778654,4.6426454
+ parent: 1653
+- proto: FloraTreeSnow04
+ entities:
+ - uid: 420
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.352256,20.196136
+ parent: 1653
+- proto: FloraTreeSnow05
+ entities:
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: 11.423113,39.334538
+ parent: 1653
+- proto: FoodBerries
+ entities:
+ - uid: 804
+ components:
+ - type: Transform
+ pos: 12.556688,14.57218
+ parent: 1653
+ - uid: 805
+ components:
+ - type: MetaData
+ name: strange berries
+ - type: Transform
+ pos: 10.525438,14.587805
+ parent: 1653
+- proto: FoodCondimentBottleColdsauce
+ entities:
+ - uid: 1841
+ components:
+ - type: Transform
+ pos: 5.5153017,13.652036
+ parent: 1653
+- proto: FoodGatfruit
+ entities:
+ - uid: 295
+ components:
+ - type: Transform
+ pos: 3.4733143,14.462859
+ parent: 1653
+- proto: FoodPotato
+ entities:
+ - uid: 1396
+ components:
+ - type: Transform
+ pos: 21.463976,15.404201
+ parent: 1653
+- proto: GasCanisterBrokenBase
+ entities:
+ - uid: 1648
+ components:
+ - type: Transform
+ pos: 43.5,15.5
+ parent: 1653
+- proto: GasFilter
+ entities:
+ - uid: 1612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,16.5
+ parent: 1653
+- proto: GasMixer
+ entities:
+ - uid: 1613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,16.5
+ parent: 1653
+- proto: GasPort
+ entities:
+ - uid: 1614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,16.5
+ parent: 1653
+ - uid: 1615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,15.5
+ parent: 1653
+ - uid: 1616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,15.5
+ parent: 1653
+ - uid: 1617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,16.5
+ parent: 1653
+ - uid: 1651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,15.5
+ parent: 1653
+- proto: GasRecycler
+ entities:
+ - uid: 1649
+ components:
+ - type: Transform
+ pos: 46.5,16.5
+ parent: 1653
+- proto: GasThermoMachineFreezer
+ entities:
+ - uid: 1650
+ components:
+ - type: Transform
+ pos: 45.5,16.5
+ parent: 1653
+- proto: GeneratorRTG
+ entities:
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 1653
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 13.5,47.5
+ parent: 1653
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1653
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 1653
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: 25.5,9.5
+ parent: 1653
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 1653
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 1653
+- proto: Girder
+ entities:
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 14.5,34.5
+ parent: 1653
+- proto: Grille
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 1653
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 18.5,44.5
+ parent: 1653
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 19.5,44.5
+ parent: 1653
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 1653
+ - uid: 293
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1653
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1653
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1653
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 1653
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1653
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1653
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 4.5,14.5
+ parent: 1653
+ - uid: 742
+ components:
+ - type: Transform
+ pos: 17.5,30.5
+ parent: 1653
+ - uid: 743
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 1653
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 20.5,44.5
+ parent: 1653
+ - uid: 1435
+ components:
+ - type: Transform
+ pos: 18.5,45.5
+ parent: 1653
+ - uid: 1438
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 1653
+ - uid: 1478
+ components:
+ - type: Transform
+ pos: 20.5,45.5
+ parent: 1653
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 8.5,31.5
+ parent: 1653
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 1.5,31.5
+ parent: 1653
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 1653
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 1653
+ - uid: 827
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 1653
+ - uid: 828
+ components:
+ - type: Transform
+ pos: 8.5,25.5
+ parent: 1653
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+- proto: hydroponicsSoil
+ entities:
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 1653
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 1653
+ - uid: 1061
+ components:
+ - type: Transform
+ pos: 21.5,13.5
+ parent: 1653
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: 21.5,15.5
+ parent: 1653
+ - uid: 1392
+ components:
+ - type: Transform
+ pos: 17.5,13.5
+ parent: 1653
+ - uid: 1398
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 1653
+- proto: hydroponicsTray
+ entities:
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 22.5,25.5
+ parent: 1653
+ - uid: 417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,19.5
+ parent: 1653
+ - uid: 419
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,21.5
+ parent: 1653
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 33.5,0.5
+ parent: 1653
+ - uid: 689
+ components:
+ - type: Transform
+ pos: 32.5,0.5
+ parent: 1653
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: 37.5,9.5
+ parent: 1653
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: 13.5,7.5
+ parent: 1653
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 1653
+ - uid: 1356
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 1653
+ - uid: 1357
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 1653
+ - uid: 1358
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 1653
+ - uid: 1359
+ components:
+ - type: Transform
+ pos: 15.5,9.5
+ parent: 1653
+ - uid: 1360
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 1653
+ - uid: 1361
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 1653
+ - uid: 1362
+ components:
+ - type: Transform
+ pos: 19.5,9.5
+ parent: 1653
+ - uid: 1363
+ components:
+ - type: Transform
+ pos: 21.5,7.5
+ parent: 1653
+ - uid: 1364
+ components:
+ - type: Transform
+ pos: 21.5,8.5
+ parent: 1653
+ - uid: 1365
+ components:
+ - type: Transform
+ pos: 21.5,9.5
+ parent: 1653
+ - uid: 1430
+ components:
+ - type: Transform
+ pos: 29.5,0.5
+ parent: 1653
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: 31.5,0.5
+ parent: 1653
+ - uid: 1555
+ components:
+ - type: Transform
+ pos: 27.5,0.5
+ parent: 1653
+ - uid: 1556
+ components:
+ - type: Transform
+ pos: 28.5,0.5
+ parent: 1653
+ - uid: 1949
+ components:
+ - type: Transform
+ pos: 26.5,28.5
+ parent: 1653
+ - uid: 1950
+ components:
+ - type: Transform
+ pos: 26.5,27.5
+ parent: 1653
+ - uid: 1952
+ components:
+ - type: Transform
+ pos: 26.5,25.5
+ parent: 1653
+ - uid: 1953
+ components:
+ - type: Transform
+ pos: 26.5,24.5
+ parent: 1653
+ - uid: 1954
+ components:
+ - type: Transform
+ pos: 24.5,24.5
+ parent: 1653
+ - uid: 1955
+ components:
+ - type: Transform
+ pos: 24.5,25.5
+ parent: 1653
+ - uid: 1957
+ components:
+ - type: Transform
+ pos: 24.5,27.5
+ parent: 1653
+ - uid: 1981
+ components:
+ - type: Transform
+ pos: 38.5,9.5
+ parent: 1653
+ - uid: 1982
+ components:
+ - type: Transform
+ pos: 39.5,9.5
+ parent: 1653
+ - uid: 1983
+ components:
+ - type: Transform
+ pos: 40.5,9.5
+ parent: 1653
+ - uid: 1985
+ components:
+ - type: Transform
+ pos: 42.5,9.5
+ parent: 1653
+ - uid: 1986
+ components:
+ - type: Transform
+ pos: 43.5,9.5
+ parent: 1653
+ - uid: 1987
+ components:
+ - type: Transform
+ pos: 44.5,9.5
+ parent: 1653
+ - uid: 1988
+ components:
+ - type: Transform
+ pos: 45.5,9.5
+ parent: 1653
+ - uid: 1989
+ components:
+ - type: Transform
+ pos: 37.5,7.5
+ parent: 1653
+ - uid: 1990
+ components:
+ - type: Transform
+ pos: 38.5,7.5
+ parent: 1653
+ - uid: 1991
+ components:
+ - type: Transform
+ pos: 39.5,7.5
+ parent: 1653
+ - uid: 1992
+ components:
+ - type: Transform
+ pos: 40.5,7.5
+ parent: 1653
+ - uid: 1994
+ components:
+ - type: Transform
+ pos: 42.5,7.5
+ parent: 1653
+ - uid: 1995
+ components:
+ - type: Transform
+ pos: 43.5,7.5
+ parent: 1653
+ - uid: 1996
+ components:
+ - type: Transform
+ pos: 44.5,7.5
+ parent: 1653
+ - uid: 1997
+ components:
+ - type: Transform
+ pos: 45.5,7.5
+ parent: 1653
+ - uid: 2183
+ components:
+ - type: Transform
+ pos: 52.5,13.5
+ parent: 1653
+ - uid: 2184
+ components:
+ - type: Transform
+ pos: 52.5,15.5
+ parent: 1653
+ - uid: 2185
+ components:
+ - type: Transform
+ pos: 50.5,13.5
+ parent: 1653
+ - uid: 2186
+ components:
+ - type: Transform
+ pos: 50.5,15.5
+ parent: 1653
+- proto: IceCrust
+ entities:
+ - uid: 147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,30.5
+ parent: 1653
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,31.5
+ parent: 1653
+ - uid: 149
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,31.5
+ parent: 1653
+ - uid: 150
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,31.5
+ parent: 1653
+ - uid: 151
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,31.5
+ parent: 1653
+ - uid: 152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,32.5
+ parent: 1653
+ - uid: 266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,31.5
+ parent: 1653
+ - uid: 267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,32.5
+ parent: 1653
+ - uid: 315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,30.5
+ parent: 1653
+ - uid: 468
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1653
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1653
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1653
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 22.5,3.5
+ parent: 1653
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 1653
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1653
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 1653
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1653
+ - uid: 476
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1653
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1653
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1653
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1653
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 1653
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 12.5,9.5
+ parent: 1653
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 13.5,7.5
+ parent: 1653
+ - uid: 533
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 1653
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 1653
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 1653
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 14.5,6.5
+ parent: 1653
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 1653
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 1653
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 13.5,7.5
+ parent: 1653
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 1653
+ - uid: 605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,32.5
+ parent: 1653
+ - uid: 606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,32.5
+ parent: 1653
+ - uid: 607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,31.5
+ parent: 1653
+ - uid: 608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,31.5
+ parent: 1653
+ - uid: 609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,30.5
+ parent: 1653
+ - uid: 610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,30.5
+ parent: 1653
+ - uid: 611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,31.5
+ parent: 1653
+ - uid: 612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,32.5
+ parent: 1653
+ - uid: 615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,7.5
+ parent: 1653
+ - uid: 616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,7.5
+ parent: 1653
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 33.5,19.5
+ parent: 1653
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 27.5,18.5
+ parent: 1653
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 37.5,3.5
+ parent: 1653
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 1653
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 21.5,6.5
+ parent: 1653
+ - uid: 678
+ components:
+ - type: Transform
+ pos: 31.5,18.5
+ parent: 1653
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 32.5,18.5
+ parent: 1653
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 1653
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 13.5,26.5
+ parent: 1653
+ - uid: 746
+ components:
+ - type: Transform
+ pos: 24.5,22.5
+ parent: 1653
+ - uid: 758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,35.5
+ parent: 1653
+ - uid: 759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,34.5
+ parent: 1653
+ - uid: 760
+ components:
+ - type: Transform
+ pos: 26.5,18.5
+ parent: 1653
+ - uid: 763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,30.5
+ parent: 1653
+ - uid: 765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,30.5
+ parent: 1653
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 1653
+ - uid: 786
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 1653
+ - uid: 793
+ components:
+ - type: Transform
+ pos: 13.5,25.5
+ parent: 1653
+ - uid: 798
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 1653
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 1653
+ - uid: 860
+ components:
+ - type: Transform
+ pos: 38.5,2.5
+ parent: 1653
+ - uid: 867
+ components:
+ - type: Transform
+ pos: 20.5,9.5
+ parent: 1653
+ - uid: 869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,30.5
+ parent: 1653
+ - uid: 870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,31.5
+ parent: 1653
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 1653
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 17.5,6.5
+ parent: 1653
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 9.5,25.5
+ parent: 1653
+ - uid: 979
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 1653
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 36.5,2.5
+ parent: 1653
+ - uid: 986
+ components:
+ - type: Transform
+ pos: 37.5,2.5
+ parent: 1653
+ - uid: 1054
+ components:
+ - type: Transform
+ pos: 25.5,22.5
+ parent: 1653
+ - uid: 1063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,35.5
+ parent: 1653
+ - uid: 1064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,35.5
+ parent: 1653
+ - uid: 1065
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 1653
+ - uid: 1066
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 1653
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 39.5,2.5
+ parent: 1653
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 1653
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: 20.5,7.5
+ parent: 1653
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: 9.5,26.5
+ parent: 1653
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: 14.5,27.5
+ parent: 1653
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 1653
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 1653
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 1653
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 1653
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: 17.5,28.5
+ parent: 1653
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 1653
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 1653
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1653
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 20.5,26.5
+ parent: 1653
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 1653
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 1653
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 0.5,25.5
+ parent: 1653
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 0.5,26.5
+ parent: 1653
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 2.5,28.5
+ parent: 1653
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 2.5,27.5
+ parent: 1653
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 1653
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 1653
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 5.5,25.5
+ parent: 1653
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 5.5,26.5
+ parent: 1653
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: 4.5,26.5
+ parent: 1653
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 0.5,25.5
+ parent: 1653
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 0.5,26.5
+ parent: 1653
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: 2.5,27.5
+ parent: 1653
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 1653
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 1653
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 17.5,26.5
+ parent: 1653
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 18.5,27.5
+ parent: 1653
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1653
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 21.5,7.5
+ parent: 1653
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1653
+ - uid: 1212
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 1653
+ - uid: 1213
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1653
+ - uid: 1214
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 1653
+ - uid: 1215
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1653
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1653
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1653
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 1653
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 1653
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 1653
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 1653
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 1653
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1653
+ - uid: 1304
+ components:
+ - type: Transform
+ pos: 34.5,14.5
+ parent: 1653
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: 32.5,14.5
+ parent: 1653
+ - uid: 1321
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1653
+ - uid: 1322
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1653
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: 33.5,14.5
+ parent: 1653
+ - uid: 1343
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 1653
+ - uid: 1344
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1653
+ - uid: 1345
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 1653
+ - uid: 1346
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 1653
+ - uid: 1347
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1653
+ - uid: 1408
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 1653
+ - uid: 1427
+ components:
+ - type: Transform
+ pos: 38.5,2.5
+ parent: 1653
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1653
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 21.5,26.5
+ parent: 1653
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: 13.5,26.5
+ parent: 1653
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 5.5,27.5
+ parent: 1653
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: 6.5,27.5
+ parent: 1653
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 5.5,27.5
+ parent: 1653
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: 5.5,27.5
+ parent: 1653
+ - uid: 1546
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 1653
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 1653
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 1653
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: 31.5,19.5
+ parent: 1653
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: 33.5,22.5
+ parent: 1653
+ - uid: 1557
+ components:
+ - type: Transform
+ pos: 37.5,3.5
+ parent: 1653
+ - uid: 1558
+ components:
+ - type: Transform
+ pos: 37.5,2.5
+ parent: 1653
+ - uid: 1564
+ components:
+ - type: Transform
+ pos: 38.5,3.5
+ parent: 1653
+ - uid: 1565
+ components:
+ - type: Transform
+ pos: 20.5,7.5
+ parent: 1653
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: 21.5,9.5
+ parent: 1653
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 1653
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 10.5,39.5
+ parent: 1653
+ - uid: 1591
+ components:
+ - type: Transform
+ pos: 11.5,39.5
+ parent: 1653
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: 12.5,39.5
+ parent: 1653
+ - uid: 1593
+ components:
+ - type: Transform
+ pos: 12.5,39.5
+ parent: 1653
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 5.5,26.5
+ parent: 1653
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: 11.5,39.5
+ parent: 1653
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: 10.5,39.5
+ parent: 1653
+ - uid: 1610
+ components:
+ - type: Transform
+ pos: 10.5,40.5
+ parent: 1653
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 11.5,40.5
+ parent: 1653
+ - uid: 1625
+ components:
+ - type: Transform
+ pos: 10.5,38.5
+ parent: 1653
+ - uid: 1626
+ components:
+ - type: Transform
+ pos: 11.5,38.5
+ parent: 1653
+ - uid: 1627
+ components:
+ - type: Transform
+ pos: 9.5,40.5
+ parent: 1653
+ - uid: 1637
+ components:
+ - type: Transform
+ pos: 6.5,27.5
+ parent: 1653
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 5.5,28.5
+ parent: 1653
+ - uid: 1644
+ components:
+ - type: Transform
+ pos: 3.5,39.5
+ parent: 1653
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: 1.5,39.5
+ parent: 1653
+ - uid: 1654
+ components:
+ - type: Transform
+ pos: 1.5,38.5
+ parent: 1653
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: 2.5,39.5
+ parent: 1653
+ - uid: 1656
+ components:
+ - type: Transform
+ pos: 3.5,39.5
+ parent: 1653
+ - uid: 1657
+ components:
+ - type: Transform
+ pos: 1.5,39.5
+ parent: 1653
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: 5.5,39.5
+ parent: 1653
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: 5.5,40.5
+ parent: 1653
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: 4.5,39.5
+ parent: 1653
+ - uid: 1661
+ components:
+ - type: Transform
+ pos: 13.5,38.5
+ parent: 1653
+ - uid: 1662
+ components:
+ - type: Transform
+ pos: 13.5,39.5
+ parent: 1653
+ - uid: 1663
+ components:
+ - type: Transform
+ pos: 13.5,40.5
+ parent: 1653
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: 14.5,39.5
+ parent: 1653
+ - uid: 1665
+ components:
+ - type: Transform
+ pos: 13.5,39.5
+ parent: 1653
+ - uid: 1676
+ components:
+ - type: Transform
+ pos: 19.5,38.5
+ parent: 1653
+ - uid: 1677
+ components:
+ - type: Transform
+ pos: 19.5,38.5
+ parent: 1653
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: 18.5,38.5
+ parent: 1653
+ - uid: 1679
+ components:
+ - type: Transform
+ pos: 18.5,38.5
+ parent: 1653
+ - uid: 1680
+ components:
+ - type: Transform
+ pos: 19.5,38.5
+ parent: 1653
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: 17.5,38.5
+ parent: 1653
+ - uid: 1682
+ components:
+ - type: Transform
+ pos: 17.5,39.5
+ parent: 1653
+ - uid: 1683
+ components:
+ - type: Transform
+ pos: 17.5,40.5
+ parent: 1653
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: 18.5,40.5
+ parent: 1653
+ - uid: 1685
+ components:
+ - type: Transform
+ pos: 16.5,39.5
+ parent: 1653
+ - uid: 1686
+ components:
+ - type: Transform
+ pos: 17.5,39.5
+ parent: 1653
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 1653
+ - uid: 1688
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 1653
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: 22.5,40.5
+ parent: 1653
+ - uid: 1690
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 1653
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: 21.5,38.5
+ parent: 1653
+ - uid: 1692
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 1653
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 1653
+ - uid: 1694
+ components:
+ - type: Transform
+ pos: 21.5,38.5
+ parent: 1653
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 1653
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 22.5,39.5
+ parent: 1653
+ - uid: 1697
+ components:
+ - type: Transform
+ pos: 12.5,38.5
+ parent: 1653
+ - uid: 1700
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 1653
+ - uid: 1722
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 1653
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 1653
+ - uid: 1757
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1653
+ - uid: 1758
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 1653
+ - uid: 1759
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 1653
+ - uid: 1773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,13.5
+ parent: 1653
+ - uid: 1774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,14.5
+ parent: 1653
+ - uid: 1775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,15.5
+ parent: 1653
+ - uid: 1776
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,14.5
+ parent: 1653
+ - uid: 1777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,14.5
+ parent: 1653
+ - uid: 1778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,13.5
+ parent: 1653
+ - uid: 1779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,15.5
+ parent: 1653
+ - uid: 1780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,12.5
+ parent: 1653
+ - uid: 1781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,13.5
+ parent: 1653
+ - uid: 1782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,14.5
+ parent: 1653
+ - uid: 1783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,14.5
+ parent: 1653
+ - uid: 1784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,13.5
+ parent: 1653
+ - uid: 1785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,13.5
+ parent: 1653
+ - uid: 1786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,14.5
+ parent: 1653
+ - uid: 1787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,14.5
+ parent: 1653
+ - uid: 1788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,12.5
+ parent: 1653
+ - uid: 1789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,16.5
+ parent: 1653
+ - uid: 1790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,16.5
+ parent: 1653
+ - uid: 1791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,16.5
+ parent: 1653
+ - uid: 1792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,16.5
+ parent: 1653
+ - uid: 1793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,16.5
+ parent: 1653
+ - uid: 1794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,19.5
+ parent: 1653
+ - uid: 1795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,20.5
+ parent: 1653
+ - uid: 1796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,20.5
+ parent: 1653
+ - uid: 1797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,19.5
+ parent: 1653
+ - uid: 1798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,20.5
+ parent: 1653
+ - uid: 1799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,20.5
+ parent: 1653
+ - uid: 1800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,19.5
+ parent: 1653
+ - uid: 1801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,20.5
+ parent: 1653
+ - uid: 1802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,21.5
+ parent: 1653
+ - uid: 1803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,21.5
+ parent: 1653
+ - uid: 1804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,20.5
+ parent: 1653
+ - uid: 1805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,18.5
+ parent: 1653
+ - uid: 1806
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 1653
+ - uid: 1807
+ components:
+ - type: Transform
+ pos: 25.5,22.5
+ parent: 1653
+ - uid: 1808
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 1653
+ - uid: 1809
+ components:
+ - type: Transform
+ pos: 0.5,14.5
+ parent: 1653
+ - uid: 1810
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 1653
+ - uid: 1811
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 1653
+ - uid: 1812
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 1653
+ - uid: 1813
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 1653
+ - uid: 1814
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 1653
+ - uid: 1815
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1653
+ - uid: 1816
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 1653
+ - uid: 1817
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1653
+ - uid: 1818
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 1653
+ - uid: 1819
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 1653
+ - uid: 1820
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1653
+ - uid: 1821
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1653
+ - uid: 1822
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 1653
+ - uid: 1823
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 1653
+ - uid: 1824
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1653
+ - uid: 1825
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1653
+ - uid: 1826
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 1653
+ - uid: 1828
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1653
+ - uid: 1829
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1653
+ - uid: 1830
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1653
+ - uid: 1832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,8.5
+ parent: 1653
+ - uid: 1843
+ components:
+ - type: Transform
+ pos: 38.5,1.5
+ parent: 1653
+ - uid: 1844
+ components:
+ - type: Transform
+ pos: 38.5,1.5
+ parent: 1653
+ - uid: 1845
+ components:
+ - type: Transform
+ pos: 38.5,2.5
+ parent: 1653
+ - uid: 1846
+ components:
+ - type: Transform
+ pos: 40.5,2.5
+ parent: 1653
+ - uid: 1847
+ components:
+ - type: Transform
+ pos: 42.5,2.5
+ parent: 1653
+ - uid: 1848
+ components:
+ - type: Transform
+ pos: 43.5,2.5
+ parent: 1653
+ - uid: 1849
+ components:
+ - type: Transform
+ pos: 49.5,2.5
+ parent: 1653
+ - uid: 1850
+ components:
+ - type: Transform
+ pos: 52.5,2.5
+ parent: 1653
+ - uid: 1851
+ components:
+ - type: Transform
+ pos: 53.5,1.5
+ parent: 1653
+ - uid: 1852
+ components:
+ - type: Transform
+ pos: 53.5,0.5
+ parent: 1653
+ - uid: 1853
+ components:
+ - type: Transform
+ pos: 52.5,2.5
+ parent: 1653
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: 53.5,1.5
+ parent: 1653
+ - uid: 1855
+ components:
+ - type: Transform
+ pos: 33.5,3.5
+ parent: 1653
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: 32.5,3.5
+ parent: 1653
+ - uid: 1857
+ components:
+ - type: Transform
+ pos: 31.5,3.5
+ parent: 1653
+ - uid: 1858
+ components:
+ - type: Transform
+ pos: 31.5,2.5
+ parent: 1653
+ - uid: 1859
+ components:
+ - type: Transform
+ pos: 31.5,3.5
+ parent: 1653
+ - uid: 1860
+ components:
+ - type: Transform
+ pos: 32.5,3.5
+ parent: 1653
+ - uid: 1861
+ components:
+ - type: Transform
+ pos: 33.5,0.5
+ parent: 1653
+ - uid: 1862
+ components:
+ - type: Transform
+ pos: 32.5,0.5
+ parent: 1653
+ - uid: 1863
+ components:
+ - type: Transform
+ pos: 32.5,1.5
+ parent: 1653
+ - uid: 1864
+ components:
+ - type: Transform
+ pos: 32.5,0.5
+ parent: 1653
+ - uid: 1865
+ components:
+ - type: Transform
+ pos: 33.5,0.5
+ parent: 1653
+ - uid: 1866
+ components:
+ - type: Transform
+ pos: 28.5,3.5
+ parent: 1653
+ - uid: 1867
+ components:
+ - type: Transform
+ pos: 27.5,3.5
+ parent: 1653
+ - uid: 1868
+ components:
+ - type: Transform
+ pos: 27.5,2.5
+ parent: 1653
+ - uid: 1869
+ components:
+ - type: Transform
+ pos: 27.5,3.5
+ parent: 1653
+ - uid: 1870
+ components:
+ - type: Transform
+ pos: 27.5,3.5
+ parent: 1653
+ - uid: 1871
+ components:
+ - type: Transform
+ pos: 23.5,3.5
+ parent: 1653
+ - uid: 1872
+ components:
+ - type: Transform
+ pos: 21.5,3.5
+ parent: 1653
+ - uid: 1873
+ components:
+ - type: Transform
+ pos: 21.5,3.5
+ parent: 1653
+ - uid: 1874
+ components:
+ - type: Transform
+ pos: 22.5,3.5
+ parent: 1653
+ - uid: 1883
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 1653
+ - uid: 1884
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1653
+ - uid: 1885
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1653
+ - uid: 1886
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1653
+ - uid: 1887
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1653
+ - uid: 1900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,35.5
+ parent: 1653
+ - uid: 1901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,36.5
+ parent: 1653
+ - uid: 1902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,35.5
+ parent: 1653
+ - uid: 1903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,35.5
+ parent: 1653
+ - uid: 1904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,35.5
+ parent: 1653
+ - uid: 1905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,35.5
+ parent: 1653
+ - uid: 1906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,36.5
+ parent: 1653
+ - uid: 1919
+ components:
+ - type: Transform
+ pos: 32.5,35.5
+ parent: 1653
+ - uid: 1920
+ components:
+ - type: Transform
+ pos: 32.5,34.5
+ parent: 1653
+ - uid: 1921
+ components:
+ - type: Transform
+ pos: 32.5,35.5
+ parent: 1653
+ - uid: 1922
+ components:
+ - type: Transform
+ pos: 31.5,35.5
+ parent: 1653
+ - uid: 1923
+ components:
+ - type: Transform
+ pos: 26.5,36.5
+ parent: 1653
+ - uid: 1924
+ components:
+ - type: Transform
+ pos: 27.5,36.5
+ parent: 1653
+ - uid: 1925
+ components:
+ - type: Transform
+ pos: 25.5,36.5
+ parent: 1653
+ - uid: 1926
+ components:
+ - type: Transform
+ pos: 26.5,36.5
+ parent: 1653
+ - uid: 2000
+ components:
+ - type: Transform
+ pos: 42.5,6.5
+ parent: 1653
+ - uid: 2001
+ components:
+ - type: Transform
+ pos: 43.5,6.5
+ parent: 1653
+ - uid: 2002
+ components:
+ - type: Transform
+ pos: 43.5,7.5
+ parent: 1653
+ - uid: 2003
+ components:
+ - type: Transform
+ pos: 40.5,8.5
+ parent: 1653
+ - uid: 2004
+ components:
+ - type: Transform
+ pos: 38.5,8.5
+ parent: 1653
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: 37.5,8.5
+ parent: 1653
+ - uid: 2006
+ components:
+ - type: Transform
+ pos: 36.5,9.5
+ parent: 1653
+ - uid: 2066
+ components:
+ - type: Transform
+ pos: 29.5,24.5
+ parent: 1653
+ - uid: 2067
+ components:
+ - type: Transform
+ pos: 29.5,25.5
+ parent: 1653
+ - uid: 2068
+ components:
+ - type: Transform
+ pos: 28.5,25.5
+ parent: 1653
+ - uid: 2069
+ components:
+ - type: Transform
+ pos: 28.5,26.5
+ parent: 1653
+ - uid: 2070
+ components:
+ - type: Transform
+ pos: 29.5,25.5
+ parent: 1653
+ - uid: 2071
+ components:
+ - type: Transform
+ pos: 29.5,24.5
+ parent: 1653
+ - uid: 2072
+ components:
+ - type: Transform
+ pos: 28.5,26.5
+ parent: 1653
+ - uid: 2073
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 1653
+ - uid: 2074
+ components:
+ - type: Transform
+ pos: 25.5,25.5
+ parent: 1653
+ - uid: 2075
+ components:
+ - type: Transform
+ pos: 26.5,25.5
+ parent: 1653
+ - uid: 2076
+ components:
+ - type: Transform
+ pos: 26.5,25.5
+ parent: 1653
+ - uid: 2077
+ components:
+ - type: Transform
+ pos: 25.5,25.5
+ parent: 1653
+ - uid: 2078
+ components:
+ - type: Transform
+ pos: 25.5,27.5
+ parent: 1653
+ - uid: 2079
+ components:
+ - type: Transform
+ pos: 21.5,26.5
+ parent: 1653
+ - uid: 2080
+ components:
+ - type: Transform
+ pos: 17.5,26.5
+ parent: 1653
+ - uid: 2081
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 1653
+ - uid: 2089
+ components:
+ - type: Transform
+ pos: 41.5,14.5
+ parent: 1653
+ - uid: 2090
+ components:
+ - type: Transform
+ pos: 41.5,13.5
+ parent: 1653
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: 41.5,12.5
+ parent: 1653
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 1653
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: 41.5,14.5
+ parent: 1653
+ - uid: 2094
+ components:
+ - type: Transform
+ pos: 42.5,15.5
+ parent: 1653
+ - uid: 2095
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 1653
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 1653
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: 42.5,14.5
+ parent: 1653
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 1653
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: 45.5,15.5
+ parent: 1653
+ - uid: 2100
+ components:
+ - type: Transform
+ pos: 43.5,14.5
+ parent: 1653
+ - uid: 2101
+ components:
+ - type: Transform
+ pos: 41.5,15.5
+ parent: 1653
+ - uid: 2102
+ components:
+ - type: Transform
+ pos: 41.5,15.5
+ parent: 1653
+ - uid: 2103
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 1653
+ - uid: 2104
+ components:
+ - type: Transform
+ pos: 32.5,25.5
+ parent: 1653
+ - uid: 2105
+ components:
+ - type: Transform
+ pos: 32.5,26.5
+ parent: 1653
+ - uid: 2106
+ components:
+ - type: Transform
+ pos: 33.5,25.5
+ parent: 1653
+ - uid: 2107
+ components:
+ - type: Transform
+ pos: 33.5,24.5
+ parent: 1653
+ - uid: 2108
+ components:
+ - type: Transform
+ pos: 33.5,25.5
+ parent: 1653
+ - uid: 2109
+ components:
+ - type: Transform
+ pos: 32.5,25.5
+ parent: 1653
+ - uid: 2110
+ components:
+ - type: Transform
+ pos: 32.5,26.5
+ parent: 1653
+ - uid: 2111
+ components:
+ - type: Transform
+ pos: 32.5,27.5
+ parent: 1653
+ - uid: 2112
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 1653
+ - uid: 2142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,15.5
+ parent: 1653
+ - uid: 2143
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,14.5
+ parent: 1653
+ - uid: 2144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,13.5
+ parent: 1653
+ - uid: 2145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,15.5
+ parent: 1653
+ - uid: 2146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,14.5
+ parent: 1653
+ - uid: 2147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,13.5
+ parent: 1653
+ - uid: 2148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,13.5
+ parent: 1653
+ - uid: 2149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,14.5
+ parent: 1653
+ - uid: 2150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,14.5
+ parent: 1653
+ - uid: 2151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,15.5
+ parent: 1653
+ - uid: 2152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,14.5
+ parent: 1653
+ - uid: 2153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,13.5
+ parent: 1653
+ - uid: 2154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,12.5
+ parent: 1653
+ - uid: 2155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,12.5
+ parent: 1653
+ - uid: 2156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,13.5
+ parent: 1653
+ - uid: 2157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,13.5
+ parent: 1653
+ - uid: 2158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,14.5
+ parent: 1653
+ - uid: 2159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,15.5
+ parent: 1653
+ - uid: 2160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,15.5
+ parent: 1653
+ - uid: 2161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,16.5
+ parent: 1653
+ - uid: 2162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,16.5
+ parent: 1653
+ - uid: 2163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,16.5
+ parent: 1653
+ - uid: 2164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,16.5
+ parent: 1653
+ - uid: 2165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,14.5
+ parent: 1653
+ - uid: 2166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,13.5
+ parent: 1653
+ - uid: 2167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,14.5
+ parent: 1653
+ - uid: 2168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,13.5
+ parent: 1653
+ - uid: 2169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,15.5
+ parent: 1653
+ - uid: 2170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,14.5
+ parent: 1653
+ - uid: 2171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,12.5
+ parent: 1653
+ - uid: 2172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,14.5
+ parent: 1653
+ - uid: 2173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,14.5
+ parent: 1653
+ - uid: 2174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,15.5
+ parent: 1653
+ - uid: 2175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,13.5
+ parent: 1653
+ - uid: 2176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,14.5
+ parent: 1653
+ - uid: 2177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,14.5
+ parent: 1653
+ - uid: 2178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,2.5
+ parent: 1653
+ - uid: 2179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,1.5
+ parent: 1653
+ - uid: 2180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,2.5
+ parent: 1653
+ - uid: 2181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,2.5
+ parent: 1653
+ - uid: 2196
+ components:
+ - type: Transform
+ pos: 34.5,14.5
+ parent: 1653
+ - uid: 2197
+ components:
+ - type: Transform
+ pos: 34.5,15.5
+ parent: 1653
+ - uid: 2198
+ components:
+ - type: Transform
+ pos: 34.5,16.5
+ parent: 1653
+ - uid: 2199
+ components:
+ - type: Transform
+ pos: 33.5,14.5
+ parent: 1653
+ - uid: 2200
+ components:
+ - type: Transform
+ pos: 35.5,15.5
+ parent: 1653
+ - uid: 2201
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 1653
+ - uid: 2202
+ components:
+ - type: Transform
+ pos: 36.5,15.5
+ parent: 1653
+ - uid: 2203
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1653
+ - uid: 2204
+ components:
+ - type: Transform
+ pos: 37.5,14.5
+ parent: 1653
+ - uid: 2205
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1653
+ - uid: 2206
+ components:
+ - type: Transform
+ pos: 34.5,14.5
+ parent: 1653
+ - uid: 2207
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 1653
+ - uid: 2208
+ components:
+ - type: Transform
+ pos: 35.5,15.5
+ parent: 1653
+ - uid: 2209
+ components:
+ - type: Transform
+ pos: 35.5,16.5
+ parent: 1653
+ - uid: 2210
+ components:
+ - type: Transform
+ pos: 34.5,16.5
+ parent: 1653
+ - uid: 2211
+ components:
+ - type: Transform
+ pos: 34.5,15.5
+ parent: 1653
+- proto: KudzuFlowerFriendly
+ entities:
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 19.5,45.5
+ parent: 1653
+- proto: Lamp
+ entities:
+ - uid: 769
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.457528,31.735847
+ parent: 1653
+ - uid: 1208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4514933,45.40301
+ parent: 1653
+ - uid: 1319
+ components:
+ - type: Transform
+ pos: 35.611282,15.476883
+ parent: 1653
+- proto: LampGold
+ entities:
+ - uid: 775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,32.5
+ parent: 1653
+- proto: LightTree05
+ entities:
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 19.507784,45.542137
+ parent: 1653
+- proto: LockerBotanistLoot
+ entities:
+ - uid: 2027
+ components:
+ - type: Transform
+ pos: 8.5,25.5
+ parent: 1653
+ - uid: 2060
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 1653
+ - uid: 2065
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 1653
+ - uid: 2248
+ components:
+ - type: Transform
+ pos: 45.5,40.5
+ parent: 1653
+- proto: LockerScienceFilled
+ entities:
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 14.5,25.5
+ parent: 1653
+- proto: MachineAPE
+ entities:
+ - uid: 2139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,14.5
+ parent: 1653
+- proto: MachineFrame
+ entities:
+ - uid: 1110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,26.5
+ parent: 1653
+- proto: MagicalLamp
+ entities:
+ - uid: 1204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5085075,47.438328
+ parent: 1653
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 1245
+ components:
+ - type: Transform
+ pos: 48.5,4.5
+ parent: 1653
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: 46.5,3.5
+ parent: 1653
+- proto: MaterialBiomass
+ entities:
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 24.534355,0.41658816
+ parent: 1653
+ - uid: 1753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.496466,15.684341
+ parent: 1653
+ - uid: 1754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.590216,15.590591
+ parent: 1653
+- proto: Mirror
+ entities:
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1653
+ - uid: 893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,19.5
+ parent: 1653
+- proto: PercentileDie
+ entities:
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 17.44835,14.326076
+ parent: 1653
+- proto: PlushieDiona
+ entities:
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 20.508192,0.61549807
+ parent: 1653
+- proto: PlushieSharkGrey
+ entities:
+ - uid: 926
+ components:
+ - type: Transform
+ pos: 6.4745436,18.474607
+ parent: 1653
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 1716
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 1653
+- proto: PortableGeneratorPacman
+ entities:
+ - uid: 489
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 1653
+ - uid: 1528
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1653
+ - uid: 1529
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1653
+- proto: PottedPlant19
+ entities:
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 4.4883204,10.239479
+ parent: 1653
+- proto: PottedPlantRandom
+ entities:
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 3.5,40.5
+ parent: 1653
+ - uid: 521
+ components:
+ - type: Transform
+ pos: 24.5,40.5
+ parent: 1653
+- proto: PottedPlantRandomPlastic
+ entities:
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 1653
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 12.5,36.5
+ parent: 1653
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 12.5,28.5
+ parent: 1653
+- proto: PowerCellRecharger
+ entities:
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 2187
+ components:
+ - type: Transform
+ pos: 49.5,13.5
+ parent: 1653
+- proto: Poweredlight
+ entities:
+ - uid: 77
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,15.5
+ parent: 1653
+ - uid: 79
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,13.5
+ parent: 1653
+ - uid: 123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,30.5
+ parent: 1653
+ - uid: 301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,30.5
+ parent: 1653
+ - uid: 325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 1653
+ - uid: 326
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,2.5
+ parent: 1653
+ - uid: 327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,3.5
+ parent: 1653
+ - uid: 328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,3.5
+ parent: 1653
+ - uid: 485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,45.5
+ parent: 1653
+ - uid: 487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,13.5
+ parent: 1653
+ - uid: 488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,4.5
+ parent: 1653
+ - uid: 499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,38.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,38.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,38.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 42.5,40.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 634
+ components:
+ - type: Transform
+ pos: 2.5,36.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,34.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 657
+ components:
+ - type: Transform
+ pos: 14.5,36.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,34.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 27.5,36.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 770
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 771
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,31.5
+ parent: 1653
+ - uid: 932
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,19.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,21.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 15.5,22.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,18.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,18.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,18.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,3.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,1.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1291
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,15.5
+ parent: 1653
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 35.5,12.5
+ parent: 1653
+ - uid: 1294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,0.5
+ parent: 1653
+ - uid: 1301
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1653
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1653
+ - uid: 1307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,48.5
+ parent: 1653
+ - uid: 1320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,16.5
+ parent: 1653
+ - uid: 1385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,8.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,8.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: 27.5,4.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1720
+ components:
+ - type: Transform
+ pos: 3.5,42.5
+ parent: 1653
+ - uid: 1721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,45.5
+ parent: 1653
+ - uid: 1733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,14.5
+ parent: 1653
+ - uid: 1734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,14.5
+ parent: 1653
+ - uid: 1875
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,27.5
+ parent: 1653
+ - uid: 1977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,38.5
+ parent: 1653
+ - uid: 1978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,26.5
+ parent: 1653
+ - uid: 1979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,18.5
+ parent: 1653
+ - uid: 1980
+ components:
+ - type: Transform
+ pos: 33.5,22.5
+ parent: 1653
+ - uid: 2063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,27.5
+ parent: 1653
+ - uid: 2117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,6.5
+ parent: 1653
+ - uid: 2118
+ components:
+ - type: Transform
+ pos: 42.5,10.5
+ parent: 1653
+ - uid: 2245
+ components:
+ - type: Transform
+ pos: 9.5,32.5
+ parent: 1653
+- proto: PoweredlightCyan
+ entities:
+ - uid: 1701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,39.5
+ parent: 1653
+- proto: PoweredlightEmpty
+ entities:
+ - uid: 738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,34.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredSmallLight
+ entities:
+ - uid: 320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,0.5
+ parent: 1653
+ - uid: 323
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,0.5
+ parent: 1653
+ - uid: 586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,42.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,44.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,44.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,25.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,25.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,19.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,22.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 949
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,6.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: 41.5,4.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1261
+ components:
+ - type: Transform
+ pos: 49.5,4.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,42.5
+ parent: 1653
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: 21.5,48.5
+ parent: 1653
+ - uid: 1727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,12.5
+ parent: 1653
+ - uid: 1728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,12.5
+ parent: 1653
+ - uid: 1729
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 1653
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,27.5
+ parent: 1653
+ - uid: 526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,27.5
+ parent: 1653
+ - uid: 737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,25.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,12.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: Rack
+ entities:
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 4.5,28.5
+ parent: 1653
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 1653
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 20.5,36.5
+ parent: 1653
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 21.5,36.5
+ parent: 1653
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 6.5,27.5
+ parent: 1653
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 4.5,25.5
+ parent: 1653
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 16.5,24.5
+ parent: 1653
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 12.5,24.5
+ parent: 1653
+ - uid: 845
+ components:
+ - type: Transform
+ pos: 20.5,24.5
+ parent: 1653
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 1653
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 1653
+ - uid: 930
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 1653
+ - uid: 1047
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1653
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 1653
+ - uid: 1081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,15.5
+ parent: 1653
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 1653
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 1653
+ - uid: 1256
+ components:
+ - type: Transform
+ pos: 46.5,3.5
+ parent: 1653
+ - uid: 1947
+ components:
+ - type: Transform
+ pos: 53.5,38.5
+ parent: 1653
+- proto: Railing
+ entities:
+ - uid: 936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,18.5
+ parent: 1653
+ - uid: 940
+ components:
+ - type: Transform
+ pos: 12.5,19.5
+ parent: 1653
+ - uid: 2062
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,38.5
+ parent: 1653
+- proto: RailingCornerSmall
+ entities:
+ - uid: 528
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,39.5
+ parent: 1653
+ - uid: 529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,39.5
+ parent: 1653
+ - uid: 943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,19.5
+ parent: 1653
+ - uid: 2247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,38.5
+ parent: 1653
+- proto: RandomInstruments
+ entities:
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 1653
+ - uid: 1248
+ components:
+ - type: Transform
+ pos: 48.5,0.5
+ parent: 1653
+- proto: RandomPosterContraband
+ entities:
+ - uid: 1274
+ components:
+ - type: Transform
+ pos: 43.5,4.5
+ parent: 1653
+ - uid: 1275
+ components:
+ - type: Transform
+ pos: 47.5,0.5
+ parent: 1653
+ - uid: 1276
+ components:
+ - type: Transform
+ pos: 39.5,0.5
+ parent: 1653
+- proto: RandomSoap
+ entities:
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+- proto: RandomSpawner
+ entities:
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 1653
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 5.5,38.5
+ parent: 1653
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 29.5,40.5
+ parent: 1653
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 18.5,38.5
+ parent: 1653
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 37.5,38.5
+ parent: 1653
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 41.5,40.5
+ parent: 1653
+ - uid: 1894
+ components:
+ - type: Transform
+ pos: 8.5,31.5
+ parent: 1653
+ - uid: 2115
+ components:
+ - type: Transform
+ pos: 4.5,30.5
+ parent: 1653
+ - uid: 2246
+ components:
+ - type: Transform
+ pos: 1.5,31.5
+ parent: 1653
+- proto: RandomSpawner100
+ entities:
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: 21.5,43.5
+ parent: 1653
+ - uid: 1456
+ components:
+ - type: Transform
+ pos: 17.5,47.5
+ parent: 1653
+- proto: ReinforcedUraniumWindow
+ entities:
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1653
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1653
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1653
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 4.5,14.5
+ parent: 1653
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1653
+ - uid: 813
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 1653
+ - uid: 820
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 1653
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1653
+- proto: ReinforcedWindow
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ pos: 19.5,44.5
+ parent: 1653
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 20.5,44.5
+ parent: 1653
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 20.5,45.5
+ parent: 1653
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 18.5,46.5
+ parent: 1653
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 1653
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 18.5,45.5
+ parent: 1653
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 18.5,44.5
+ parent: 1653
+ - uid: 625
+ components:
+ - type: Transform
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 17.5,30.5
+ parent: 1653
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 1653
+- proto: SalvageMaterialCrateSpawner
+ entities:
+ - uid: 2024
+ components:
+ - type: Transform
+ pos: 34.5,27.5
+ parent: 1653
+- proto: SeedExtractor
+ entities:
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 5.5,15.5
+ parent: 1653
+ - uid: 1373
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 1653
+ - uid: 1984
+ components:
+ - type: Transform
+ pos: 41.5,9.5
+ parent: 1653
+- proto: ShardCrystalCyan
+ entities:
+ - uid: 119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.534214,35.622967
+ parent: 1653
+ - uid: 1915
+ components:
+ - type: Transform
+ pos: 32.723732,35.237103
+ parent: 1653
+ - uid: 1916
+ components:
+ - type: Transform
+ pos: 25.848734,36.330853
+ parent: 1653
+ - uid: 2082
+ components:
+ - type: Transform
+ pos: 32.498764,25.506607
+ parent: 1653
+- proto: ShuttersWindow
+ entities:
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 10.5,43.5
+ parent: 1653
+ - type: DeviceLinkSink
+ links:
+ - 583
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+ - type: DeviceLinkSink
+ links:
+ - 583
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 12.5,43.5
+ parent: 1653
+ - type: DeviceLinkSink
+ links:
+ - 583
+- proto: SignalButton
+ entities:
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 9.5,43.5
+ parent: 1653
+ - type: DeviceLinkSource
+ linkedPorts:
+ 580:
+ - Pressed: Toggle
+ 581:
+ - Pressed: Toggle
+ 582:
+ - Pressed: Toggle
+- proto: SignElectricalMed
+ entities:
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 8.5,43.5
+ parent: 1653
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: 28.5,9.5
+ parent: 1653
+- proto: SignHydro2
+ entities:
+ - uid: 1059
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 1653
+- proto: SignHydro3
+ entities:
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: 33.5,4.5
+ parent: 1653
+- proto: SignRedFour
+ entities:
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: 48.5,1.5
+ parent: 1653
+- proto: SignRedOne
+ entities:
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: 40.5,3.5
+ parent: 1653
+- proto: SignRedThree
+ entities:
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 48.5,3.5
+ parent: 1653
+- proto: SignRedTwo
+ entities:
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 40.5,1.5
+ parent: 1653
+- proto: SignSecureMed
+ entities:
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 1653
+- proto: SignShock
+ entities:
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 1653
+- proto: SilverDoor
+ entities:
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 1653
+- proto: SinkWide
+ entities:
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1653
+ - uid: 891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,19.5
+ parent: 1653
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1653
+- proto: SmartFridge
+ entities:
+ - uid: 1458
+ components:
+ - type: Transform
+ pos: 23.5,4.5
+ parent: 1653
+- proto: SMESBasic
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+- proto: SpawnDungeonClutterBeakerEmpty
+ entities:
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 22.578753,4.7105246
+ parent: 1653
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 20.735003,4.6323996
+ parent: 1653
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 22.487473,0.61677456
+ parent: 1653
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 21.313128,4.5855246
+ parent: 1653
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 22.235003,4.6167746
+ parent: 1653
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 22.000628,4.7261496
+ parent: 1653
+- proto: SpawnDungeonLootBureaucracy
+ entities:
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 10.518263,32.310562
+ parent: 1653
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 24.568518,31.632536
+ parent: 1653
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 5.4328747,44.407043
+ parent: 1653
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 5.4484997,44.125793
+ parent: 1653
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 18.631018,32.398163
+ parent: 1653
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 5.3859997,43.57892
+ parent: 1653
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 30.753098,4.5073996
+ parent: 1653
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 14.480504,28.48407
+ parent: 1653
+ - uid: 868
+ components:
+ - type: Transform
+ pos: 10.440138,32.544937
+ parent: 1653
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 36.49569,15.514067
+ parent: 1653
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 4.3547497,43.57892
+ parent: 1653
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 3.6516247,43.57892
+ parent: 1653
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 1.4641247,45.688293
+ parent: 1653
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 22.490393,30.64816
+ parent: 1653
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 5.4797497,44.563293
+ parent: 1653
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 35.480064,14.607817
+ parent: 1653
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 1.4328747,46.594543
+ parent: 1653
+ - uid: 2064
+ components:
+ - type: Transform
+ pos: 7.502638,30.513687
+ parent: 1653
+ - uid: 2217
+ components:
+ - type: Transform
+ pos: 34.448814,15.514067
+ parent: 1653
+ - uid: 2218
+ components:
+ - type: Transform
+ pos: 34.948814,15.498442
+ parent: 1653
+ - uid: 2224
+ components:
+ - type: Transform
+ pos: 24.990393,31.67941
+ parent: 1653
+ - uid: 2229
+ components:
+ - type: Transform
+ pos: 3.5109997,47.563293
+ parent: 1653
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 16.5,25.5
+ parent: 1653
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 1653
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1653
+- proto: SpawnDungeonLootChems
+ entities:
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 32.206223,4.5230246
+ parent: 1653
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 4.503058,28.60907
+ parent: 1653
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: 2.6047497,47.563293
+ parent: 1653
+ - uid: 2025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.448061,28.526066
+ parent: 1653
+ - uid: 2223
+ components:
+ - type: Transform
+ pos: 6.581183,24.562195
+ parent: 1653
+- proto: SpawnDungeonLootClothesHydroponics
+ entities:
+ - uid: 2269
+ components:
+ - type: Transform
+ pos: 5.3017564,13.473675
+ parent: 1653
+ - uid: 2270
+ components:
+ - type: Transform
+ pos: 1.2392564,13.754925
+ parent: 1653
+ - uid: 2271
+ components:
+ - type: Transform
+ pos: 29.49205,15.426281
+ parent: 1653
+ - uid: 2272
+ components:
+ - type: Transform
+ pos: 41.53189,13.473156
+ parent: 1653
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 4.737433,25.60907
+ parent: 1653
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 6.503058,25.67157
+ parent: 1653
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 4.503058,27.54657
+ parent: 1653
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 4.721808,27.780945
+ parent: 1653
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 6.471808,27.499695
+ parent: 1653
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 6.440558,25.499695
+ parent: 1653
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 42.636295,12.625773
+ parent: 1653
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 42.355045,12.735148
+ parent: 1653
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 42.480045,12.875773
+ parent: 1653
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: 4.487433,25.57782
+ parent: 1653
+- proto: SpawnDungeonLootClutterHydroponics
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.40123,24.586424
+ parent: 1653
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 7.4423814,6.665559
+ parent: 1653
+ - uid: 650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.573105,24.664549
+ parent: 1653
+ - uid: 794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.36998,24.602049
+ parent: 1653
+ - uid: 834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.653194,28.13544
+ parent: 1653
+ - uid: 839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.38757,28.557316
+ parent: 1653
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 15.14456,32.052025
+ parent: 1653
+ - uid: 1703
+ components:
+ - type: Transform
+ pos: 19.472685,30.69265
+ parent: 1653
+ - uid: 1878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4273477,45.6148
+ parent: 1653
+ - uid: 1951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.403194,27.66669
+ parent: 1653
+ - uid: 2011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.38934,38.48503
+ parent: 1653
+ - uid: 2116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.65123,24.664549
+ parent: 1653
+ - uid: 2137
+ components:
+ - type: Transform
+ pos: 39.424786,9.088586
+ parent: 1653
+ - uid: 2138
+ components:
+ - type: Transform
+ pos: 19.969307,8.854211
+ parent: 1653
+ - uid: 2214
+ components:
+ - type: Transform
+ pos: 35.28683,15.295544
+ parent: 1653
+ - uid: 2232
+ components:
+ - type: Transform
+ pos: 42.617554,13.561169
+ parent: 1653
+ - uid: 2236
+ components:
+ - type: Transform
+ pos: 20.1924,13.848073
+ parent: 1653
+ - uid: 2237
+ components:
+ - type: Transform
+ pos: 33.63986,20.553396
+ parent: 1653
+ - uid: 2238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.63757,28.744816
+ parent: 1653
+ - uid: 2249
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.8492227,47.380424
+ parent: 1653
+ - uid: 2250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.6617227,46.08355
+ parent: 1653
+ - uid: 2255
+ components:
+ - type: Transform
+ pos: 20.6022,48.52105
+ parent: 1653
+ - uid: 2256
+ components:
+ - type: Transform
+ pos: 0.43621778,10.024246
+ parent: 1653
+ - uid: 2257
+ components:
+ - type: Transform
+ pos: 1.2330928,10.617996
+ parent: 1653
+ - uid: 2258
+ components:
+ - type: Transform
+ pos: 2.440703,7.2658243
+ parent: 1653
+ - uid: 2259
+ components:
+ - type: Transform
+ pos: 7.830083,7.3908243
+ parent: 1653
+ - uid: 2261
+ components:
+ - type: Transform
+ pos: 53.629864,15.631865
+ parent: 1653
+ - uid: 2262
+ components:
+ - type: Transform
+ pos: 23.43045,2.4296584
+ parent: 1653
+ - uid: 2263
+ components:
+ - type: Transform
+ pos: 30.352325,4.7421584
+ parent: 1653
+ - uid: 2264
+ components:
+ - type: Transform
+ pos: 31.74295,0.9296584
+ parent: 1653
+- proto: SpawnDungeonLootClutterKitchen
+ entities:
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 12.651115,2.5121582
+ parent: 1653
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 12.41674,2.6215332
+ parent: 1653
+- proto: SpawnDungeonLootClutterScience
+ entities:
+ - uid: 2265
+ components:
+ - type: Transform
+ pos: 8.562203,2.4727616
+ parent: 1653
+ - uid: 2266
+ components:
+ - type: Transform
+ pos: 31.583153,4.6446366
+ parent: 1653
+ - uid: 2267
+ components:
+ - type: Transform
+ pos: 32.782368,4.6290116
+ parent: 1653
+ - uid: 2268
+ components:
+ - type: Transform
+ pos: 50.21827,0.5016017
+ parent: 1653
+ - uid: 2273
+ components:
+ - type: Transform
+ pos: 21.5888,22.661402
+ parent: 1653
+ - uid: 2274
+ components:
+ - type: Transform
+ pos: 0.32714605,18.575994
+ parent: 1653
+- proto: SpawnDungeonLootCrateVehicle
+ entities:
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 18.5,28.5
+ parent: 1653
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 846
+ components:
+ - type: Transform
+ pos: 41.456974,12.607817
+ parent: 1653
+ - uid: 953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,9.5
+ parent: 1653
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 20.377567,40.61003
+ parent: 1653
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: 10.576561,0.64632124
+ parent: 1653
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: 16.495552,18.596146
+ parent: 1653
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 5.556635,4.5625
+ parent: 1653
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 4.431635,2.609375
+ parent: 1653
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 12.433053,22.58052
+ parent: 1653
+- proto: SpawnDungeonLootKitchenTabletop
+ entities:
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+- proto: SpawnDungeonLootLatheEngi
+ entities:
+ - uid: 2140
+ components:
+ - type: Transform
+ pos: 52.5,14.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersEngi
+ entities:
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 14.5,42.5
+ parent: 1653
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 1653
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 27.5,9.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersGeneral
+ entities:
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 1653
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1653
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1653
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1653
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1653
+ - uid: 1647
+ components:
+ - type: Transform
+ pos: 44.5,4.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersProtectiveGear
+ entities:
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 1653
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 1.5,40.5
+ parent: 1653
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1653
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 53.5,0.5
+ parent: 1653
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 54.5,0.5
+ parent: 1653
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 34.5,28.5
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: 6.471808,28.42157
+ parent: 1653
+ - uid: 1383
+ components:
+ - type: Transform
+ pos: 4.518683,24.687195
+ parent: 1653
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 53.51587,4.5073996
+ parent: 1653
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: 6.4340506,22.54927
+ parent: 1653
+ - uid: 1948
+ components:
+ - type: Transform
+ pos: 31.578455,8.515948
+ parent: 1653
+ - uid: 2219
+ components:
+ - type: Transform
+ pos: 6.6371756,22.48677
+ parent: 1653
+ - uid: 2260
+ components:
+ - type: Transform
+ pos: 27.429548,8.547074
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsBasicSingle
+ entities:
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 5.548265,35.51595
+ parent: 1653
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 32.723152,40.43838
+ parent: 1653
+ - uid: 1380
+ components:
+ - type: Transform
+ pos: 6.22014,35.594074
+ parent: 1653
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: 22.45877,46.61017
+ parent: 1653
+ - uid: 2228
+ components:
+ - type: Transform
+ pos: 37.582527,40.15713
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableFull
+ entities:
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 20.544882,34.653225
+ parent: 1653
+ - uid: 1424
+ components:
+ - type: Transform
+ pos: 10.458364,7.5208054
+ parent: 1653
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 20.59581,24.60907
+ parent: 1653
+ - uid: 2221
+ components:
+ - type: Transform
+ pos: 1.3789663,26.343445
+ parent: 1653
+ - uid: 2222
+ components:
+ - type: Transform
+ pos: 1.5977163,26.749695
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableSingle
+ entities:
+ - uid: 1882
+ components:
+ - type: Transform
+ pos: 49.337364,15.676198
+ parent: 1653
+ - uid: 1892
+ components:
+ - type: Transform
+ pos: 49.54049,15.457448
+ parent: 1653
+- proto: SpawnDungeonLootMugs
+ entities:
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 2.2211149,10.534292
+ parent: 1653
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 10.69799,4.7152834
+ parent: 1653
+ - uid: 803
+ components:
+ - type: Transform
+ pos: 2.6586149,10.643667
+ parent: 1653
+ - uid: 806
+ components:
+ - type: Transform
+ pos: 2.0023649,10.737417
+ parent: 1653
+ - uid: 814
+ components:
+ - type: Transform
+ pos: 10.401115,4.5277834
+ parent: 1653
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 1.6586149,10.471792
+ parent: 1653
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 20.768192,40.688156
+ parent: 1653
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 20.611942,40.469406
+ parent: 1653
+- proto: SpawnDungeonLootPartsEngi
+ entities:
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 40.448795,13.313273
+ parent: 1653
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 40.417545,13.547648
+ parent: 1653
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 40.58942,13.438273
+ parent: 1653
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 40.62067,12.625773
+ parent: 1653
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 40.43317,12.547648
+ parent: 1653
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 40.480045,12.813273
+ parent: 1653
+- proto: SpawnDungeonLootPowerCell
+ entities:
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 12.357123,39.50088
+ parent: 1653
+ - uid: 1893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.464323,24.536814
+ parent: 1653
+- proto: SpawnDungeonLootSeed
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 1.511581,15.545317
+ parent: 1653
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 16.358246,8.875323
+ parent: 1653
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 16.65512,8.578448
+ parent: 1653
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 1.6289663,27.60907
+ parent: 1653
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 16.420746,9.578448
+ parent: 1653
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 4.3876133,18.64302
+ parent: 1653
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 16.71762,9.390948
+ parent: 1653
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 1.3789663,25.530945
+ parent: 1653
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 33.479237,20.569313
+ parent: 1653
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 16.40512,7.9846983
+ parent: 1653
+ - uid: 934
+ components:
+ - type: Transform
+ pos: 42.505703,9.218622
+ parent: 1653
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 1.4258413,27.39032
+ parent: 1653
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: 1.6602163,25.718445
+ parent: 1653
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: 8.324282,35.59797
+ parent: 1653
+ - uid: 1842
+ components:
+ - type: Transform
+ pos: 45.786953,7.218622
+ parent: 1653
+ - uid: 1959
+ components:
+ - type: Transform
+ pos: 16.65512,7.7190733
+ parent: 1653
+ - uid: 1960
+ components:
+ - type: Transform
+ pos: 19.37387,7.0940733
+ parent: 1653
+ - uid: 2220
+ components:
+ - type: Transform
+ pos: 4.5907383,18.48677
+ parent: 1653
+- proto: SpawnDungeonLootSpesos
+ entities:
+ - uid: 2141
+ components:
+ - type: Transform
+ pos: 11.152621,14.732817
+ parent: 1653
+ - uid: 2216
+ components:
+ - type: Transform
+ pos: 11.402621,14.560942
+ parent: 1653
+ - uid: 2225
+ components:
+ - type: Transform
+ pos: 8.714907,35.53547
+ parent: 1653
+ - uid: 2226
+ components:
+ - type: Transform
+ pos: 3.3711562,30.738594
+ parent: 1653
+ - uid: 2227
+ components:
+ - type: Transform
+ pos: 3.5586562,30.59797
+ parent: 1653
+ - uid: 2230
+ components:
+ - type: Transform
+ pos: 9.18618,25.491379
+ parent: 1653
+ - uid: 2231
+ components:
+ - type: Transform
+ pos: 30.274536,25.974041
+ parent: 1653
+ - uid: 2233
+ components:
+ - type: Transform
+ pos: 48.559433,4.345504
+ parent: 1653
+ - uid: 2234
+ components:
+ - type: Transform
+ pos: 48.606308,4.579879
+ parent: 1653
+ - uid: 2235
+ components:
+ - type: Transform
+ pos: 48.481308,4.626754
+ parent: 1653
+ - uid: 2239
+ components:
+ - type: Transform
+ pos: 32.403194,28.10419
+ parent: 1653
+- proto: SpawnDungeonLootToolsAdvancedEngineering
+ entities:
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 20.498007,36.5126
+ parent: 1653
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 28.449821,21.564896
+ parent: 1653
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: 27.465446,22.564896
+ parent: 1653
+- proto: SpawnDungeonLootToolsBasicEngineering
+ entities:
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 10.509762,45.57892
+ parent: 1653
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 21.404257,36.559475
+ parent: 1653
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: 21.669882,36.4501
+ parent: 1653
+- proto: SpawnDungeonLootToolsHydroponics
+ entities:
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 18.31137,9.562823
+ parent: 1653
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 18.608246,9.672198
+ parent: 1653
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 26.50313,26.29657
+ parent: 1653
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 53.541756,38.679924
+ parent: 1653
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 37.505703,7.421747
+ parent: 1653
+ - uid: 1378
+ components:
+ - type: Transform
+ pos: 24.59688,27.35907
+ parent: 1653
+- proto: SpawnDungeonVendomatsRecreational
+ entities:
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 1653
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 1653
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 1653
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 1653
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 38.5,4.5
+ parent: 1653
+ - uid: 1631
+ components:
+ - type: Transform
+ pos: 29.5,38.5
+ parent: 1653
+ - uid: 1633
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 1653
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: 37.5,4.5
+ parent: 1653
+ - uid: 1635
+ components:
+ - type: Transform
+ pos: 7.5,10.5
+ parent: 1653
+ - uid: 1699
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 1653
+ - uid: 1707
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 1653
+ - uid: 1714
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 1653
+- proto: SteelBench
+ entities:
+ - uid: 2113
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,24.5
+ parent: 1653
+ - uid: 2114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,25.5
+ parent: 1653
+- proto: Stool
+ entities:
+ - uid: 172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,24.5
+ parent: 1653
+ - uid: 173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,24.5
+ parent: 1653
+ - uid: 202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,28.5
+ parent: 1653
+ - uid: 204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,28.5
+ parent: 1653
+ - uid: 644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,35.5
+ parent: 1653
+ - uid: 669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4790325,7.6301804
+ parent: 1653
+ - uid: 686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4634075,6.6145554
+ parent: 1653
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 1653
+ - uid: 788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,30.5
+ parent: 1653
+ - uid: 789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,30.5
+ parent: 1653
+ - uid: 790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,30.5
+ parent: 1653
+ - uid: 901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,21.5
+ parent: 1653
+ - uid: 902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,21.5
+ parent: 1653
+ - uid: 950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 1653
+ - uid: 951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 1653
+ - uid: 1269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,3.5
+ parent: 1653
+ - uid: 2019
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,24.5
+ parent: 1653
+ - uid: 2020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,24.5
+ parent: 1653
+ - uid: 2021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,28.5
+ parent: 1653
+ - uid: 2022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,28.5
+ parent: 1653
+- proto: SubstationBasic
+ entities:
+ - uid: 559
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 1653
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1653
+- proto: SubstationWallBasic
+ entities:
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+- proto: Table
+ entities:
+ - uid: 145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,46.5
+ parent: 1653
+ - uid: 322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,15.5
+ parent: 1653
+ - uid: 416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,20.5
+ parent: 1653
+ - uid: 418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,20.5
+ parent: 1653
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 1653
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1653
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 1653
+ - uid: 465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,4.5
+ parent: 1653
+ - uid: 507
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 1653
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 37.5,39.5
+ parent: 1653
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 37.5,40.5
+ parent: 1653
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 32.5,28.5
+ parent: 1653
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 1653
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 1653
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 33.5,36.5
+ parent: 1653
+ - uid: 777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,32.5
+ parent: 1653
+ - uid: 778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,30.5
+ parent: 1653
+ - uid: 781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,32.5
+ parent: 1653
+ - uid: 782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,30.5
+ parent: 1653
+ - uid: 795
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 1653
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1653
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1653
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1653
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 1653
+ - uid: 1056
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,48.5
+ parent: 1653
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 6.5,28.5
+ parent: 1653
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 1653
+ - uid: 1262
+ components:
+ - type: Transform
+ pos: 37.5,0.5
+ parent: 1653
+ - uid: 1263
+ components:
+ - type: Transform
+ pos: 53.5,4.5
+ parent: 1653
+ - uid: 1293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,14.5
+ parent: 1653
+ - uid: 1309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,15.5
+ parent: 1653
+ - uid: 1316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,15.5
+ parent: 1653
+ - uid: 1428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 1429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,2.5
+ parent: 1653
+ - uid: 1618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,13.5
+ parent: 1653
+ - uid: 1619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,12.5
+ parent: 1653
+ - uid: 1620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,12.5
+ parent: 1653
+ - uid: 1621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,12.5
+ parent: 1653
+ - uid: 1622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,13.5
+ parent: 1653
+ - uid: 1730
+ components:
+ - type: Transform
+ pos: 29.5,15.5
+ parent: 1653
+ - uid: 1731
+ components:
+ - type: Transform
+ pos: 25.5,13.5
+ parent: 1653
+ - uid: 2023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,38.5
+ parent: 1653
+ - uid: 2026
+ components:
+ - type: Transform
+ pos: 32.5,27.5
+ parent: 1653
+- proto: TableCarpet
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,46.5
+ parent: 1653
+ - uid: 570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,44.5
+ parent: 1653
+ - uid: 822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,47.5
+ parent: 1653
+ - uid: 831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,43.5
+ parent: 1653
+ - uid: 969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,30.5
+ parent: 1653
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 10.5,31.5
+ parent: 1653
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 48.5,4.5
+ parent: 1653
+ - uid: 1425
+ components:
+ - type: Transform
+ pos: 10.5,32.5
+ parent: 1653
+- proto: TableFancyCyan
+ entities:
+ - uid: 1323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,7.5
+ parent: 1653
+ - uid: 1325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,6.5
+ parent: 1653
+- proto: TableFrame
+ entities:
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 14.5,24.5
+ parent: 1653
+ - uid: 873
+ components:
+ - type: Transform
+ pos: 1.5,26.5
+ parent: 1653
+ - uid: 1079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,13.5
+ parent: 1653
+ - uid: 1191
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,35.5
+ parent: 1653
+- proto: TableGlass
+ entities:
+ - uid: 457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,2.5
+ parent: 1653
+ - uid: 459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,2.5
+ parent: 1653
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,2.5
+ parent: 1653
+ - uid: 627
+ components:
+ - type: Transform
+ pos: 4.5,35.5
+ parent: 1653
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 6.5,35.5
+ parent: 1653
+ - uid: 925
+ components:
+ - type: Transform
+ pos: 6.5,22.5
+ parent: 1653
+ - uid: 941
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 1653
+ - uid: 942
+ components:
+ - type: Transform
+ pos: 16.5,18.5
+ parent: 1653
+ - uid: 1374
+ components:
+ - type: Transform
+ pos: 18.5,9.5
+ parent: 1653
+ - uid: 1375
+ components:
+ - type: Transform
+ pos: 16.5,7.5
+ parent: 1653
+ - uid: 1376
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 1653
+ - uid: 1377
+ components:
+ - type: Transform
+ pos: 16.5,9.5
+ parent: 1653
+ - uid: 1448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,4.5
+ parent: 1653
+ - uid: 1449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,4.5
+ parent: 1653
+ - uid: 1450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,4.5
+ parent: 1653
+ - uid: 1451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,4.5
+ parent: 1653
+ - uid: 1452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,4.5
+ parent: 1653
+ - uid: 1453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,4.5
+ parent: 1653
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 22.5,0.5
+ parent: 1653
+- proto: TableReinforced
+ entities:
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 6.5,25.5
+ parent: 1653
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 1653
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 1.5,27.5
+ parent: 1653
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1653
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 4.5,27.5
+ parent: 1653
+ - uid: 841
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,13.5
+ parent: 1653
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 1653
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 1653
+ - uid: 2132
+ components:
+ - type: Transform
+ pos: 49.5,15.5
+ parent: 1653
+ - uid: 2133
+ components:
+ - type: Transform
+ pos: 49.5,13.5
+ parent: 1653
+ - uid: 2135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,13.5
+ parent: 1653
+ - uid: 2136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,15.5
+ parent: 1653
+- proto: TableWood
+ entities:
+ - uid: 82
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,45.5
+ parent: 1653
+ - uid: 87
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,47.5
+ parent: 1653
+ - uid: 571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,43.5
+ parent: 1653
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 20.5,34.5
+ parent: 1653
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 21.5,34.5
+ parent: 1653
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 1653
+ - uid: 772
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 1653
+ - uid: 773
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 1653
+ - uid: 884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,43.5
+ parent: 1653
+ - uid: 886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,45.5
+ parent: 1653
+ - uid: 887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,47.5
+ parent: 1653
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: 40.5,0.5
+ parent: 1653
+ - uid: 1270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,1.5
+ parent: 1653
+- proto: ToiletEmpty
+ entities:
+ - uid: 889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,18.5
+ parent: 1653
+- proto: ToyRubberDuck
+ entities:
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 1653
+ - uid: 1880
+ components:
+ - type: Transform
+ pos: 10.31355,27.742674
+ parent: 1653
+ - uid: 2028
+ components:
+ - type: Transform
+ pos: 24.518465,24.41762
+ parent: 1653
+ - uid: 2029
+ components:
+ - type: Transform
+ pos: 44.51329,7.4417505
+ parent: 1653
+- proto: ToySpawner
+ entities:
+ - uid: 1246
+ components:
+ - type: Transform
+ pos: 40.5,0.5
+ parent: 1653
+- proto: UraniumReinforcedWindowDirectional
+ entities:
+ - uid: 852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,34.5
+ parent: 1653
+ - uid: 853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,34.5
+ parent: 1653
+ - uid: 854
+ components:
+ - type: Transform
+ pos: 24.5,36.5
+ parent: 1653
+ - uid: 855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,36.5
+ parent: 1653
+ - uid: 856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,36.5
+ parent: 1653
+ - uid: 857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,34.5
+ parent: 1653
+ - uid: 858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,34.5
+ parent: 1653
+ - uid: 859
+ components:
+ - type: Transform
+ pos: 34.5,36.5
+ parent: 1653
+- proto: UraniumWindowDirectional
+ entities:
+ - uid: 1833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,12.5
+ parent: 1653
+ - uid: 1834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,13.5
+ parent: 1653
+ - uid: 1835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,12.5
+ parent: 1653
+ - uid: 1836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,13.5
+ parent: 1653
+ - uid: 1837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,13.5
+ parent: 1653
+ - uid: 1838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,13.5
+ parent: 1653
+- proto: VendingMachineWinter
+ entities:
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: 46.5,4.5
+ parent: 1653
+- proto: WallRockSnow
+ entities:
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 5.5,34.5
+ parent: 1653
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 7.5,36.5
+ parent: 1653
+ - uid: 645
+ components:
+ - type: Transform
+ pos: 16.5,35.5
+ parent: 1653
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 3.5,36.5
+ parent: 1653
+ - uid: 694
+ components:
+ - type: Transform
+ pos: 17.5,34.5
+ parent: 1653
+ - uid: 696
+ components:
+ - type: Transform
+ pos: 19.5,36.5
+ parent: 1653
+ - uid: 697
+ components:
+ - type: Transform
+ pos: 18.5,34.5
+ parent: 1653
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 16.5,34.5
+ parent: 1653
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 15.5,34.5
+ parent: 1653
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 1653
+ - uid: 701
+ components:
+ - type: Transform
+ pos: 16.5,36.5
+ parent: 1653
+ - uid: 702
+ components:
+ - type: Transform
+ pos: 15.5,35.5
+ parent: 1653
+ - uid: 703
+ components:
+ - type: Transform
+ pos: 19.5,35.5
+ parent: 1653
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 18.5,36.5
+ parent: 1653
+ - uid: 705
+ components:
+ - type: Transform
+ pos: 17.5,36.5
+ parent: 1653
+ - uid: 706
+ components:
+ - type: Transform
+ pos: 18.5,35.5
+ parent: 1653
+ - uid: 707
+ components:
+ - type: Transform
+ pos: 35.5,39.5
+ parent: 1653
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 36.5,39.5
+ parent: 1653
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 35.5,40.5
+ parent: 1653
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 1653
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1653
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1653
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 1653
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: 4.5,34.5
+ parent: 1653
+ - uid: 1186
+ components:
+ - type: Transform
+ pos: 2.5,34.5
+ parent: 1653
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 8.5,36.5
+ parent: 1653
+ - uid: 1188
+ components:
+ - type: Transform
+ pos: 3.5,34.5
+ parent: 1653
+ - uid: 1190
+ components:
+ - type: Transform
+ pos: 9.5,36.5
+ parent: 1653
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: 24.5,13.5
+ parent: 1653
+ - uid: 1341
+ components:
+ - type: Transform
+ pos: 24.5,12.5
+ parent: 1653
+ - uid: 1342
+ components:
+ - type: Transform
+ pos: 24.5,14.5
+ parent: 1653
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 20.5,28.5
+ parent: 1653
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: 20.5,27.5
+ parent: 1653
+ - uid: 1641
+ components:
+ - type: Transform
+ pos: 12.5,27.5
+ parent: 1653
+ - uid: 1642
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 1653
+ - uid: 1643
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 1653
+ - uid: 1671
+ components:
+ - type: Transform
+ pos: 19.5,40.5
+ parent: 1653
+ - uid: 1672
+ components:
+ - type: Transform
+ pos: 19.5,39.5
+ parent: 1653
+ - uid: 1673
+ components:
+ - type: Transform
+ pos: 20.5,39.5
+ parent: 1653
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: 20.5,38.5
+ parent: 1653
+ - uid: 1675
+ components:
+ - type: Transform
+ pos: 18.5,39.5
+ parent: 1653
+ - uid: 1760
+ components:
+ - type: Transform
+ pos: 25.5,12.5
+ parent: 1653
+ - uid: 1761
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 1653
+ - uid: 1762
+ components:
+ - type: Transform
+ pos: 27.5,12.5
+ parent: 1653
+ - uid: 1763
+ components:
+ - type: Transform
+ pos: 26.5,12.5
+ parent: 1653
+ - uid: 1764
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 1653
+ - uid: 1765
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 1653
+ - uid: 1766
+ components:
+ - type: Transform
+ pos: 10.5,12.5
+ parent: 1653
+ - uid: 1767
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 1653
+ - uid: 1768
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 1653
+ - uid: 1769
+ components:
+ - type: Transform
+ pos: 14.5,16.5
+ parent: 1653
+ - uid: 1770
+ components:
+ - type: Transform
+ pos: 13.5,16.5
+ parent: 1653
+ - uid: 1771
+ components:
+ - type: Transform
+ pos: 12.5,16.5
+ parent: 1653
+ - uid: 1772
+ components:
+ - type: Transform
+ pos: 14.5,15.5
+ parent: 1653
+ - uid: 1896
+ components:
+ - type: Transform
+ pos: 47.5,2.5
+ parent: 1653
+ - uid: 1897
+ components:
+ - type: Transform
+ pos: 48.5,2.5
+ parent: 1653
+ - uid: 1898
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 1653
+ - uid: 1899
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 1653
+ - uid: 1907
+ components:
+ - type: Transform
+ pos: 28.5,36.5
+ parent: 1653
+ - uid: 1908
+ components:
+ - type: Transform
+ pos: 28.5,35.5
+ parent: 1653
+ - uid: 1909
+ components:
+ - type: Transform
+ pos: 29.5,36.5
+ parent: 1653
+ - uid: 1910
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 1653
+ - uid: 1911
+ components:
+ - type: Transform
+ pos: 30.5,35.5
+ parent: 1653
+ - uid: 1912
+ components:
+ - type: Transform
+ pos: 30.5,34.5
+ parent: 1653
+ - uid: 1913
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1653
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: 26.5,35.5
+ parent: 1653
+ - uid: 1936
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1653
+ - uid: 1937
+ components:
+ - type: Transform
+ pos: 53.5,40.5
+ parent: 1653
+ - uid: 1938
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1653
+ - uid: 1939
+ components:
+ - type: Transform
+ pos: 48.5,38.5
+ parent: 1653
+ - uid: 1940
+ components:
+ - type: Transform
+ pos: 54.5,38.5
+ parent: 1653
+ - uid: 1941
+ components:
+ - type: Transform
+ pos: 50.5,40.5
+ parent: 1653
+ - uid: 1942
+ components:
+ - type: Transform
+ pos: 49.5,38.5
+ parent: 1653
+ - uid: 1943
+ components:
+ - type: Transform
+ pos: 52.5,38.5
+ parent: 1653
+ - uid: 1944
+ components:
+ - type: Transform
+ pos: 52.5,40.5
+ parent: 1653
+ - uid: 2212
+ components:
+ - type: Transform
+ pos: 37.5,14.5
+ parent: 1653
+ - uid: 2213
+ components:
+ - type: Transform
+ pos: 38.5,14.5
+ parent: 1653
+- proto: WallSilver
+ entities:
+ - uid: 321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,15.5
+ parent: 1653
+ - uid: 324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,13.5
+ parent: 1653
+ - uid: 385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,13.5
+ parent: 1653
+ - uid: 386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,15.5
+ parent: 1653
+ - uid: 395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,2.5
+ parent: 1653
+ - uid: 396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,2.5
+ parent: 1653
+ - uid: 492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,13.5
+ parent: 1653
+ - uid: 849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,30.5
+ parent: 1653
+ - uid: 1330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,14.5
+ parent: 1653
+ - uid: 1331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,15.5
+ parent: 1653
+ - uid: 1332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,13.5
+ parent: 1653
+ - uid: 1333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,15.5
+ parent: 1653
+ - uid: 1334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,15.5
+ parent: 1653
+ - uid: 1335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,15.5
+ parent: 1653
+ - uid: 1336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,15.5
+ parent: 1653
+ - uid: 1337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,14.5
+ parent: 1653
+ - uid: 1338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,13.5
+ parent: 1653
+ - uid: 1339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,13.5
+ parent: 1653
+ - uid: 1348
+ components:
+ - type: Transform
+ pos: 26.5,38.5
+ parent: 1653
+ - uid: 1349
+ components:
+ - type: Transform
+ pos: 26.5,40.5
+ parent: 1653
+ - uid: 1350
+ components:
+ - type: Transform
+ pos: 28.5,40.5
+ parent: 1653
+ - uid: 1351
+ components:
+ - type: Transform
+ pos: 28.5,38.5
+ parent: 1653
+ - uid: 1352
+ components:
+ - type: Transform
+ pos: 8.5,43.5
+ parent: 1653
+ - uid: 1353
+ components:
+ - type: Transform
+ pos: 9.5,43.5
+ parent: 1653
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 1501
+ components:
+ - type: Transform
+ pos: 14.5,43.5
+ parent: 1653
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1653
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 1.5,22.5
+ parent: 1653
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 1653
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 1653
+ - uid: 1577
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 1653
+ - uid: 1578
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,3.5
+ parent: 1653
+ - uid: 1579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,3.5
+ parent: 1653
+ - uid: 1580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,4.5
+ parent: 1653
+ - uid: 1581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,3.5
+ parent: 1653
+ - uid: 1582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,3.5
+ parent: 1653
+ - uid: 1583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,4.5
+ parent: 1653
+ - uid: 1584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,0.5
+ parent: 1653
+ - uid: 1585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,1.5
+ parent: 1653
+ - uid: 1586
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,1.5
+ parent: 1653
+ - uid: 1587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,1.5
+ parent: 1653
+ - uid: 1588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,1.5
+ parent: 1653
+ - uid: 1589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,0.5
+ parent: 1653
+ - uid: 1594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,0.5
+ parent: 1653
+ - uid: 1595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,1.5
+ parent: 1653
+ - uid: 1596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,1.5
+ parent: 1653
+ - uid: 1597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,1.5
+ parent: 1653
+ - uid: 1598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,1.5
+ parent: 1653
+ - uid: 1600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,0.5
+ parent: 1653
+ - uid: 1601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,3.5
+ parent: 1653
+ - uid: 1602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,3.5
+ parent: 1653
+ - uid: 1603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,4.5
+ parent: 1653
+ - uid: 1604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,3.5
+ parent: 1653
+ - uid: 1624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,3.5
+ parent: 1653
+ - uid: 1646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,4.5
+ parent: 1653
+ - uid: 1704
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,9.5
+ parent: 1653
+ - uid: 1705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 1706
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,9.5
+ parent: 1653
+- proto: WallSolid
+ entities:
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 1653
+ - uid: 1460
+ components:
+ - type: Transform
+ pos: 33.5,4.5
+ parent: 1653
+- proto: WardrobeBotanistFilled
+ entities:
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 1653
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 14.5,27.5
+ parent: 1653
+ - uid: 2007
+ components:
+ - type: Transform
+ pos: 28.5,25.5
+ parent: 1653
+ - uid: 2008
+ components:
+ - type: Transform
+ pos: 30.5,27.5
+ parent: 1653
+- proto: WaterTankFull
+ entities:
+ - uid: 1372
+ components:
+ - type: Transform
+ pos: 18.5,7.5
+ parent: 1653
+ - uid: 1475
+ components:
+ - type: Transform
+ pos: 24.5,4.5
+ parent: 1653
+ - uid: 1993
+ components:
+ - type: Transform
+ pos: 41.5,7.5
+ parent: 1653
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 19.5,15.5
+ parent: 1653
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 14.5,44.5
+ parent: 1653
+ - uid: 1387
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1653
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 1653
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1653
+- proto: Windoor
+ entities:
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 21.5,46.5
+ parent: 1653
+ - uid: 141
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,47.5
+ parent: 1653
+ - uid: 636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,34.5
+ parent: 1653
+ - uid: 637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,36.5
+ parent: 1653
+ - uid: 639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,34.5
+ parent: 1653
+ - uid: 640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,36.5
+ parent: 1653
+ - uid: 1083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,24.5
+ parent: 1653
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 1653
+ - uid: 1086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,25.5
+ parent: 1653
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: 9.5,28.5
+ parent: 1653
+ - uid: 2017
+ components:
+ - type: Transform
+ pos: 29.5,25.5
+ parent: 1653
+ - uid: 2018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,27.5
+ parent: 1653
+ - uid: 2251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,44.5
+ parent: 1653
+ - uid: 2252
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,47.5
+ parent: 1653
+ - uid: 2253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,46.5
+ parent: 1653
+ - uid: 2254
+ components:
+ - type: Transform
+ pos: 4.5,43.5
+ parent: 1653
+- proto: WindoorSecure
+ entities:
+ - uid: 691
+ components:
+ - type: Transform
+ pos: 32.5,2.5
+ parent: 1653
+ - uid: 809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,42.5
+ parent: 1653
+ - uid: 1175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,12.5
+ parent: 1653
+ - uid: 1312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,46.5
+ parent: 1653
+ - uid: 1313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,44.5
+ parent: 1653
+ - uid: 1420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,1.5
+ parent: 1653
+ - uid: 1421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,2.5
+ parent: 1653
+ - uid: 1422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,2.5
+ parent: 1653
+ - uid: 1423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,1.5
+ parent: 1653
+ - uid: 1465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,3.5
+ parent: 1653
+ - uid: 1466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,3.5
+ parent: 1653
+ - uid: 1552
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,2.5
+ parent: 1653
+ - uid: 1559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,1.5
+ parent: 1653
+ - uid: 1563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,2.5
+ parent: 1653
+ - uid: 1839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,13.5
+ parent: 1653
+ - uid: 2126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,15.5
+ parent: 1653
+ - uid: 2129
+ components:
+ - type: Transform
+ pos: 51.5,13.5
+ parent: 1653
+- proto: WindowDirectional
+ entities:
+ - uid: 632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,35.5
+ parent: 1653
+ - uid: 633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,35.5
+ parent: 1653
+ - uid: 1253
+ components:
+ - type: Transform
+ pos: 46.5,3.5
+ parent: 1653
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: 44.5,3.5
+ parent: 1653
+- proto: WindowFrostedDirectional
+ entities:
+ - uid: 500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,39.5
+ parent: 1653
+ - uid: 501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,39.5
+ parent: 1653
+ - uid: 946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 1653
+ - uid: 947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1653
+ - uid: 970
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1653
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1653
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1653
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1653
+ - uid: 1998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 1653
+ - uid: 1999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 1653
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 76
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,45.5
+ parent: 1653
+ - uid: 78
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,43.5
+ parent: 1653
+ - uid: 80
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,13.5
+ parent: 1653
+ - uid: 85
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,47.5
+ parent: 1653
+ - uid: 144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,48.5
+ parent: 1653
+ - uid: 174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,25.5
+ parent: 1653
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 1653
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 1653
+ - uid: 303
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,47.5
+ parent: 1653
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1653
+ - uid: 391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,0.5
+ parent: 1653
+ - uid: 399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,0.5
+ parent: 1653
+ - uid: 400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,4.5
+ parent: 1653
+ - uid: 446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,0.5
+ parent: 1653
+ - uid: 451
+ components:
+ - type: Transform
+ pos: 16.5,4.5
+ parent: 1653
+ - uid: 483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,15.5
+ parent: 1653
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 36.5,13.5
+ parent: 1653
+ - uid: 486
+ components:
+ - type: Transform
+ pos: 34.5,13.5
+ parent: 1653
+ - uid: 516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,13.5
+ parent: 1653
+ - uid: 517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,13.5
+ parent: 1653
+ - uid: 600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,1.5
+ parent: 1653
+ - uid: 601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,0.5
+ parent: 1653
+ - uid: 655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,15.5
+ parent: 1653
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 5.5,43.5
+ parent: 1653
+ - uid: 687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,0.5
+ parent: 1653
+ - uid: 690
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,1.5
+ parent: 1653
+ - uid: 692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,0.5
+ parent: 1653
+ - uid: 695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,15.5
+ parent: 1653
+ - uid: 768
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 1653
+ - uid: 791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,25.5
+ parent: 1653
+ - uid: 807
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 1653
+ - uid: 842
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 1653
+ - uid: 843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,24.5
+ parent: 1653
+ - uid: 850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,15.5
+ parent: 1653
+ - uid: 851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,15.5
+ parent: 1653
+ - uid: 876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,24.5
+ parent: 1653
+ - uid: 877
+ components:
+ - type: Transform
+ pos: 8.5,28.5
+ parent: 1653
+ - uid: 885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,45.5
+ parent: 1653
+ - uid: 908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,20.5
+ parent: 1653
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 1653
+ - uid: 915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,21.5
+ parent: 1653
+ - uid: 916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,20.5
+ parent: 1653
+ - uid: 917
+ components:
+ - type: Transform
+ pos: 9.5,20.5
+ parent: 1653
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 1653
+ - uid: 919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,19.5
+ parent: 1653
+ - uid: 920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,19.5
+ parent: 1653
+ - uid: 921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,21.5
+ parent: 1653
+ - uid: 922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,20.5
+ parent: 1653
+ - uid: 923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,20.5
+ parent: 1653
+ - uid: 924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,21.5
+ parent: 1653
+ - uid: 927
+ components:
+ - type: Transform
+ pos: 3.5,43.5
+ parent: 1653
+ - uid: 980
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,47.5
+ parent: 1653
+ - uid: 995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,18.5
+ parent: 1653
+ - uid: 996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,18.5
+ parent: 1653
+ - uid: 997
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,18.5
+ parent: 1653
+ - uid: 998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,18.5
+ parent: 1653
+ - uid: 999
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,22.5
+ parent: 1653
+ - uid: 1000
+ components:
+ - type: Transform
+ pos: 22.5,22.5
+ parent: 1653
+ - uid: 1001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,22.5
+ parent: 1653
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 1653
+ - uid: 1051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,14.5
+ parent: 1653
+ - uid: 1055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,13.5
+ parent: 1653
+ - uid: 1058
+ components:
+ - type: Transform
+ pos: 22.5,46.5
+ parent: 1653
+ - uid: 1068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,13.5
+ parent: 1653
+ - uid: 1069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,43.5
+ parent: 1653
+ - uid: 1074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,1.5
+ parent: 1653
+ - uid: 1089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,24.5
+ parent: 1653
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: 10.5,28.5
+ parent: 1653
+ - uid: 1125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,47.5
+ parent: 1653
+ - uid: 1170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,13.5
+ parent: 1653
+ - uid: 1171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,14.5
+ parent: 1653
+ - uid: 1172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,15.5
+ parent: 1653
+ - uid: 1173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,12.5
+ parent: 1653
+ - uid: 1174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,12.5
+ parent: 1653
+ - uid: 1176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,12.5
+ parent: 1653
+ - uid: 1177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,12.5
+ parent: 1653
+ - uid: 1178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,13.5
+ parent: 1653
+ - uid: 1179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,14.5
+ parent: 1653
+ - uid: 1180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,15.5
+ parent: 1653
+ - uid: 1181
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 1653
+ - uid: 1182
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 1653
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 1653
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 1653
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 1653
+ - uid: 1193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,1.5
+ parent: 1653
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: 2.5,43.5
+ parent: 1653
+ - uid: 1209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 1653
+ - uid: 1210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,2.5
+ parent: 1653
+ - uid: 1296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,0.5
+ parent: 1653
+ - uid: 1297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 1653
+ - uid: 1305
+ components:
+ - type: Transform
+ pos: 35.5,13.5
+ parent: 1653
+ - uid: 1317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,15.5
+ parent: 1653
+ - uid: 1318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,15.5
+ parent: 1653
+ - uid: 1366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,7.5
+ parent: 1653
+ - uid: 1367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,8.5
+ parent: 1653
+ - uid: 1368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,9.5
+ parent: 1653
+ - uid: 1369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,7.5
+ parent: 1653
+ - uid: 1370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,8.5
+ parent: 1653
+ - uid: 1371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,9.5
+ parent: 1653
+ - uid: 1388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,0.5
+ parent: 1653
+ - uid: 1389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,1.5
+ parent: 1653
+ - uid: 1390
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,0.5
+ parent: 1653
+ - uid: 1391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 1394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,0.5
+ parent: 1653
+ - uid: 1395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,1.5
+ parent: 1653
+ - uid: 1399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,14.5
+ parent: 1653
+ - uid: 1400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,0.5
+ parent: 1653
+ - uid: 1401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,1.5
+ parent: 1653
+ - uid: 1402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,0.5
+ parent: 1653
+ - uid: 1403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,1.5
+ parent: 1653
+ - uid: 1404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,1.5
+ parent: 1653
+ - uid: 1405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,1.5
+ parent: 1653
+ - uid: 1406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,1.5
+ parent: 1653
+ - uid: 1407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 1415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 1416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 1417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,2.5
+ parent: 1653
+ - uid: 1418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 1431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,2.5
+ parent: 1653
+ - uid: 1463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 1464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 1551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,1.5
+ parent: 1653
+ - uid: 1553
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,2.5
+ parent: 1653
+ - uid: 1554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 1560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 1561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,1.5
+ parent: 1653
+ - uid: 1562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,1.5
+ parent: 1653
+ - uid: 1710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,47.5
+ parent: 1653
+ - uid: 1711
+ components:
+ - type: Transform
+ pos: 1.5,43.5
+ parent: 1653
+ - uid: 1712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,47.5
+ parent: 1653
+ - uid: 2013
+ components:
+ - type: Transform
+ pos: 28.5,25.5
+ parent: 1653
+ - uid: 2014
+ components:
+ - type: Transform
+ pos: 30.5,25.5
+ parent: 1653
+ - uid: 2015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,27.5
+ parent: 1653
+ - uid: 2016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,27.5
+ parent: 1653
+ - uid: 2119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,13.5
+ parent: 1653
+ - uid: 2120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,14.5
+ parent: 1653
+ - uid: 2121
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,15.5
+ parent: 1653
+ - uid: 2122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,15.5
+ parent: 1653
+ - uid: 2123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,14.5
+ parent: 1653
+ - uid: 2124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,13.5
+ parent: 1653
+ - uid: 2125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,15.5
+ parent: 1653
+ - uid: 2127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,15.5
+ parent: 1653
+ - uid: 2128
+ components:
+ - type: Transform
+ pos: 52.5,13.5
+ parent: 1653
+ - uid: 2130
+ components:
+ - type: Transform
+ pos: 50.5,13.5
+ parent: 1653
+...
diff --git a/Resources/Maps/_NF/Dungeon/virology_lab.yml b/Resources/Maps/_NF/Dungeon/virology_lab.yml
new file mode 100644
index 00000000000..5f17f2147df
--- /dev/null
+++ b/Resources/Maps/_NF/Dungeon/virology_lab.yml
@@ -0,0 +1,14554 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 14: FloorBar
+ 18: FloorBlueCircuit
+ 30: FloorDark
+ 33: FloorDarkHerringbone
+ 35: FloorDarkMono
+ 39: FloorDarkPlastic
+ 45: FloorFreezer
+ 46: FloorGlass
+ 48: FloorGrass
+ 49: FloorGrassDark
+ 50: FloorGrassJungle
+ 63: FloorLino
+ 76: FloorPlastic
+ 78: FloorReinforced
+ 81: FloorShowroom
+ 82: FloorShuttleBlack
+ 85: FloorShuttleOrange
+ 92: FloorSteel
+ 97: FloorSteelDiagonal
+ 102: FloorSteelMini
+ 103: FloorSteelMono
+ 107: FloorTechMaint
+ 108: FloorTechMaint2
+ 109: FloorTechMaint3
+ 111: FloorWhite
+ 112: FloorWhiteDiagonal
+ 115: FloorWhiteMini
+ 116: FloorWhiteMono
+ 120: FloorWhitePlastic
+ 121: FloorWood
+ 123: FloorWoodTile
+ 125: Plating
+ 128: PlatingDamaged
+entities:
+- proto: ""
+ entities:
+ - uid: 1653
+ components:
+ - type: MetaData
+ - type: Transform
+ - type: Map
+ - type: PhysicsMap
+ - type: Broadphase
+ - type: OccluderTree
+ - type: MapGrid
+ chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAD
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: cwAAAAADbwAAAAACbwAAAAADbwAAAAABbwAAAAACbwAAAAABbwAAAAAAbwAAAAADcwAAAAAAbwAAAAACbwAAAAABbwAAAAABbwAAAAAAawAAAAAAcwAAAAACcwAAAAADcwAAAAADbwAAAAABbwAAAAADbwAAAAABbwAAAAABbwAAAAACbwAAAAACbwAAAAAAcwAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAACawAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAABcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAAAcwAAAAADcwAAAAACcwAAAAADcwAAAAADcwAAAAAAcwAAAAACcwAAAAADcwAAAAAAcwAAAAAAbwAAAAADbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAADbwAAAAAAcwAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAABbwAAAAADbwAAAAAAbwAAAAABbwAAAAACbwAAAAACbwAAAAACbwAAAAACcwAAAAABbwAAAAADbwAAAAACbwAAAAACbwAAAAADdAAAAAADdAAAAAACdAAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAABTAAAAAABeAAAAAADTAAAAAACTAAAAAADeAAAAAAATAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAADVQAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAADTAAAAAACeAAAAAABTAAAAAABTAAAAAABeAAAAAAATAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAAAVQAAAAACHgAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAADeQAAAAACeQAAAAADeQAAAAACeQAAAAACeQAAAAACeQAAAAABeQAAAAABeQAAAAADeQAAAAAAeQAAAAADVQAAAAACHgAAAAADXAAAAAABXAAAAAACXAAAAAAATAAAAAACeQAAAAACeQAAAAAAeQAAAAADeQAAAAAAeQAAAAADeQAAAAADeQAAAAADeQAAAAAAeQAAAAADeQAAAAAAVQAAAAACHgAAAAAAXAAAAAADXAAAAAABXAAAAAABTAAAAAADTAAAAAABTAAAAAACTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAADTAAAAAADVQAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADeAAAAAACeAAAAAADeAAAAAAAeAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAVQAAAAAAeAAAAAADeAAAAAAAeAAAAAACeAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAACHgAAAAADfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAHgAAAAACVQAAAAABeAAAAAACeAAAAAADeAAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAABVQAAAAACHgAAAAABfQAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAHgAAAAAAVQAAAAADeAAAAAACeAAAAAADeAAAAAADeAAAAAAAeAAAAAABeAAAAAAAeAAAAAACVQAAAAACHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAADVQAAAAAC
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: eAAAAAACeAAAAAAAeAAAAAAAeAAAAAABdAAAAAAAdAAAAAACdAAAAAABVQAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADIwAAAAABVQAAAAAAMgAAAAAAbwAAAAADbwAAAAACbwAAAAADLQAAAAAALQAAAAAALQAAAAAAfQAAAAAAfQAAAAAAVQAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAAAIwAAAAADVQAAAAACbwAAAAAAbwAAAAABbwAAAAADbwAAAAAALQAAAAAALQAAAAAAeAAAAAADeAAAAAAAeAAAAAAAVQAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAADIwAAAAACVQAAAAABbwAAAAACbwAAAAAAXAAAAAABbwAAAAABLQAAAAAAfQAAAAAAeAAAAAACbwAAAAABbwAAAAACVQAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAVQAAAAACbwAAAAADbwAAAAADbwAAAAAAbwAAAAAALQAAAAAAfQAAAAAAeAAAAAACbwAAAAAAbwAAAAADVQAAAAADIwAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAABVQAAAAABbwAAAAADbwAAAAACbwAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAACTgAAAAAATgAAAAAATgAAAAAAVQAAAAADbwAAAAABbwAAAAABbwAAAAACVQAAAAABUQAAAAAAUQAAAAAALQAAAAAAVQAAAAACZwAAAAADZgAAAAADZwAAAAACVQAAAAABTgAAAAAAEgAAAAAATgAAAAAAVQAAAAAAbwAAAAADbwAAAAADbwAAAAAAVQAAAAABLQAAAAAAUQAAAAAALQAAAAAAVQAAAAAAZwAAAAABZgAAAAABZwAAAAAAVQAAAAABTgAAAAAAEgAAAAAATgAAAAAAVQAAAAADbwAAAAACbwAAAAABbwAAAAACVQAAAAACLQAAAAAALQAAAAAALQAAAAAAVQAAAAACZgAAAAAAZgAAAAACZgAAAAABVQAAAAADTgAAAAAAEgAAAAAATgAAAAAAVQAAAAABbwAAAAADbwAAAAADbwAAAAABVQAAAAACLQAAAAAAUQAAAAAALQAAAAAAVQAAAAADZwAAAAABZgAAAAABZwAAAAAAVQAAAAABTgAAAAAATgAAAAAATgAAAAAAVQAAAAABbwAAAAACbwAAAAAAbwAAAAACVQAAAAADLQAAAAAALQAAAAAAUQAAAAAAVQAAAAACZwAAAAAAZgAAAAADZwAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAACVQAAAAAAVQAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAADbwAAAAAAXAAAAAACbwAAAAABbwAAAAABfQAAAAAAHgAAAAABHgAAAAACHgAAAAAAVQAAAAAAbwAAAAACbwAAAAADXAAAAAADHgAAAAADHgAAAAAAHgAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAADHgAAAAABHgAAAAABHgAAAAAAXAAAAAABVQAAAAACbwAAAAADbwAAAAAC
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAAD
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAB
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAB
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAD
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: cwAAAAACVQAAAAACXAAAAAACgAAAAAAAgAAAAAAAgAAAAAABXAAAAAADLQAAAAAALQAAAAAALQAAAAAAXAAAAAADLQAAAAAALQAAAAAALQAAAAAAXAAAAAADLQAAAAAAcwAAAAAAVQAAAAABXAAAAAADgAAAAAAAgAAAAAABgAAAAAACXAAAAAABLQAAAAAALQAAAAAALQAAAAAAXAAAAAABLQAAAAAALQAAAAAALQAAAAAAXAAAAAABLQAAAAAAcwAAAAADVQAAAAABXAAAAAABXAAAAAAATgAAAAAAXAAAAAADXAAAAAADXAAAAAACTgAAAAAAXAAAAAABXAAAAAACXAAAAAAATgAAAAAAXAAAAAACXAAAAAADXAAAAAABcwAAAAACVQAAAAADXAAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAABbwAAAAADbwAAAAACbwAAAAABbwAAAAAAbwAAAAADbwAAAAACcwAAAAACVQAAAAACXAAAAAABfQAAAAAAbwAAAAADbwAAAAABbwAAAAAAdAAAAAADdAAAAAACdAAAAAACbwAAAAACdAAAAAACdAAAAAABdAAAAAAAbwAAAAACbwAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAHgAAAAACHgAAAAAAXAAAAAAAIwAAAAAAIwAAAAACHgAAAAACHgAAAAACVQAAAAACawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAADHgAAAAAAVQAAAAABawAAAAAAXAAAAAAAHgAAAAAAHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAAAHgAAAAACVQAAAAABawAAAAAAXAAAAAABHgAAAAABHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADHgAAAAACVQAAAAADawAAAAAAXAAAAAABHgAAAAAAHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACVQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAADLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAADUgAAAAAAUgAAAAACUgAAAAADUgAAAAADUgAAAAACUgAAAAACUgAAAAAAVQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAABUgAAAAAAIQAAAAAAIQAAAAADLgAAAAACIQAAAAAAIQAAAAAAUgAAAAADVQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAUgAAAAABIQAAAAADLgAAAAADLgAAAAACLgAAAAAAIQAAAAAAUgAAAAAAVQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAAAUgAAAAAAIQAAAAAAIQAAAAACLgAAAAAAIQAAAAACIQAAAAADUgAAAAAAVQAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: LQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAVQAAAAABUgAAAAACUgAAAAADUgAAAAABUgAAAAABUgAAAAADUgAAAAADUgAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAAAbwAAAAADVQAAAAAAMgAAAAAAXAAAAAAAXAAAAAABXAAAAAACMgAAAAAAVQAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAABVQAAAAACdAAAAAAAbwAAAAACbwAAAAACVQAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADVQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADVQAAAAAAdAAAAAAAbwAAAAACbwAAAAABVQAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABVQAAAAABXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABVQAAAAAAXAAAAAABXAAAAAABbwAAAAAAVQAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAABVQAAAAABXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABVQAAAAAAXAAAAAACXAAAAAADbwAAAAAAVQAAAAABMgAAAAAAXAAAAAAAXAAAAAADXAAAAAACMgAAAAAAVQAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAABfQAAAAAAVQAAAAAAXAAAAAACXAAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAAAawAAAAAAYQAAAAAAYQAAAAABVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAABawAAAAAAfQAAAAAAawAAAAAAVQAAAAABawAAAAAAYQAAAAABbAAAAAAAVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAABawAAAAAAfQAAAAAAfQAAAAAAVQAAAAAAYQAAAAABYQAAAAAAbAAAAAAAVQAAAAADXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAABXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAawAAAAAAfQAAAAAAawAAAAAAVQAAAAACawAAAAAAYQAAAAABbAAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAADawAAAAAAfQAAAAAAawAAAAAAVQAAAAACawAAAAAAYQAAAAACYQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADbwAAAAABfQAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAVQAAAAABXAAAAAAAXAAAAAAAZwAAAAAAZwAAAAAAbwAAAAACawAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABVQAAAAAAXAAAAAAAXAAAAAAAZwAAAAAAZwAAAAAA
+ version: 6
+ -1,2:
+ ind: -1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAC
+ version: 6
+ -1,3:
+ ind: -1,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: HgAAAAAAHgAAAAACHgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAADbwAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADVQAAAAACbwAAAAABbwAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAABcwAAAAAAcwAAAAAAcwAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAABVQAAAAABXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAADdAAAAAAAdAAAAAAAdAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAACVQAAAAAAXAAAAAACdAAAAAADdAAAAAACfQAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADcwAAAAAAcwAAAAAAcwAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABVQAAAAADXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAADVQAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAACVQAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACVQAAAAABXAAAAAACXAAAAAACMQAAAAACMQAAAAABMQAAAAABXAAAAAAAXAAAAAADVQAAAAADXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAABVQAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAADXAAAAAADXAAAAAAAXAAAAAADbwAAAAADLQAAAAAALQAAAAAALQAAAAAAVQAAAAADfQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAAAVQAAAAABXAAAAAADXAAAAAAAXAAAAAACbwAAAAADLQAAAAAALQAAAAAALQAAAAAAVQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAAAfQAAAAAAfQAAAAAAVQAAAAACXAAAAAAAXAAAAAADXAAAAAAAbwAAAAACLQAAAAAALQAAAAAALQAAAAAAVQAAAAABXAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXAAAAAADVQAAAAADXAAAAAACXAAAAAABXAAAAAABbwAAAAADbwAAAAADbwAAAAABbwAAAAACVQAAAAABXAAAAAABbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAADVQAAAAACXAAAAAABXAAAAAADXAAAAAABbwAAAAADcAAAAAACcAAAAAAAcAAAAAABVQAAAAAAXAAAAAABbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAXAAAAAACVQAAAAADbwAAAAAAeAAAAAAAeAAAAAACbwAAAAACcAAAAAADcAAAAAADcAAAAAAAVQAAAAAAXAAAAAAAbQAAAAACbAAAAAAAbQAAAAAAbAAAAAAAbQAAAAADXAAAAAABVQAAAAAD
+ version: 6
+ 0,3:
+ ind: 0,3
+ tiles: dAAAAAAAdAAAAAABdAAAAAABbwAAAAABdAAAAAABdAAAAAABdAAAAAACVQAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAADXAAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: bwAAAAABfQAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAADVQAAAAAAXAAAAAAAXAAAAAAAZwAAAAAAXAAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAABVQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAACVQAAAAABMAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAAAdAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAdAAAAAACfQAAAAAAXAAAAAADVQAAAAABbwAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAABXAAAAAAAVQAAAAABMAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAAAVQAAAAABfQAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAVQAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAADVQAAAAABfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAVQAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADVQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAADVQAAAAADeQAAAAAAeQAAAAAAeQAAAAACeQAAAAAAeQAAAAADeQAAAAACeQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABeQAAAAADeQAAAAACeQAAAAABeQAAAAAAeQAAAAABeQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAADeQAAAAABeQAAAAAAeQAAAAAAeQAAAAACeQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABeQAAAAACeQAAAAABDgAAAAAADgAAAAAADgAAAAADDgAAAAABVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAABeQAAAAACDgAAAAADDgAAAAABDgAAAAACDgAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAADewAAAAACeQAAAAACDgAAAAADDgAAAAAADgAAAAAADgAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,3:
+ ind: 1,3
+ tiles: fQAAAAAAfQAAAAAAfQAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: LQAAAAAALQAAAAAAXAAAAAACVQAAAAADeQAAAAAAeQAAAAAAeQAAAAADXAAAAAACJwAAAAACJwAAAAADJwAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAADLQAAAAAALQAAAAAAXAAAAAAAVQAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABTgAAAAAAXAAAAAADXAAAAAADVQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAACbwAAAAADbwAAAAACXAAAAAACVQAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAACZwAAAAAAXAAAAAABZwAAAAAAXAAAAAACbwAAAAACfQAAAAAAXAAAAAACVQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACZwAAAAADXAAAAAAAZwAAAAACXAAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAACHgAAAAACXAAAAAADawAAAAAAVQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAACHgAAAAABXAAAAAADawAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAHgAAAAADXAAAAAAAawAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAABawAAAAAAawAAAAAAawAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAABXAAAAAABXAAAAAADXAAAAAACbwAAAAADbwAAAAAAbwAAAAACbwAAAAAAVQAAAAABIwAAAAACHgAAAAADIwAAAAACHgAAAAAAIwAAAAACHgAAAAACIwAAAAACVQAAAAADXAAAAAABXAAAAAACXAAAAAACbwAAAAABbwAAAAABbwAAAAADbwAAAAACVQAAAAAAIwAAAAADHgAAAAABIwAAAAACHgAAAAADIwAAAAACHgAAAAADIwAAAAAAVQAAAAAAHgAAAAACHgAAAAABXAAAAAACXAAAAAABXAAAAAABbwAAAAADbwAAAAABVQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAACVQAAAAAAawAAAAAAHgAAAAACXAAAAAACXAAAAAABXAAAAAACbwAAAAAAbwAAAAAAVQAAAAAAIwAAAAADHgAAAAABIwAAAAADHgAAAAAAIwAAAAACHgAAAAAAIwAAAAABVQAAAAAC
+ version: 6
+ 3,0:
+ ind: 3,0
+ tiles: PwAAAAAAPwAAAAAAPwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAABVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAACXAAAAAACXAAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAADeQAAAAADXAAAAAADJwAAAAABJwAAAAABJwAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAACVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,-1:
+ ind: 2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAAD
+ version: 6
+ 3,-1:
+ ind: 3,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,1:
+ ind: 3,1
+ tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAABVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAAAVQAAAAACVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,2:
+ ind: 3,2
+ tiles: VQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAADVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: XAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAZwAAAAAAXAAAAAAAXAAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAADXAAAAAACXAAAAAADMAAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAACVQAAAAABXAAAAAAAXAAAAAADbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAADVQAAAAABVQAAAAABXAAAAAABXAAAAAADMAAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAABawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAABVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAVQAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAADVQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAVQAAAAAAIwAAAAAAIwAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAACVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAAAVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAADVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: awAAAAAAawAAAAAAfQAAAAAAXAAAAAABXAAAAAABbwAAAAADbwAAAAADVQAAAAABIwAAAAADHgAAAAADIwAAAAACHgAAAAAAIwAAAAACHgAAAAACIwAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADbwAAAAADIwAAAAACIwAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAADbwAAAAAAIwAAAAACIwAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAADVQAAAAABbwAAAAADbwAAAAAAbwAAAAABVQAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAABVQAAAAACbwAAAAAALQAAAAAALQAAAAAAVQAAAAABVQAAAAABVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAACbwAAAAACLQAAAAAALQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAADVQAAAAAAVQAAAAABVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAABVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAABZwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAXAAAAAAAXAAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAABVQAAAAAAZwAAAAAAZwAAAAAAXAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAXAAAAAAAXAAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAADVQAAAAABVQAAAAABVQAAAAAB
+ version: 6
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 244: 0,6
+ 245: 0,7
+ 246: 7,10
+ 247: 8,10
+ 248: 9,10
+ 479: 14,28
+ 480: 14,27
+ 481: 14,25
+ 482: 14,24
+ 483: 40,40
+ 484: 41,40
+ 486: 46,40
+ 555: 40,16
+ 556: 40,15
+ 557: 42,15
+ 558: 42,16
+ 559: 44,16
+ 560: 44,15
+ 561: 46,15
+ 562: 46,16
+ 563: 46,13
+ 564: 46,12
+ 565: 44,12
+ 566: 44,13
+ 567: 42,13
+ 568: 42,12
+ 569: 40,12
+ 570: 40,13
+ 611: 4,28
+ 612: 4,27
+ 627: 46,4
+ 628: 46,3
+ 629: 44,3
+ 630: 44,4
+ 1238: 42,38
+ 1239: 3,6
+ 1240: 3,7
+ - node:
+ color: '#467B41FF'
+ id: BotGreyscale
+ decals:
+ 697: 30,18
+ 712: 29,4
+ 713: 28,4
+ 755: 29,4
+ 756: 28,4
+ 764: 13,4
+ 765: 14,4
+ 766: 15,4
+ 1159: 8,30
+ 1160: 4,32
+ 1211: 4,35
+ 1212: 6,35
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#467B41FF'
+ id: BotGreyscale
+ decals:
+ 1049: 14,28
+ 1050: 14,27
+ 1051: 14,25
+ 1052: 14,24
+ 1053: 12,25
+ 1054: 12,27
+ - node:
+ color: '#639137FF'
+ id: BotGreyscale
+ decals:
+ 399: 0,4
+ 491: 0,48
+ 492: 1,48
+ 493: 2,48
+ 516: 4,48
+ 517: 5,48
+ 518: 6,48
+ - node:
+ color: '#7B7B3FFF'
+ id: BotGreyscale
+ decals:
+ 899: 40,30
+ 900: 28,30
+ 911: 40,30
+ 912: 28,30
+ - node:
+ color: '#9FED5896'
+ id: BotGreyscale
+ decals:
+ 434: 19,6
+ 435: 20,6
+ - node:
+ color: '#B8B873FF'
+ id: BotGreyscale
+ decals:
+ 905: 40,30
+ 906: 28,30
+ - node:
+ color: '#F9801DFF'
+ id: BotGreyscale
+ decals:
+ 402: 6,16
+ 403: 5,16
+ 404: 4,16
+ - node:
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 485: 41,38
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 224: 14,42
+ - node:
+ color: '#467B41FF'
+ id: BotLeftGreyscale
+ decals:
+ 767: 13,3
+ 768: 14,3
+ 769: 15,3
+ - node:
+ angle: 4.71238898038469 rad
+ color: '#7B7B3FFF'
+ id: BotLeftGreyscale
+ decals:
+ 915: 37,30
+ 916: 36,30
+ 917: 36,31
+ 918: 35,31
+ 919: 31,30
+ 920: 32,30
+ 921: 32,31
+ 922: 33,31
+ - node:
+ color: '#FFFFFFFF'
+ id: Box
+ decals:
+ 401: 13,1
+ - node:
+ color: '#467B41FF'
+ id: BoxGreyscale
+ decals:
+ 761: 30,1
+ 762: 22,1
+ 763: 15,0
+ 1213: 5,35
+ - node:
+ color: '#7B7B3FFF'
+ id: BoxGreyscale
+ decals:
+ 901: 39,30
+ 902: 29,30
+ - node:
+ color: '#B8B873FF'
+ id: BoxGreyscale
+ decals:
+ 903: 29,30
+ 904: 39,30
+ - node:
+ color: '#BC863FFF'
+ id: BrickEndOverlayN
+ decals:
+ 571: 41,16
+ 572: 45,16
+ - node:
+ color: '#BC863FFF'
+ id: BrickEndOverlayS
+ decals:
+ 573: 45,12
+ 574: 41,12
+ - node:
+ color: '#BC863FFF'
+ id: BrickLineOverlayE
+ decals:
+ 579: 41,15
+ 580: 45,15
+ 581: 45,13
+ 582: 43,15
+ 583: 43,13
+ 586: 41,13
+ 597: 43,16
+ 598: 43,12
+ - node:
+ color: '#BC863FFF'
+ id: BrickLineOverlayN
+ decals:
+ 587: 44,14
+ 588: 42,14
+ 591: 40,14
+ 592: 46,14
+ - node:
+ color: '#BC863FFF'
+ id: BrickLineOverlayS
+ decals:
+ 589: 42,14
+ 590: 44,14
+ 593: 46,14
+ 594: 40,14
+ - node:
+ color: '#BC863FFF'
+ id: BrickLineOverlayW
+ decals:
+ 575: 41,13
+ 576: 45,13
+ 577: 45,15
+ 578: 41,15
+ 584: 43,13
+ 585: 43,15
+ 595: 43,16
+ 596: 43,12
+ - node:
+ color: '#835432FF'
+ id: BrickTileDarkInnerNw
+ decals:
+ 537: 18,46
+ - node:
+ color: '#835432FF'
+ id: BrickTileDarkLineN
+ decals:
+ 535: 17,46
+ 536: 16,46
+ - node:
+ color: '#835432FF'
+ id: BrickTileDarkLineW
+ decals:
+ 534: 18,47
+ - node:
+ color: '#9FED58FF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 511: 2,46
+ 521: 6,48
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 139: 11,31
+ 343: 38,16
+ - node:
+ color: '#9FED58FF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 509: 0,46
+ 522: 4,48
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 341: 35,13
+ 342: 37,16
+ - node:
+ color: '#9FED58FF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 512: 2,42
+ 520: 6,46
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 635: 46,0
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 344: 38,12
+ - node:
+ color: '#9FED58FF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 505: 0,42
+ 519: 4,46
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 636: 44,0
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 142: 1,31
+ 345: 35,12
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelEndE
+ decals:
+ 644: 53,2
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelEndN
+ decals:
+ 669: 45,3
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelEndN
+ decals:
+ 271: 1,7
+ 272: 4,7
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelEndW
+ decals:
+ 668: 37,2
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelInnerNe
+ decals:
+ 671: 45,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNe
+ decals:
+ 141: 11,30
+ 235: 13,19
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelInnerNw
+ decals:
+ 670: 45,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNw
+ decals:
+ 234: 15,19
+ 346: 37,13
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelInnerSe
+ decals:
+ 666: 46,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerSe
+ decals:
+ 233: 13,21
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelInnerSw
+ decals:
+ 667: 44,2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerSw
+ decals:
+ 143: 1,32
+ 232: 15,21
+ - node:
+ color: '#9FED58FF'
+ id: BrickTileSteelLineE
+ decals:
+ 513: 2,43
+ 514: 2,44
+ 515: 2,45
+ 525: 6,47
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelLineE
+ decals:
+ 637: 46,1
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 229: 13,20
+ 273: 4,6
+ 274: 1,6
+ 350: 38,13
+ 351: 38,14
+ 352: 38,15
+ - node:
+ color: '#9FED58FF'
+ id: BrickTileSteelLineN
+ decals:
+ 510: 1,46
+ 523: 5,48
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelLineN
+ decals:
+ 645: 52,2
+ 646: 51,2
+ 647: 50,2
+ 648: 49,2
+ 649: 48,2
+ 650: 47,2
+ 651: 46,2
+ 652: 44,2
+ 653: 43,2
+ 654: 42,2
+ 655: 41,2
+ 656: 40,2
+ 657: 39,2
+ 658: 38,2
+ - node:
+ color: '#FF9821FF'
+ id: BrickTileSteelLineN
+ decals:
+ 622: 33,16
+ 623: 32,16
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 137: 9,31
+ 138: 10,31
+ 140: 12,30
+ 347: 36,13
+ 1098: 14,19
+ - node:
+ color: '#9FED58FF'
+ id: BrickTileSteelLineS
+ decals:
+ 506: 1,42
+ 526: 5,46
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelLineS
+ decals:
+ 638: 47,2
+ 639: 48,2
+ 640: 49,2
+ 641: 50,2
+ 642: 51,2
+ 643: 52,2
+ 659: 38,2
+ 660: 39,2
+ 661: 40,2
+ 662: 41,2
+ 663: 42,2
+ 664: 43,2
+ - node:
+ color: '#FF9821FF'
+ id: BrickTileSteelLineS
+ decals:
+ 624: 33,14
+ 625: 32,14
+ 626: 32,14
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineS
+ decals:
+ 144: 3,31
+ 145: 2,31
+ 146: 0,32
+ 231: 14,21
+ 353: 37,12
+ 354: 36,12
+ - node:
+ color: '#9FED58FF'
+ id: BrickTileSteelLineW
+ decals:
+ 507: 0,43
+ 508: 0,44
+ 524: 4,47
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelLineW
+ decals:
+ 665: 44,1
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 230: 15,20
+ 275: 4,6
+ 276: 1,6
+ 348: 37,14
+ 349: 37,15
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 810: 22,16
+ 834: 6,40
+ 835: 14,40
+ 948: 26,32
+ 973: 16,32
+ 980: 33,36
+ 1079: 16,22
+ 1090: 15,21
+ 1111: 30,26
+ 1112: 26,26
+ 1131: 21,22
+ 1134: 22,21
+ 1140: 11,31
+ 1196: 10,36
+ 1215: 22,36
+ - node:
+ color: '#52B4E9FF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 544: 6,28
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 871: 22,40
+ 882: 40,32
+ 889: 30,32
+ 1056: 14,16
+ 1122: 30,26
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 149: 11,31
+ 238: 15,21
+ - node:
+ color: '#F9801DFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 419: 6,16
+ - node:
+ color: '#FFA647FF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 1033: 22,28
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 62: 22,36
+ 106: 33,36
+ 176: 26,32
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 772: 8,16
+ 811: 16,16
+ 844: 0,40
+ 845: 8,40
+ 950: 18,32
+ 971: 14,32
+ 981: 25,36
+ 1080: 12,22
+ 1091: 13,21
+ 1113: 24,26
+ 1114: 28,26
+ 1132: 19,22
+ 1133: 18,21
+ 1152: 7,30
+ 1163: 0,36
+ 1214: 12,36
+ - node:
+ color: '#52B4E9FF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 545: 4,28
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 876: 16,40
+ 879: 28,32
+ 887: 38,32
+ 1058: 8,16
+ 1121: 28,26
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 237: 13,21
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 297: 24,22
+ - node:
+ color: '#F9801DFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 412: 0,16
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 61: 12,36
+ 105: 25,36
+ 175: 18,32
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 770: 14,12
+ 812: 22,12
+ 846: 14,38
+ 847: 6,38
+ 949: 26,30
+ 974: 16,30
+ 988: 33,34
+ 1085: 16,18
+ 1093: 15,19
+ 1117: 30,24
+ 1118: 26,24
+ 1137: 21,18
+ 1138: 22,19
+ 1151: 5,32
+ 1203: 10,34
+ 1216: 22,34
+ - node:
+ color: '#52B4E9FF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 550: 6,24
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 883: 40,30
+ 890: 30,30
+ 1057: 14,12
+ 1119: 30,24
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 239: 15,19
+ - node:
+ color: '#FFA647FF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 1034: 22,24
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 67: 22,34
+ 104: 33,34
+ 177: 26,30
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 771: 8,12
+ 813: 16,12
+ 848: 8,38
+ 849: 0,38
+ 951: 18,30
+ 970: 14,30
+ 995: 25,34
+ 1092: 13,19
+ 1115: 28,24
+ 1116: 24,24
+ 1135: 18,19
+ 1136: 19,18
+ 1143: 1,31
+ 1170: 0,34
+ 1217: 12,34
+ - node:
+ color: '#52B4E9FF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 543: 4,24
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 884: 28,30
+ 888: 38,30
+ 1055: 8,12
+ 1120: 28,24
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 156: 1,31
+ 240: 13,19
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 301: 24,18
+ - node:
+ color: '#F9801DFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 409: 0,12
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 68: 12,34
+ 107: 25,34
+ 178: 18,30
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteEndN
+ decals:
+ 1149: 5,30
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteEndN
+ decals:
+ 938: 35,30
+ 939: 33,30
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteEndS
+ decals:
+ 1150: 7,32
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 1031: 21,21
+ 1148: 11,30
+ - node:
+ color: '#BC863FFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 604: 45,14
+ 605: 43,14
+ 606: 41,14
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 151: 11,30
+ 288: 21,21
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 1030: 19,21
+ - node:
+ color: '#BC863FFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 607: 41,14
+ 608: 43,14
+ 609: 45,14
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 287: 19,21
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 1032: 21,19
+ - node:
+ color: '#BC863FFF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 599: 43,14
+ 600: 45,14
+ 610: 41,14
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 289: 21,19
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 1029: 19,19
+ 1147: 1,32
+ - node:
+ color: '#BC863FFF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 601: 45,14
+ 602: 43,14
+ 603: 41,14
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 155: 1,32
+ 290: 19,19
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteLineE
+ decals:
+ 733: 18,4
+ 734: 18,2
+ 735: 18,1
+ 736: 18,0
+ 777: 14,15
+ 778: 14,13
+ 814: 22,15
+ 815: 22,13
+ 1083: 16,21
+ 1084: 16,19
+ 1094: 15,20
+ - node:
+ color: '#52B4E9FF'
+ id: BrickTileWhiteLineE
+ decals:
+ 548: 6,25
+ 549: 6,27
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 940: 36,31
+ 1063: 14,15
+ 1064: 14,13
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineE
+ decals:
+ 236: 15,20
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineE
+ decals:
+ 291: 28,19
+ 292: 28,20
+ 293: 28,21
+ - node:
+ color: '#F9801DFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 420: 6,15
+ - node:
+ color: '#FFA647FF'
+ id: BrickTileWhiteLineE
+ decals:
+ 1035: 22,25
+ 1036: 22,27
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteLineN
+ decals:
+ 714: 32,4
+ 715: 31,4
+ 716: 30,4
+ 717: 29,4
+ 718: 28,4
+ 719: 27,4
+ 720: 25,4
+ 721: 24,4
+ 722: 23,4
+ 723: 22,4
+ 724: 21,4
+ 725: 20,4
+ 726: 22,2
+ 727: 26,2
+ 728: 30,2
+ 773: 13,16
+ 774: 12,16
+ 775: 10,16
+ 776: 9,16
+ 816: 21,16
+ 817: 20,16
+ 818: 18,16
+ 819: 17,16
+ 836: 13,40
+ 837: 12,40
+ 838: 10,40
+ 839: 9,40
+ 840: 5,40
+ 841: 4,40
+ 842: 2,40
+ 843: 1,40
+ 952: 19,32
+ 953: 21,32
+ 954: 22,32
+ 955: 23,32
+ 956: 24,32
+ 957: 25,32
+ 972: 15,32
+ 982: 26,36
+ 983: 27,36
+ 984: 28,36
+ 985: 30,36
+ 986: 31,36
+ 987: 32,36
+ 1081: 13,22
+ 1082: 15,22
+ 1095: 14,21
+ 1139: 12,30
+ 1141: 10,31
+ 1142: 9,31
+ 1158: 8,30
+ 1164: 1,36
+ 1165: 2,36
+ 1166: 3,36
+ 1197: 9,36
+ 1198: 8,36
+ 1199: 7,36
+ 1222: 21,36
+ 1223: 20,36
+ 1224: 15,36
+ 1225: 14,36
+ 1226: 13,36
+ 1227: 13,34
+ 1228: 19,34
+ 1229: 20,34
+ 1230: 21,34
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 872: 21,40
+ 873: 20,40
+ 874: 18,40
+ 875: 17,40
+ 880: 29,32
+ 881: 39,32
+ 1059: 9,16
+ 1060: 10,16
+ 1061: 12,16
+ 1062: 13,16
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineN
+ decals:
+ 69: 21,34
+ 70: 20,34
+ 71: 19,34
+ 72: 13,34
+ 147: 9,31
+ 148: 10,31
+ 150: 12,30
+ 242: 14,21
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineN
+ decals:
+ 294: 27,22
+ 295: 26,22
+ 296: 25,22
+ 333: 31,9
+ 334: 32,9
+ 339: 27,9
+ 340: 26,9
+ - node:
+ color: '#F9801DFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 413: 1,16
+ 414: 2,16
+ 415: 4,16
+ 416: 5,16
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 56: 15,36
+ 57: 14,36
+ 58: 13,36
+ 59: 20,36
+ 60: 21,36
+ 114: 26,36
+ 115: 27,36
+ 116: 28,36
+ 117: 30,36
+ 118: 31,36
+ 119: 32,36
+ 169: 25,32
+ 170: 24,32
+ 171: 23,32
+ 172: 22,32
+ 173: 21,32
+ 174: 19,32
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteLineS
+ decals:
+ 737: 33,3
+ 738: 32,3
+ 739: 31,3
+ 740: 30,3
+ 741: 29,3
+ 742: 28,3
+ 743: 27,3
+ 744: 26,3
+ 745: 25,3
+ 746: 24,3
+ 747: 23,3
+ 748: 22,3
+ 749: 21,3
+ 750: 20,3
+ 751: 19,3
+ 779: 13,12
+ 780: 12,12
+ 781: 10,12
+ 782: 9,12
+ 822: 17,12
+ 823: 18,12
+ 824: 20,12
+ 825: 21,12
+ 850: 5,38
+ 851: 4,38
+ 852: 2,38
+ 853: 1,38
+ 854: 9,38
+ 855: 10,38
+ 856: 12,38
+ 857: 13,38
+ 958: 25,30
+ 959: 24,30
+ 960: 23,30
+ 961: 22,30
+ 962: 21,30
+ 963: 19,30
+ 975: 15,30
+ 989: 32,34
+ 990: 31,34
+ 991: 30,34
+ 992: 28,34
+ 993: 27,34
+ 994: 26,34
+ 1086: 15,18
+ 1087: 13,18
+ 1097: 14,19
+ 1144: 2,31
+ 1145: 3,31
+ 1146: 0,32
+ 1157: 4,32
+ 1167: 3,34
+ 1168: 2,34
+ 1169: 1,34
+ 1200: 7,34
+ 1201: 8,34
+ 1202: 9,34
+ 1218: 13,34
+ 1219: 19,34
+ 1220: 20,34
+ 1221: 21,34
+ 1231: 21,36
+ 1232: 20,36
+ 1233: 15,36
+ 1234: 14,36
+ 1235: 13,36
+ - node:
+ color: '#639137FF'
+ id: BrickTileWhiteLineS
+ decals:
+ 672: 2,38
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 885: 39,30
+ 886: 29,30
+ 1065: 13,12
+ 1066: 12,12
+ 1069: 10,12
+ 1070: 9,12
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineS
+ decals:
+ 73: 21,36
+ 74: 20,36
+ 75: 15,36
+ 76: 14,36
+ 77: 13,36
+ 152: 3,31
+ 153: 2,31
+ 154: 0,32
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineS
+ decals:
+ 302: 25,18
+ 303: 26,18
+ 304: 27,18
+ 335: 32,7
+ 336: 31,7
+ 337: 27,7
+ 338: 26,7
+ - node:
+ color: '#F9801DFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 417: 2,12
+ 418: 1,12
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 63: 21,34
+ 64: 20,34
+ 65: 19,34
+ 66: 13,34
+ 108: 26,34
+ 109: 27,34
+ 110: 28,34
+ 111: 30,34
+ 112: 31,34
+ 113: 32,34
+ 179: 19,30
+ 180: 21,30
+ 181: 22,30
+ 182: 23,30
+ 183: 24,30
+ 184: 25,30
+ - node:
+ color: '#467B41FF'
+ id: BrickTileWhiteLineW
+ decals:
+ 729: 34,4
+ 730: 34,2
+ 731: 34,1
+ 732: 34,0
+ 783: 8,13
+ 784: 8,15
+ 820: 16,15
+ 821: 16,13
+ 1088: 12,19
+ 1089: 12,21
+ 1096: 13,20
+ - node:
+ color: '#52B4E9FF'
+ id: BrickTileWhiteLineW
+ decals:
+ 546: 4,27
+ 547: 4,25
+ - node:
+ color: '#7B7B3FFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 937: 32,31
+ 1067: 8,13
+ 1068: 8,15
+ - node:
+ color: '#D381C996'
+ id: BrickTileWhiteLineW
+ decals:
+ 241: 13,20
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineW
+ decals:
+ 298: 24,21
+ 299: 24,20
+ 300: 24,19
+ - node:
+ color: '#F9801DFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 410: 0,13
+ 411: 0,15
+ - node:
+ color: '#FFFFFFFF'
+ id: BushATwo
+ decals:
+ 615: 12,39
+ - node:
+ color: '#FFFFFFFF'
+ id: BushCThree
+ decals:
+ 98: 34,36
+ - node:
+ color: '#FFFFFFFF'
+ id: BushCTwo
+ decals:
+ 97: 24,36
+ 243: 12,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushb3
+ decals:
+ 613: 11,39
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc1
+ decals:
+ 614: 10,39
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc3
+ decals:
+ 99: 24,34
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 223: 11,42
+ - node:
+ color: '#467B41FF'
+ id: CheckerNESW
+ decals:
+ 1000: 27,35
+ 1001: 28,35
+ 1002: 29,35
+ 1003: 30,35
+ 1004: 31,35
+ 1021: 20,20
+ 1022: 21,20
+ 1023: 20,21
+ 1024: 19,20
+ 1025: 20,19
+ 1026: 21,20
+ - node:
+ color: '#BE6BC3FF'
+ id: CheckerNESW
+ decals:
+ 459: 40,40
+ 460: 41,40
+ 461: 42,40
+ 462: 45,40
+ 463: 46,40
+ 464: 46,38
+ 465: 45,38
+ 466: 44,38
+ 467: 44,39
+ 468: 45,39
+ 469: 43,39
+ 470: 42,39
+ 471: 41,39
+ 472: 41,38
+ 473: 40,38
+ 474: 42,38
+ 475: 46,39
+ 476: 40,39
+ 477: 43,40
+ 478: 43,38
+ - node:
+ color: '#D381C996'
+ id: CheckerNESW
+ decals:
+ 120: 31,35
+ 121: 30,35
+ 122: 29,35
+ 123: 28,35
+ 124: 27,35
+ 281: 19,20
+ 282: 20,21
+ 283: 20,20
+ 284: 21,20
+ - node:
+ color: '#EFB34196'
+ id: CheckerNESW
+ decals:
+ 4: 8,48
+ - node:
+ color: '#467B41FF'
+ id: CheckerNWSE
+ decals:
+ 1174: 3,35
+ 1175: 2,35
+ 1176: 1,35
+ 1180: 7,35
+ 1181: 8,35
+ 1182: 9,35
+ - node:
+ color: '#D381C996'
+ id: CheckerNWSE
+ decals:
+ 53: 1,35
+ 54: 2,35
+ 55: 3,35
+ - node:
+ color: '#EFB34196'
+ id: CheckerNWSE
+ decals:
+ 5: 14,48
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 33: 13,47
+ 34: 11,47
+ 35: 9,47
+ 36: 12,43
+ 37: 11,43
+ 38: 10,43
+ 227: 4,22
+ 228: 3,22
+ 322: 11,13
+ 323: 20,2
+ 329: 33,7
+ 330: 33,9
+ 331: 25,7
+ 332: 25,9
+ 400: 13,0
+ 706: 24,2
+ 707: 32,2
+ 1041: 20,28
+ 1042: 20,27
+ 1043: 20,25
+ 1044: 20,24
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 674: 34,18
+ 675: 28,2
+ - node:
+ color: '#467B41FF'
+ id: DeliveryGreyscale
+ decals:
+ 698: 30,19
+ 708: 27,4
+ 709: 25,4
+ 710: 24,4
+ 711: 23,4
+ 757: 27,4
+ 758: 25,4
+ 759: 24,4
+ 760: 23,4
+ 978: 34,35
+ 979: 24,35
+ 1244: 2,46
+ 1245: 0,42
+ - node:
+ color: '#7B7B3FFF'
+ id: DeliveryGreyscale
+ decals:
+ 897: 38,32
+ 898: 30,32
+ 909: 38,32
+ 910: 30,32
+ - node:
+ color: '#B8B873FF'
+ id: DeliveryGreyscale
+ decals:
+ 907: 38,32
+ 908: 30,32
+ 1077: 12,14
+ 1078: 10,14
+ - node:
+ color: '#D381C996'
+ id: DeliveryGreyscale
+ decals:
+ 225: 34,35
+ 226: 24,35
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 87: 15,34
+ 88: 19,35
+ 89: 17,35
+ 90: 16,34
+ 91: 18,36
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 217: 9,25
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 40: 10,44
+ 41: 9,45
+ 42: 8,46
+ 43: 8,47
+ 44: 13,48
+ 45: 14,44
+ 46: 13,42
+ 48: 10,42
+ 50: 8,44
+ 51: 13,45
+ 78: 22,34
+ 79: 21,34
+ 80: 12,36
+ 81: 13,36
+ 82: 13,34
+ 83: 12,34
+ 84: 19,34
+ 85: 15,34
+ 86: 19,35
+ 199: 6,30
+ 200: 8,31
+ 201: 10,32
+ 202: 11,32
+ 203: 1,30
+ 204: 1,31
+ 205: 0,31
+ 206: 0,30
+ 211: 6,31
+ 212: 5,31
+ 213: 19,31
+ 214: 21,30
+ 215: 24,30
+ 218: 9,24
+ 219: 8,24
+ 220: 9,26
+ 221: 10,26
+ 222: 8,28
+ 311: 21,19
+ 312: 25,18
+ 313: 24,19
+ 314: 28,20
+ 315: 26,22
+ 316: 34,19
+ 317: 13,21
+ 318: 13,19
+ 319: 2,18
+ 320: 0,21
+ 321: 0,19
+ 358: 33,12
+ 359: 35,12
+ 360: 33,15
+ 361: 38,12
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 47: 11,42
+ 49: 8,45
+ 207: 12,31
+ 208: 4,31
+ 209: 4,30
+ 210: 0,30
+ 355: 34,13
+ 356: 33,15
+ 357: 34,12
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBROne
+ decals:
+ 103: 24,34
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBRThree
+ decals:
+ 618: 11,39
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv1
+ decals:
+ 102: 34,36
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv3
+ decals:
+ 616: 10,39
+ 617: 12,39
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy2
+ decals:
+ 101: 24,36
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy4
+ decals:
+ 100: 34,34
+ - node:
+ color: '#639137FF'
+ id: FullTileOverlayGreyscale
+ decals:
+ 494: 5,43
+ 495: 5,44
+ 496: 5,42
+ 497: 4,43
+ 498: 6,43
+ - node:
+ color: '#9C2020FF'
+ id: FullTileOverlayGreyscale
+ decals:
+ 499: 5,42
+ 500: 5,43
+ 501: 6,43
+ 502: 4,43
+ 503: 5,44
+ - node:
+ color: '#B8B873FF'
+ id: FullTileOverlayGreyscale
+ decals:
+ 861: 22,38
+ 862: 21,38
+ 863: 20,38
+ 864: 19,38
+ 865: 18,38
+ 866: 17,38
+ 867: 16,38
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassa4
+ decals:
+ 96: 34,34
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd3
+ decals:
+ 95: 24,34
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse1
+ decals:
+ 94: 24,36
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse2
+ decals:
+ 92: 34,34
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse3
+ decals:
+ 93: 34,36
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 439: 20,9
+ 440: 19,9
+ 441: 18,9
+ 442: 17,9
+ 443: 16,9
+ 444: 15,9
+ 445: 14,9
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 430: 16,7
+ 431: 15,7
+ 432: 14,7
+ 446: 17,7
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 429: 13,7
+ 436: 13,8
+ 447: 13,9
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 437: 21,8
+ 438: 21,9
+ - node:
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 527: 17,15
+ 528: 18,15
+ 529: 20,15
+ 826: 16,15
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 1045: 21,24
+ 1046: 21,25
+ 1047: 21,27
+ 1048: 21,28
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 530: 17,13
+ 531: 18,13
+ 532: 20,13
+ 533: 21,13
+ 673: 34,19
+ 827: 22,13
+ 828: 16,13
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#7B7B3FFF'
+ id: LoadingAreaGreyscale
+ decals:
+ 913: 37,31
+ - node:
+ angle: 4.71238898038469 rad
+ color: '#7B7B3FFF'
+ id: LoadingAreaGreyscale
+ decals:
+ 914: 31,31
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkCornerNe
+ decals:
+ 677: 29,15
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkCornerNw
+ decals:
+ 678: 25,15
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkCornerSe
+ decals:
+ 679: 29,13
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkCornerSw
+ decals:
+ 680: 25,13
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkEndE
+ decals:
+ 684: 26,15
+ 686: 26,13
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkEndW
+ decals:
+ 683: 28,13
+ 685: 28,15
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkInnerNe
+ decals:
+ 691: 25,13
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkInnerNw
+ decals:
+ 690: 29,13
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkInnerSe
+ decals:
+ 689: 25,15
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkInnerSw
+ decals:
+ 692: 29,15
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkLineE
+ decals:
+ 681: 29,14
+ 688: 25,14
+ - node:
+ color: '#808080FF'
+ id: MiniTileDarkLineW
+ decals:
+ 682: 25,14
+ 687: 29,14
+ - node:
+ color: '#467B41FF'
+ id: MiniTileWhiteCornerNe
+ decals:
+ 1208: 6,36
+ - node:
+ color: '#467B41FF'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 1205: 4,36
+ - node:
+ color: '#467B41FF'
+ id: MiniTileWhiteCornerSe
+ decals:
+ 1206: 6,34
+ - node:
+ color: '#467B41FF'
+ id: MiniTileWhiteCornerSw
+ decals:
+ 1207: 4,34
+ - node:
+ color: '#467B41FF'
+ id: MiniTileWhiteLineE
+ decals:
+ 1210: 6,35
+ - node:
+ color: '#467B41FF'
+ id: MiniTileWhiteLineW
+ decals:
+ 1209: 4,35
+ - node:
+ color: '#467B41FF'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1177: 1,34
+ 1178: 2,34
+ 1179: 3,34
+ 1183: 7,34
+ 1184: 8,34
+ 1185: 9,34
+ 1194: 10,34
+ 1195: 10,35
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 449: 21,9
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 14: 8,44
+ 15: 8,45
+ 16: 8,46
+ 17: 8,47
+ 18: 8,48
+ 19: 9,48
+ 20: 10,48
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 12: 13,48
+ 13: 12,48
+ - node:
+ color: '#467B41FF'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 930: 25,32
+ 931: 24,32
+ 932: 23,32
+ 933: 22,32
+ 934: 21,32
+ 935: 19,32
+ 936: 18,32
+ 976: 20,32
+ 1186: 1,36
+ 1187: 2,36
+ 1188: 3,36
+ 1189: 0,36
+ 1190: 0,35
+ 1191: 7,36
+ 1192: 8,36
+ 1193: 9,36
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 433: 13,7
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 185: 25,32
+ 186: 24,32
+ 187: 23,32
+ 188: 22,32
+ 189: 21,32
+ 190: 19,32
+ 191: 18,32
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 6: 14,44
+ 7: 14,45
+ 8: 14,46
+ 9: 14,47
+ - node:
+ color: '#467B41FF'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1012: 31,36
+ 1013: 32,35
+ 1014: 30,36
+ 1015: 28,36
+ 1016: 27,36
+ 1017: 26,36
+ 1018: 19,20
+ 1019: 20,21
+ 1020: 20,19
+ 1027: 21,21
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 125: 32,35
+ 131: 27,36
+ 132: 28,36
+ 133: 30,36
+ 134: 31,36
+ 136: 26,36
+ 285: 21,21
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 0: 8,44
+ 1: 8,45
+ 2: 8,46
+ 3: 8,47
+ - node:
+ color: '#467B41FF'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 923: 18,30
+ 924: 19,30
+ 925: 21,30
+ 926: 22,30
+ 927: 23,30
+ 928: 24,30
+ 929: 25,30
+ 977: 20,30
+ 1005: 27,34
+ 1006: 28,34
+ 1007: 29,34
+ 1008: 30,34
+ 1009: 31,34
+ 1010: 32,34
+ 1011: 26,35
+ 1028: 19,19
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 448: 13,9
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 21: 14,44
+ 22: 14,45
+ 23: 14,46
+ 24: 14,47
+ 25: 14,48
+ 26: 13,48
+ 27: 12,48
+ 126: 26,35
+ 127: 31,34
+ 128: 30,34
+ 129: 28,34
+ 130: 27,34
+ 135: 32,34
+ 192: 18,30
+ 193: 19,30
+ 194: 21,30
+ 195: 22,30
+ 196: 23,30
+ 197: 24,30
+ 198: 25,30
+ 286: 19,19
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 10: 9,48
+ 11: 10,48
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock01
+ decals:
+ 277: 22,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock03
+ decals:
+ 278: 18,18
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock04
+ decals:
+ 280: 18,22
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock05
+ decals:
+ 279: 22,22
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#7B7B3FFF'
+ id: StandClear
+ decals:
+ 1161: 30,31
+ - node:
+ angle: 4.71238898038469 rad
+ color: '#7B7B3FFF'
+ id: StandClear
+ decals:
+ 1162: 38,31
+ - node:
+ color: '#FFFFFFFF'
+ id: StandClear
+ decals:
+ 39: 11,44
+ - node:
+ color: '#467B41FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 695: 34,20
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 167: 2,28
+ 324: 21,2
+ 325: 25,2
+ 326: 29,2
+ 422: 6,13
+ 703: 33,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 166: 0,28
+ 327: 27,2
+ 328: 19,2
+ 421: 4,13
+ 704: 31,2
+ 705: 23,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 165: 2,24
+ - node:
+ color: '#467B41FF'
+ id: WarnCornerSW
+ decals:
+ 941: 2,20
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 168: 0,24
+ - node:
+ color: '#639137FF'
+ id: WarnCornerSmallGreyscaleNE
+ decals:
+ 394: 8,2
+ - node:
+ color: '#639137FF'
+ id: WarnCornerSmallGreyscaleNW
+ decals:
+ 395: 8,2
+ - node:
+ color: '#639137FF'
+ id: WarnCornerSmallGreyscaleSE
+ decals:
+ 396: 8,2
+ - node:
+ color: '#639137FF'
+ id: WarnCornerSmallGreyscaleSW
+ decals:
+ 397: 8,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNE
+ decals:
+ 804: 8,12
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 803: 14,12
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSE
+ decals:
+ 805: 8,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 1076: 14,16
+ - node:
+ color: '#639137FF'
+ id: WarnEndGreyscaleE
+ decals:
+ 380: 12,2
+ - node:
+ color: '#639137FF'
+ id: WarnEndGreyscaleN
+ decals:
+ 388: 8,4
+ - node:
+ color: '#639137FF'
+ id: WarnEndGreyscaleS
+ decals:
+ 389: 8,0
+ - node:
+ color: '#639137FF'
+ id: WarnEndGreyscaleW
+ decals:
+ 381: 1,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 161: 2,25
+ 162: 2,26
+ 163: 2,27
+ 424: 6,12
+ 792: 8,13
+ 793: 8,14
+ 794: 8,15
+ - node:
+ color: '#467B41FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 754: 18,3
+ 787: 14,14
+ 806: 22,14
+ 832: 6,39
+ 833: 14,39
+ 965: 26,31
+ 968: 16,31
+ 996: 33,35
+ 1102: 16,20
+ 1105: 26,25
+ 1110: 30,25
+ 1129: 22,20
+ 1156: 12,31
+ 1204: 10,35
+ 1237: 22,35
+ - node:
+ color: '#639137FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 392: 8,1
+ 393: 8,3
+ 504: 6,45
+ - node:
+ color: '#7B7B3FFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 870: 22,39
+ 892: 40,31
+ 894: 30,31
+ - node:
+ color: '#808080FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 632: 54,2
+ - node:
+ color: '#96DAFFFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 551: 6,26
+ - node:
+ color: '#9FED5896'
+ id: WarnLineGreyscaleE
+ decals:
+ 428: 22,8
+ 457: 22,8
+ 458: 22,8
+ - node:
+ color: '#B8B873FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 1072: 14,14
+ 1124: 30,25
+ - node:
+ color: '#F9801DFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 405: 6,14
+ - node:
+ color: '#FF9821FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 620: 38,14
+ - node:
+ color: '#FFA647FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 1040: 22,26
+ - node:
+ color: '#467B41FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 694: 32,22
+ 753: 26,4
+ 785: 11,16
+ 808: 19,16
+ 831: 3,40
+ 858: 11,40
+ 895: 34,32
+ 966: 20,32
+ 998: 29,36
+ 1100: 14,22
+ 1103: 25,26
+ 1108: 29,26
+ 1127: 20,22
+ 1154: 6,32
+ 1172: 5,36
+ 1241: 5,10
+ - node:
+ color: '#639137FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 365: 11,2
+ 366: 5,2
+ 367: 3,2
+ 368: 3,0
+ 369: 5,0
+ 370: 11,0
+ 382: 2,2
+ 383: 4,2
+ 384: 6,2
+ 385: 7,2
+ 386: 9,2
+ 387: 10,2
+ 487: 3,48
+ - node:
+ color: '#7B7B3FFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 868: 19,40
+ - node:
+ color: '#808080FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 631: 45,4
+ - node:
+ color: '#96DAFFFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 554: 5,28
+ - node:
+ color: '#9FED5896'
+ id: WarnLineGreyscaleN
+ decals:
+ 427: 17,10
+ 453: 17,10
+ 454: 17,10
+ - node:
+ color: '#B8B873FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 1071: 11,16
+ 1074: 11,12
+ 1123: 29,26
+ - node:
+ color: '#F9801DFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 407: 3,16
+ - node:
+ color: '#FF9821FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 621: 35,16
+ - node:
+ color: '#FFA647FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 1038: 21,28
+ - node:
+ color: '#467B41FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 693: 32,18
+ 809: 19,12
+ 829: 3,38
+ 859: 11,38
+ 896: 34,30
+ 946: 2,18
+ 967: 20,30
+ 999: 29,34
+ 1099: 14,18
+ 1104: 25,24
+ 1109: 29,24
+ 1128: 20,18
+ 1155: 6,30
+ 1171: 5,34
+ 1243: 5,6
+ - node:
+ color: '#639137FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 362: 3,2
+ 363: 5,2
+ 364: 11,2
+ 371: 11,4
+ 372: 5,4
+ 373: 3,4
+ 374: 10,2
+ 375: 9,2
+ 376: 7,2
+ 377: 6,2
+ 378: 4,2
+ 379: 2,2
+ 488: 5,45
+ 489: 3,42
+ 676: 26,0
+ - node:
+ color: '#808080FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 634: 45,0
+ - node:
+ color: '#96DAFFFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 552: 5,24
+ - node:
+ color: '#9FED5896'
+ id: WarnLineGreyscaleS
+ decals:
+ 426: 17,6
+ 455: 17,6
+ 456: 17,6
+ - node:
+ color: '#B8B873FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 1075: 11,12
+ 1125: 29,24
+ - node:
+ color: '#F9801DFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 408: 3,12
+ - node:
+ color: '#FF9821FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 619: 35,12
+ - node:
+ color: '#FFA647FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 1037: 21,24
+ - node:
+ color: '#467B41FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 696: 30,20
+ 752: 34,3
+ 786: 8,14
+ 807: 16,14
+ 830: 0,39
+ 860: 8,39
+ 947: 0,20
+ 964: 18,31
+ 969: 14,31
+ 997: 25,35
+ 1101: 12,20
+ 1106: 24,25
+ 1107: 28,25
+ 1130: 18,20
+ 1153: 0,31
+ 1173: 0,35
+ 1236: 12,35
+ 1242: 0,8
+ - node:
+ color: '#639137FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 390: 8,1
+ 391: 8,3
+ 398: 0,2
+ 490: 0,45
+ - node:
+ color: '#7B7B3FFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 869: 16,39
+ 891: 38,31
+ 893: 28,31
+ - node:
+ color: '#808080FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 633: 36,2
+ - node:
+ color: '#96DAFFFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 553: 4,26
+ - node:
+ color: '#9FED5896'
+ id: WarnLineGreyscaleW
+ decals:
+ 450: 12,8
+ 451: 12,8
+ 452: 12,8
+ - node:
+ color: '#B8B873FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 1073: 8,14
+ 1126: 28,25
+ - node:
+ color: '#F9801DFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 406: 0,14
+ - node:
+ color: '#FFA647FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 1039: 20,26
+ - node:
+ color: '#467B41FF'
+ id: WarnLineN
+ decals:
+ 944: 3,20
+ 945: 4,20
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 31: 12,47
+ 32: 10,47
+ 157: 1,24
+ 308: 27,22
+ 309: 26,22
+ 310: 25,22
+ 538: 21,39
+ 539: 20,39
+ 540: 19,39
+ 541: 18,39
+ 542: 17,39
+ 795: 9,16
+ 796: 10,16
+ 797: 11,16
+ 798: 12,16
+ 799: 13,16
+ 877: 22,39
+ 878: 16,39
+ - node:
+ color: '#467B41FF'
+ id: WarnLineS
+ decals:
+ 942: 2,21
+ 943: 2,22
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 158: 0,25
+ 159: 0,26
+ 160: 0,27
+ 425: 4,12
+ 800: 14,15
+ 801: 14,14
+ 802: 14,13
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 28: 12,44
+ 29: 11,44
+ 30: 10,44
+ 164: 1,28
+ 305: 27,18
+ 306: 26,18
+ 307: 25,18
+ 423: 5,13
+ 699: 20,2
+ 700: 28,2
+ 701: 24,2
+ 702: 32,2
+ 788: 13,12
+ 789: 12,12
+ 790: 10,12
+ 791: 9,12
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 252: 10,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 251: 1,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 249: 10,8
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 250: 1,8
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 253: 9,9
+ 254: 8,9
+ 255: 7,9
+ 256: 6,9
+ 257: 5,9
+ 258: 4,9
+ 259: 3,9
+ 260: 2,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 261: 10,8
+ 262: 9,8
+ 263: 8,8
+ 264: 7,8
+ 265: 6,8
+ 266: 5,8
+ 267: 4,8
+ 268: 3,8
+ 269: 2,8
+ 270: 1,8
+ - node:
+ color: '#FFFFFFFF'
+ id: chevron
+ decals:
+ 52: 11,48
+ - node:
+ cleanable: True
+ color: '#EFD841FF'
+ id: splatter
+ decals:
+ 216: 8.178589,27.034609
+ - type: RadiationGridResistance
+ - type: LoadedMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: SpreaderGrid
+- proto: Airlock
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 41.5,1.5
+ parent: 1653
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 53.5,3.5
+ parent: 1653
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 49.5,3.5
+ parent: 1653
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: 49.5,1.5
+ parent: 1653
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: 53.5,1.5
+ parent: 1653
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: 37.5,1.5
+ parent: 1653
+ - uid: 1570
+ components:
+ - type: Transform
+ pos: 41.5,3.5
+ parent: 1653
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: 37.5,3.5
+ parent: 1653
+- proto: AirlockFreezer
+ entities:
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 1653
+- proto: AirlockVirologyGlass
+ entities:
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1653
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 1653
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 1653
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 1653
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 1653
+ - uid: 1543
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1653
+- proto: AirlockVirologyGlassLocked
+ entities:
+ - uid: 115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,31.5
+ parent: 1653
+- proto: AltarSpawner
+ entities:
+ - uid: 1785
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 1653
+- proto: AlwaysPoweredLightLED
+ entities:
+ - uid: 654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,24.5
+ parent: 1653
+ - uid: 655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,1.5
+ parent: 1653
+ - uid: 767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,44.5
+ parent: 1653
+ - uid: 925
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,12.5
+ parent: 1653
+ - uid: 930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,43.5
+ parent: 1653
+ - uid: 1223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,25.5
+ parent: 1653
+ - uid: 1349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,15.5
+ parent: 1653
+ - uid: 1350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,9.5
+ parent: 1653
+ - uid: 1373
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,8.5
+ parent: 1653
+ - uid: 1556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,0.5
+ parent: 1653
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 1653
+ - uid: 1625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,0.5
+ parent: 1653
+ - uid: 1700
+ components:
+ - type: Transform
+ pos: 14.5,4.5
+ parent: 1653
+ - uid: 1757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,38.5
+ parent: 1653
+ - uid: 1927
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,2.5
+ parent: 1653
+ - uid: 1928
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,2.5
+ parent: 1653
+ - uid: 2031
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,30.5
+ parent: 1653
+ - uid: 2032
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,30.5
+ parent: 1653
+ - uid: 2051
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 1653
+- proto: APCBasic
+ entities:
+ - uid: 353
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1998
+ components:
+ - type: Transform
+ pos: 29.5,40.5
+ parent: 1653
+- proto: Ash
+ entities:
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: 20.679605,0.91186666
+ parent: 1653
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: 20.742105,0.58374166
+ parent: 1653
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: 20.22648,0.80249166
+ parent: 1653
+- proto: AtmosFixFreezerMarker
+ entities:
+ - uid: 281
+ components:
+ - type: Transform
+ pos: 20.5,15.5
+ parent: 1653
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 1653
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 19.5,12.5
+ parent: 1653
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 20.5,12.5
+ parent: 1653
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 20.5,13.5
+ parent: 1653
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 1653
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 1653
+ - uid: 467
+ components:
+ - type: Transform
+ pos: 21.5,12.5
+ parent: 1653
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 1653
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 1653
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 21.5,15.5
+ parent: 1653
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 21.5,13.5
+ parent: 1653
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 1653
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 18.5,14.5
+ parent: 1653
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 18.5,13.5
+ parent: 1653
+ - uid: 754
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 1653
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 18.5,12.5
+ parent: 1653
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 19.5,15.5
+ parent: 1653
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 19.5,14.5
+ parent: 1653
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 22.5,14.5
+ parent: 1653
+ - uid: 1171
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 1653
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: 22.5,13.5
+ parent: 1653
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: 19.5,13.5
+ parent: 1653
+ - uid: 1291
+ components:
+ - type: Transform
+ pos: 18.5,15.5
+ parent: 1653
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 1653
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: 22.5,12.5
+ parent: 1653
+ - uid: 1341
+ components:
+ - type: Transform
+ pos: 16.5,12.5
+ parent: 1653
+ - uid: 1342
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 1653
+ - uid: 1343
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 1653
+ - uid: 1344
+ components:
+ - type: Transform
+ pos: 17.5,13.5
+ parent: 1653
+ - uid: 1345
+ components:
+ - type: Transform
+ pos: 17.5,12.5
+ parent: 1653
+ - uid: 1346
+ components:
+ - type: Transform
+ pos: 16.5,14.5
+ parent: 1653
+ - uid: 1347
+ components:
+ - type: Transform
+ pos: 16.5,13.5
+ parent: 1653
+ - uid: 1352
+ components:
+ - type: Transform
+ pos: 16.5,16.5
+ parent: 1653
+ - uid: 1353
+ components:
+ - type: Transform
+ pos: 16.5,15.5
+ parent: 1653
+- proto: Barricade
+ entities:
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 22.5,36.5
+ parent: 1653
+- proto: BarSign
+ entities:
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 17.5,48.5
+ parent: 1653
+- proto: BaseGasCondenser
+ entities:
+ - uid: 385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,12.5
+ parent: 1653
+- proto: Bed
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 54.5,0.5
+ parent: 1653
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 36.5,4.5
+ parent: 1653
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 54.5,4.5
+ parent: 1653
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 38.5,4.5
+ parent: 1653
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 48.5,4.5
+ parent: 1653
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 52.5,4.5
+ parent: 1653
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 42.5,4.5
+ parent: 1653
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: 38.5,0.5
+ parent: 1653
+ - uid: 1230
+ components:
+ - type: Transform
+ pos: 42.5,0.5
+ parent: 1653
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 1653
+ - uid: 1272
+ components:
+ - type: Transform
+ pos: 36.5,0.5
+ parent: 1653
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: 40.5,4.5
+ parent: 1653
+ - uid: 1588
+ components:
+ - type: Transform
+ pos: 50.5,0.5
+ parent: 1653
+ - uid: 1591
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 1653
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: 48.5,0.5
+ parent: 1653
+ - uid: 1670
+ components:
+ - type: Transform
+ pos: 40.5,0.5
+ parent: 1653
+- proto: BedsheetMedical
+ entities:
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 1653
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 6.5,25.5
+ parent: 1653
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 1653
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 1653
+ - uid: 1246
+ components:
+ - type: Transform
+ pos: 4.5,25.5
+ parent: 1653
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1653
+ - uid: 1370
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1653
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1653
+ - uid: 1385
+ components:
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 1653
+ - uid: 1386
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1653
+- proto: BedsheetSpawner
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 54.5,0.5
+ parent: 1653
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 40.5,4.5
+ parent: 1653
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 1653
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 50.5,0.5
+ parent: 1653
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 38.5,4.5
+ parent: 1653
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 42.5,4.5
+ parent: 1653
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: 48.5,0.5
+ parent: 1653
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: 42.5,0.5
+ parent: 1653
+ - uid: 1253
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 1653
+ - uid: 1276
+ components:
+ - type: Transform
+ pos: 40.5,0.5
+ parent: 1653
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: 48.5,4.5
+ parent: 1653
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: 54.5,4.5
+ parent: 1653
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 52.5,4.5
+ parent: 1653
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: 36.5,0.5
+ parent: 1653
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: 38.5,0.5
+ parent: 1653
+ - uid: 1587
+ components:
+ - type: Transform
+ pos: 36.5,4.5
+ parent: 1653
+- proto: BenchPewLeft
+ entities:
+ - uid: 1795
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1796
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1797
+ components:
+ - type: Transform
+ pos: 9.5,19.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1798
+ components:
+ - type: Transform
+ pos: 9.5,18.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+- proto: BenchPewRight
+ entities:
+ - uid: 1799
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1800
+ components:
+ - type: Transform
+ pos: 7.5,18.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1801
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1802
+ components:
+ - type: Transform
+ pos: 10.5,19.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorner
+ entities:
+ - uid: 103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,42.5
+ parent: 1653
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - type: Fixtures
+ fixtures: {}
+- proto: BenchSofaCorpLeft
+ entities:
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 27.5,36.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1917
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,0.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorpRight
+ entities:
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 26.5,36.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1916
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,1.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaLeft
+ entities:
+ - uid: 236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,44.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaMiddle
+ entities:
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,43.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaRight
+ entities:
+ - uid: 602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,42.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+- proto: BenchSteelLeft
+ entities:
+ - uid: 1231
+ components:
+ - type: Transform
+ pos: 4.5,40.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 1.5,40.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+- proto: BenchSteelRight
+ entities:
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 2.5,40.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 5.5,40.5
+ parent: 1653
+ - type: Physics
+ bodyType: Static
+- proto: Bible
+ entities:
+ - uid: 1803
+ components:
+ - type: Transform
+ pos: 8.500196,21.585516
+ parent: 1653
+- proto: Biofabricator
+ entities:
+ - uid: 1376
+ components:
+ - type: Transform
+ pos: 18.5,10.5
+ parent: 1653
+- proto: BloodCultHoleFloor
+ entities:
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 1653
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: 25.5,12.5
+ parent: 1653
+ - uid: 1683
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 1653
+- proto: BloodCultProp02
+ entities:
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: 24.5,16.5
+ parent: 1653
+- proto: BloodCultProp03
+ entities:
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 25.5,16.5
+ parent: 1653
+- proto: BloodCultProp04
+ entities:
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 1653
+- proto: BloodCultProp05
+ entities:
+ - uid: 118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,12.5
+ parent: 1653
+- proto: BloodCultProp07
+ entities:
+ - uid: 117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,12.5
+ parent: 1653
+- proto: BookshelfFilled
+ entities:
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 1653
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 30.5,16.5
+ parent: 1653
+- proto: BoozeDispenser
+ entities:
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: 20.5,48.5
+ parent: 1653
+- proto: BorgCharger
+ entities:
+ - uid: 2126
+ components:
+ - type: Transform
+ pos: 24.5,24.5
+ parent: 1653
+- proto: BoxFolderWhite
+ entities:
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: 21.488142,22.553272
+ parent: 1653
+- proto: BoxTrashbag
+ entities:
+ - uid: 1737
+ components:
+ - type: Transform
+ pos: 44.396,38.527935
+ parent: 1653
+- proto: Bucket
+ entities:
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: 13.215925,6.8764725
+ parent: 1653
+- proto: CableApcExtension
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 0.5,39.5
+ parent: 1653
+ - uid: 2
+ components:
+ - type: Transform
+ pos: 1.5,39.5
+ parent: 1653
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 2.5,39.5
+ parent: 1653
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 3.5,39.5
+ parent: 1653
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 4.5,39.5
+ parent: 1653
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 5.5,39.5
+ parent: 1653
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 6.5,39.5
+ parent: 1653
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 8.5,39.5
+ parent: 1653
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 9.5,39.5
+ parent: 1653
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 10.5,39.5
+ parent: 1653
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 11.5,39.5
+ parent: 1653
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 12.5,39.5
+ parent: 1653
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 13.5,39.5
+ parent: 1653
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 14.5,39.5
+ parent: 1653
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 16.5,39.5
+ parent: 1653
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 17.5,39.5
+ parent: 1653
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 18.5,39.5
+ parent: 1653
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 19.5,39.5
+ parent: 1653
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 20.5,39.5
+ parent: 1653
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 1653
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 22.5,39.5
+ parent: 1653
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 30.5,39.5
+ parent: 1653
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 34.5,35.5
+ parent: 1653
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 33.5,35.5
+ parent: 1653
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 32.5,35.5
+ parent: 1653
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 31.5,35.5
+ parent: 1653
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 30.5,35.5
+ parent: 1653
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 1653
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 28.5,35.5
+ parent: 1653
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1653
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 26.5,35.5
+ parent: 1653
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 25.5,35.5
+ parent: 1653
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 24.5,35.5
+ parent: 1653
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 22.5,35.5
+ parent: 1653
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 21.5,35.5
+ parent: 1653
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 20.5,35.5
+ parent: 1653
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 19.5,35.5
+ parent: 1653
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 18.5,35.5
+ parent: 1653
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 1653
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 16.5,35.5
+ parent: 1653
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 15.5,35.5
+ parent: 1653
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 14.5,35.5
+ parent: 1653
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 13.5,35.5
+ parent: 1653
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 12.5,35.5
+ parent: 1653
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 10.5,35.5
+ parent: 1653
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 9.5,35.5
+ parent: 1653
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 1653
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 1653
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 6.5,35.5
+ parent: 1653
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 5.5,35.5
+ parent: 1653
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 4.5,35.5
+ parent: 1653
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 3.5,35.5
+ parent: 1653
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 1653
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 1653
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 1653
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 3.5,42.5
+ parent: 1653
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 3.5,43.5
+ parent: 1653
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 3.5,44.5
+ parent: 1653
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 3.5,45.5
+ parent: 1653
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 3.5,46.5
+ parent: 1653
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 3.5,47.5
+ parent: 1653
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 3.5,48.5
+ parent: 1653
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 0.5,45.5
+ parent: 1653
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 1.5,45.5
+ parent: 1653
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 2.5,45.5
+ parent: 1653
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 4.5,45.5
+ parent: 1653
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 5.5,45.5
+ parent: 1653
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 6.5,45.5
+ parent: 1653
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 8.5,45.5
+ parent: 1653
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 9.5,45.5
+ parent: 1653
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 1653
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 13.5,45.5
+ parent: 1653
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 14.5,45.5
+ parent: 1653
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 1653
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 11.5,44.5
+ parent: 1653
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 11.5,48.5
+ parent: 1653
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 19.5,46.5
+ parent: 1653
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 44.5,39.5
+ parent: 1653
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 45.5,39.5
+ parent: 1653
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 34.5,31.5
+ parent: 1653
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 33.5,31.5
+ parent: 1653
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 39.5,31.5
+ parent: 1653
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 32.5,31.5
+ parent: 1653
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 28.5,31.5
+ parent: 1653
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 26.5,31.5
+ parent: 1653
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 1653
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 1653
+ - uid: 131
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 1653
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 22.5,31.5
+ parent: 1653
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 21.5,31.5
+ parent: 1653
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 20.5,31.5
+ parent: 1653
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 19.5,31.5
+ parent: 1653
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 18.5,31.5
+ parent: 1653
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 1653
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 16.5,31.5
+ parent: 1653
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 15.5,31.5
+ parent: 1653
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 14.5,31.5
+ parent: 1653
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 11.5,31.5
+ parent: 1653
+ - uid: 142
+ components:
+ - type: Transform
+ pos: 10.5,31.5
+ parent: 1653
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 8.5,31.5
+ parent: 1653
+ - uid: 145
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 1653
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 6.5,31.5
+ parent: 1653
+ - uid: 147
+ components:
+ - type: Transform
+ pos: 5.5,31.5
+ parent: 1653
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 1653
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 2.5,31.5
+ parent: 1653
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 1.5,31.5
+ parent: 1653
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 0.5,31.5
+ parent: 1653
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 12.5,31.5
+ parent: 1653
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 1653
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 1653
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 1.5,26.5
+ parent: 1653
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 1.5,27.5
+ parent: 1653
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 1.5,28.5
+ parent: 1653
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 26.5,39.5
+ parent: 1653
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 40.5,31.5
+ parent: 1653
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 1653
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 34.5,39.5
+ parent: 1653
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 2.5,26.5
+ parent: 1653
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 0.5,26.5
+ parent: 1653
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 1653
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 9.5,25.5
+ parent: 1653
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 9.5,26.5
+ parent: 1653
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 1653
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 9.5,28.5
+ parent: 1653
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 1653
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 1653
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 3.5,38.5
+ parent: 1653
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 3.5,40.5
+ parent: 1653
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 11.5,38.5
+ parent: 1653
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 11.5,40.5
+ parent: 1653
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 19.5,38.5
+ parent: 1653
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 19.5,40.5
+ parent: 1653
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 33.5,39.5
+ parent: 1653
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 32.5,39.5
+ parent: 1653
+ - uid: 183
+ components:
+ - type: Transform
+ pos: 35.5,40.5
+ parent: 1653
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 35.5,38.5
+ parent: 1653
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 46.5,39.5
+ parent: 1653
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 29.5,36.5
+ parent: 1653
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 1653
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 17.5,34.5
+ parent: 1653
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 17.5,36.5
+ parent: 1653
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 5.5,34.5
+ parent: 1653
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 5.5,36.5
+ parent: 1653
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 6.5,32.5
+ parent: 1653
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 1653
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 20.5,32.5
+ parent: 1653
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 20.5,30.5
+ parent: 1653
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 34.5,32.5
+ parent: 1653
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 34.5,30.5
+ parent: 1653
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 13.5,24.5
+ parent: 1653
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 13.5,25.5
+ parent: 1653
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 13.5,26.5
+ parent: 1653
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 13.5,27.5
+ parent: 1653
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 1653
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 12.5,26.5
+ parent: 1653
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 14.5,26.5
+ parent: 1653
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 1653
+ - uid: 207
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 1653
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 17.5,26.5
+ parent: 1653
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 17.5,27.5
+ parent: 1653
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 17.5,28.5
+ parent: 1653
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 16.5,26.5
+ parent: 1653
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 1653
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 30.5,31.5
+ parent: 1653
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 1653
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 1653
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 1653
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 1653
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 1653
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 3.5,20.5
+ parent: 1653
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 1653
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1653
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 1653
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 43.5,40.5
+ parent: 1653
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 43.5,38.5
+ parent: 1653
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 14.5,18.5
+ parent: 1653
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 14.5,19.5
+ parent: 1653
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 14.5,20.5
+ parent: 1653
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 14.5,21.5
+ parent: 1653
+ - uid: 242
+ components:
+ - type: Transform
+ pos: 14.5,22.5
+ parent: 1653
+ - uid: 243
+ components:
+ - type: Transform
+ pos: 13.5,20.5
+ parent: 1653
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 12.5,20.5
+ parent: 1653
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 15.5,20.5
+ parent: 1653
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 16.5,20.5
+ parent: 1653
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 20.5,18.5
+ parent: 1653
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 20.5,19.5
+ parent: 1653
+ - uid: 249
+ components:
+ - type: Transform
+ pos: 20.5,20.5
+ parent: 1653
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 20.5,21.5
+ parent: 1653
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 20.5,22.5
+ parent: 1653
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 19.5,20.5
+ parent: 1653
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 18.5,20.5
+ parent: 1653
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 1653
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 22.5,20.5
+ parent: 1653
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 26.5,18.5
+ parent: 1653
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1653
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 1653
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 26.5,22.5
+ parent: 1653
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 1653
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1653
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 32.5,18.5
+ parent: 1653
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 1653
+ - uid: 267
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 1653
+ - uid: 268
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 1653
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 32.5,22.5
+ parent: 1653
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 1653
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 30.5,20.5
+ parent: 1653
+ - uid: 272
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 1653
+ - uid: 273
+ components:
+ - type: Transform
+ pos: 34.5,20.5
+ parent: 1653
+ - uid: 283
+ components:
+ - type: Transform
+ pos: 9.5,20.5
+ parent: 1653
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 1653
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 1653
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 19.5,12.5
+ parent: 1653
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 22.5,14.5
+ parent: 1653
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1653
+ - uid: 293
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 1653
+ - uid: 295
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 1653
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 18.5,14.5
+ parent: 1653
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 10.5,12.5
+ parent: 1653
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 1653
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 1653
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 1653
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 14.5,14.5
+ parent: 1653
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 11.5,16.5
+ parent: 1653
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 1653
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 1653
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 5.5,26.5
+ parent: 1653
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 5.5,27.5
+ parent: 1653
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 4.5,26.5
+ parent: 1653
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 5.5,28.5
+ parent: 1653
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 6.5,26.5
+ parent: 1653
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 24.5,39.5
+ parent: 1653
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 32.5,14.5
+ parent: 1653
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 33.5,14.5
+ parent: 1653
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 34.5,14.5
+ parent: 1653
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 1653
+ - uid: 322
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1653
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 37.5,14.5
+ parent: 1653
+ - uid: 324
+ components:
+ - type: Transform
+ pos: 38.5,14.5
+ parent: 1653
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 35.5,13.5
+ parent: 1653
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 35.5,12.5
+ parent: 1653
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 35.5,15.5
+ parent: 1653
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 35.5,16.5
+ parent: 1653
+ - uid: 329
+ components:
+ - type: Transform
+ pos: 19.5,14.5
+ parent: 1653
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 1653
+ - uid: 331
+ components:
+ - type: Transform
+ pos: 19.5,13.5
+ parent: 1653
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 1653
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 34.5,8.5
+ parent: 1653
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1653
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 32.5,8.5
+ parent: 1653
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 1653
+ - uid: 344
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+ - uid: 345
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 1653
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 1653
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1653
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 24.5,8.5
+ parent: 1653
+ - uid: 351
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 29.5,10.5
+ parent: 1653
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 22.5,8.5
+ parent: 1653
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 21.5,8.5
+ parent: 1653
+ - uid: 357
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 1653
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 1653
+ - uid: 359
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 1653
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 1653
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 1653
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 1653
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 1653
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 1653
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 1653
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 1653
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 1653
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 1653
+ - uid: 369
+ components:
+ - type: Transform
+ pos: 17.5,6.5
+ parent: 1653
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1653
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1653
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1653
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1653
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1653
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1653
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1653
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1653
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1653
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 1653
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1653
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 1653
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 1653
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 1653
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1653
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 46.5,14.5
+ parent: 1653
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 43.5,16.5
+ parent: 1653
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 43.5,12.5
+ parent: 1653
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 43.5,15.5
+ parent: 1653
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 1653
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1653
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1653
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 16.5,2.5
+ parent: 1653
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1653
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1653
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 18.5,2.5
+ parent: 1653
+ - uid: 407
+ components:
+ - type: Transform
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 408
+ components:
+ - type: Transform
+ pos: 20.5,2.5
+ parent: 1653
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 1653
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 23.5,2.5
+ parent: 1653
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 24.5,2.5
+ parent: 1653
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 26.5,2.5
+ parent: 1653
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 27.5,2.5
+ parent: 1653
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 28.5,2.5
+ parent: 1653
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 30.5,2.5
+ parent: 1653
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 31.5,2.5
+ parent: 1653
+ - uid: 420
+ components:
+ - type: Transform
+ pos: 32.5,2.5
+ parent: 1653
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 422
+ components:
+ - type: Transform
+ pos: 34.5,2.5
+ parent: 1653
+ - uid: 423
+ components:
+ - type: Transform
+ pos: 36.5,2.5
+ parent: 1653
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 26.5,3.5
+ parent: 1653
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 1653
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 26.5,1.5
+ parent: 1653
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 26.5,0.5
+ parent: 1653
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 37.5,2.5
+ parent: 1653
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 38.5,2.5
+ parent: 1653
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 39.5,2.5
+ parent: 1653
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 40.5,2.5
+ parent: 1653
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 41.5,2.5
+ parent: 1653
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 42.5,2.5
+ parent: 1653
+ - uid: 434
+ components:
+ - type: Transform
+ pos: 43.5,2.5
+ parent: 1653
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 44.5,2.5
+ parent: 1653
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 45.5,2.5
+ parent: 1653
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 46.5,2.5
+ parent: 1653
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 47.5,2.5
+ parent: 1653
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 48.5,2.5
+ parent: 1653
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 49.5,2.5
+ parent: 1653
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 50.5,2.5
+ parent: 1653
+ - uid: 442
+ components:
+ - type: Transform
+ pos: 51.5,2.5
+ parent: 1653
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 52.5,2.5
+ parent: 1653
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 53.5,2.5
+ parent: 1653
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 54.5,2.5
+ parent: 1653
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 45.5,3.5
+ parent: 1653
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 45.5,4.5
+ parent: 1653
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 45.5,0.5
+ parent: 1653
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 45.5,1.5
+ parent: 1653
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 19.5,15.5
+ parent: 1653
+ - uid: 494
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 1653
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 14.5,2.5
+ parent: 1653
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 24.5,14.5
+ parent: 1653
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 27.5,16.5
+ parent: 1653
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 15.5,2.5
+ parent: 1653
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 1653
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 27.5,12.5
+ parent: 1653
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 27.5,15.5
+ parent: 1653
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 12.5,43.5
+ parent: 1653
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 1653
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 1653
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1653
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 19.5,43.5
+ parent: 1653
+ - uid: 623
+ components:
+ - type: Transform
+ pos: 19.5,42.5
+ parent: 1653
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 19.5,47.5
+ parent: 1653
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 35.5,31.5
+ parent: 1653
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 29.5,31.5
+ parent: 1653
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 31.5,31.5
+ parent: 1653
+ - uid: 839
+ components:
+ - type: Transform
+ pos: 36.5,31.5
+ parent: 1653
+ - uid: 843
+ components:
+ - type: Transform
+ pos: 38.5,31.5
+ parent: 1653
+ - uid: 859
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 1653
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 20.5,45.5
+ parent: 1653
+ - uid: 917
+ components:
+ - type: Transform
+ pos: 42.5,39.5
+ parent: 1653
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 8.5,22.5
+ parent: 1653
+ - uid: 919
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 1653
+ - uid: 920
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 1653
+ - uid: 921
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1653
+ - uid: 922
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 1653
+ - uid: 923
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 1653
+ - uid: 926
+ components:
+ - type: Transform
+ pos: 16.5,45.5
+ parent: 1653
+ - uid: 927
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 1653
+ - uid: 929
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1653
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 42.5,14.5
+ parent: 1653
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 1653
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1653
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 25.5,18.5
+ parent: 1653
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 24.5,18.5
+ parent: 1653
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 25.5,22.5
+ parent: 1653
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 24.5,22.5
+ parent: 1653
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 1653
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 1653
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 24.5,19.5
+ parent: 1653
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 1653
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: 41.5,39.5
+ parent: 1653
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 16.5,14.5
+ parent: 1653
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: 40.5,39.5
+ parent: 1653
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 4.5,14.5
+ parent: 1653
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 1653
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1653
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1653
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: 40.5,14.5
+ parent: 1653
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 41.5,14.5
+ parent: 1653
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 44.5,14.5
+ parent: 1653
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 45.5,14.5
+ parent: 1653
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 43.5,14.5
+ parent: 1653
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 21.5,45.5
+ parent: 1653
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 43.5,39.5
+ parent: 1653
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 0.5,14.5
+ parent: 1653
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 1653
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 1653
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1653
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 10.5,20.5
+ parent: 1653
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1653
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1653
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1653
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 1653
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 1653
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 1653
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 1653
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 1653
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 1653
+ - uid: 1139
+ components:
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 1653
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 12.5,16.5
+ parent: 1653
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 13.5,16.5
+ parent: 1653
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 14.5,16.5
+ parent: 1653
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 14.5,15.5
+ parent: 1653
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 14.5,13.5
+ parent: 1653
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 14.5,12.5
+ parent: 1653
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 13.5,12.5
+ parent: 1653
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 12.5,12.5
+ parent: 1653
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 19.5,48.5
+ parent: 1653
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1653
+ - uid: 1167
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1653
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1653
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 1653
+ - uid: 1170
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1653
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 29.5,39.5
+ parent: 1653
+ - uid: 1213
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 1653
+ - uid: 1215
+ components:
+ - type: Transform
+ pos: 27.5,39.5
+ parent: 1653
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 1653
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: 27.5,40.5
+ parent: 1653
+ - uid: 1234
+ components:
+ - type: Transform
+ pos: 37.5,39.5
+ parent: 1653
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 29.5,14.5
+ parent: 1653
+ - uid: 1244
+ components:
+ - type: Transform
+ pos: 27.5,38.5
+ parent: 1653
+ - uid: 1245
+ components:
+ - type: Transform
+ pos: 36.5,39.5
+ parent: 1653
+ - uid: 1259
+ components:
+ - type: Transform
+ pos: 5.5,25.5
+ parent: 1653
+ - uid: 1261
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 1653
+ - uid: 1263
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 1653
+ - uid: 1264
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 1653
+ - uid: 1265
+ components:
+ - type: Transform
+ pos: 38.5,39.5
+ parent: 1653
+ - uid: 1266
+ components:
+ - type: Transform
+ pos: 35.5,39.5
+ parent: 1653
+ - uid: 1270
+ components:
+ - type: Transform
+ pos: 30.5,14.5
+ parent: 1653
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 28.5,39.5
+ parent: 1653
+ - uid: 1309
+ components:
+ - type: Transform
+ pos: 18.5,45.5
+ parent: 1653
+ - uid: 1310
+ components:
+ - type: Transform
+ pos: 19.5,44.5
+ parent: 1653
+ - uid: 1312
+ components:
+ - type: Transform
+ pos: 17.5,45.5
+ parent: 1653
+ - uid: 1317
+ components:
+ - type: Transform
+ pos: 22.5,45.5
+ parent: 1653
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: 19.5,45.5
+ parent: 1653
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 1653
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: 31.5,6.5
+ parent: 1653
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: 30.5,6.5
+ parent: 1653
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: 29.5,6.5
+ parent: 1653
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: 28.5,6.5
+ parent: 1653
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: 27.5,6.5
+ parent: 1653
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1653
+ - uid: 1746
+ components:
+ - type: Transform
+ pos: 22.5,26.5
+ parent: 1653
+ - uid: 1994
+ components:
+ - type: Transform
+ pos: 21.5,26.5
+ parent: 1653
+ - uid: 1999
+ components:
+ - type: Transform
+ pos: 29.5,40.5
+ parent: 1653
+ - uid: 2013
+ components:
+ - type: Transform
+ pos: 20.5,26.5
+ parent: 1653
+ - uid: 2038
+ components:
+ - type: Transform
+ pos: 21.5,27.5
+ parent: 1653
+ - uid: 2039
+ components:
+ - type: Transform
+ pos: 21.5,28.5
+ parent: 1653
+ - uid: 2040
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 1653
+ - uid: 2041
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 1653
+ - uid: 2109
+ components:
+ - type: Transform
+ pos: 24.5,25.5
+ parent: 1653
+ - uid: 2110
+ components:
+ - type: Transform
+ pos: 25.5,25.5
+ parent: 1653
+ - uid: 2111
+ components:
+ - type: Transform
+ pos: 26.5,25.5
+ parent: 1653
+ - uid: 2112
+ components:
+ - type: Transform
+ pos: 25.5,26.5
+ parent: 1653
+ - uid: 2113
+ components:
+ - type: Transform
+ pos: 25.5,24.5
+ parent: 1653
+ - uid: 2114
+ components:
+ - type: Transform
+ pos: 28.5,25.5
+ parent: 1653
+ - uid: 2115
+ components:
+ - type: Transform
+ pos: 29.5,25.5
+ parent: 1653
+ - uid: 2116
+ components:
+ - type: Transform
+ pos: 30.5,25.5
+ parent: 1653
+ - uid: 2117
+ components:
+ - type: Transform
+ pos: 29.5,26.5
+ parent: 1653
+ - uid: 2118
+ components:
+ - type: Transform
+ pos: 29.5,24.5
+ parent: 1653
+- proto: CableHV
+ entities:
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 24.5,39.5
+ parent: 1653
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 26.5,38.5
+ parent: 1653
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 10.5,46.5
+ parent: 1653
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 9.5,46.5
+ parent: 1653
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 12.5,46.5
+ parent: 1653
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 13.5,46.5
+ parent: 1653
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 13.5,47.5
+ parent: 1653
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 1653
+ - uid: 552
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 11.5,44.5
+ parent: 1653
+ - uid: 554
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+ - uid: 555
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 1653
+ - uid: 556
+ components:
+ - type: Transform
+ pos: 10.5,42.5
+ parent: 1653
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 9.5,42.5
+ parent: 1653
+ - uid: 558
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 1653
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 26.5,40.5
+ parent: 1653
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1653
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 1653
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1653
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 1653
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1653
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: 30.5,40.5
+ parent: 1653
+ - uid: 1248
+ components:
+ - type: Transform
+ pos: 28.5,40.5
+ parent: 1653
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: 24.5,40.5
+ parent: 1653
+ - uid: 1456
+ components:
+ - type: Transform
+ pos: 30.5,38.5
+ parent: 1653
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 1489
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 1490
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 28.5,7.5
+ parent: 1653
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 1653
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 1653
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1653
+ - uid: 1495
+ components:
+ - type: Transform
+ pos: 26.5,7.5
+ parent: 1653
+ - uid: 1496
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 1653
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: 32.5,7.5
+ parent: 1653
+ - uid: 1498
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 1653
+ - uid: 1499
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1653
+ - uid: 1500
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 1653
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 1653
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1653
+ - uid: 1505
+ components:
+ - type: Transform
+ pos: 25.5,9.5
+ parent: 1653
+ - uid: 1555
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 1653
+ - uid: 1557
+ components:
+ - type: Transform
+ pos: 28.5,38.5
+ parent: 1653
+ - uid: 1558
+ components:
+ - type: Transform
+ pos: 30.5,39.5
+ parent: 1653
+ - uid: 1559
+ components:
+ - type: Transform
+ pos: 27.5,38.5
+ parent: 1653
+ - uid: 1985
+ components:
+ - type: Transform
+ pos: 24.5,38.5
+ parent: 1653
+ - uid: 1986
+ components:
+ - type: Transform
+ pos: 26.5,39.5
+ parent: 1653
+ - uid: 1988
+ components:
+ - type: Transform
+ pos: 27.5,40.5
+ parent: 1653
+ - uid: 1995
+ components:
+ - type: Transform
+ pos: 29.5,38.5
+ parent: 1653
+- proto: CableMV
+ entities:
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 1653
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 9.5,42.5
+ parent: 1653
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 10.5,42.5
+ parent: 1653
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 11.5,42.5
+ parent: 1653
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 12.5,42.5
+ parent: 1653
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 13.5,42.5
+ parent: 1653
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1653
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 28.5,19.5
+ parent: 1653
+ - uid: 1026
+ components:
+ - type: Transform
+ pos: 28.5,20.5
+ parent: 1653
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1653
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1508
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 1509
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 1996
+ components:
+ - type: Transform
+ pos: 28.5,40.5
+ parent: 1653
+ - uid: 1997
+ components:
+ - type: Transform
+ pos: 29.5,40.5
+ parent: 1653
+- proto: CableTerminal
+ entities:
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 1038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 1518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,7.5
+ parent: 1653
+ - uid: 1519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,7.5
+ parent: 1653
+ - uid: 1520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,7.5
+ parent: 1653
+ - uid: 1987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,39.5
+ parent: 1653
+- proto: Carpet
+ entities:
+ - uid: 110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,48.5
+ parent: 1653
+ - uid: 274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,47.5
+ parent: 1653
+ - uid: 1091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,46.5
+ parent: 1653
+ - uid: 1786
+ components:
+ - type: Transform
+ pos: 6.5,20.5
+ parent: 1653
+ - uid: 1787
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 1653
+ - uid: 1788
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 1653
+ - uid: 1789
+ components:
+ - type: Transform
+ pos: 9.5,20.5
+ parent: 1653
+ - uid: 1790
+ components:
+ - type: Transform
+ pos: 10.5,20.5
+ parent: 1653
+ - uid: 1791
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 1653
+ - uid: 1792
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 1653
+ - uid: 1793
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 1653
+ - uid: 1794
+ components:
+ - type: Transform
+ pos: 8.5,22.5
+ parent: 1653
+- proto: CarpetChapel
+ entities:
+ - uid: 1769
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 1653
+ - uid: 1770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,19.5
+ parent: 1653
+ - uid: 1771
+ components:
+ - type: Transform
+ pos: 9.5,18.5
+ parent: 1653
+ - uid: 1772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,19.5
+ parent: 1653
+ - uid: 1773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,19.5
+ parent: 1653
+ - uid: 1774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,19.5
+ parent: 1653
+ - uid: 1775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,18.5
+ parent: 1653
+ - uid: 1776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,18.5
+ parent: 1653
+ - uid: 1777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,21.5
+ parent: 1653
+ - uid: 1778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,21.5
+ parent: 1653
+ - uid: 1779
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 1653
+ - uid: 1780
+ components:
+ - type: Transform
+ pos: 9.5,21.5
+ parent: 1653
+ - uid: 1781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,22.5
+ parent: 1653
+ - uid: 1782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,22.5
+ parent: 1653
+ - uid: 1783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,22.5
+ parent: 1653
+ - uid: 1784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,22.5
+ parent: 1653
+- proto: CarpetOrange
+ entities:
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: 40.5,0.5
+ parent: 1653
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 42.5,0.5
+ parent: 1653
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: 41.5,0.5
+ parent: 1653
+- proto: CarpetPurple
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,45.5
+ parent: 1653
+ - uid: 42
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,45.5
+ parent: 1653
+ - uid: 108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,47.5
+ parent: 1653
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 54.5,0.5
+ parent: 1653
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 1653
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 1653
+ - uid: 976
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1653
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 1653
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 8.5,6.5
+ parent: 1653
+ - uid: 979
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1653
+ - uid: 980
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 1653
+ - uid: 981
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 1653
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 10.5,6.5
+ parent: 1653
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1653
+ - uid: 1240
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 1653
+ - uid: 1268
+ components:
+ - type: Transform
+ pos: 53.5,0.5
+ parent: 1653
+ - uid: 1315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,46.5
+ parent: 1653
+ - uid: 1331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,48.5
+ parent: 1653
+ - uid: 1332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,45.5
+ parent: 1653
+ - uid: 1336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,46.5
+ parent: 1653
+ - uid: 1743
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,45.5
+ parent: 1653
+- proto: CarpetSBlue
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 54.5,4.5
+ parent: 1653
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 52.5,4.5
+ parent: 1653
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 53.5,4.5
+ parent: 1653
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 1653
+- proto: Catwalk
+ entities:
+ - uid: 560
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 1653
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 10.5,46.5
+ parent: 1653
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 11.5,46.5
+ parent: 1653
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 12.5,46.5
+ parent: 1653
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1653
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 1653
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 1653
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 1653
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 1653
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1653
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 25.5,20.5
+ parent: 1653
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: 28.5,7.5
+ parent: 1653
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 1653
+ - uid: 1523
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 1653
+ - uid: 1945
+ components:
+ - type: Transform
+ pos: 32.5,39.5
+ parent: 1653
+ - uid: 1946
+ components:
+ - type: Transform
+ pos: 33.5,39.5
+ parent: 1653
+ - uid: 1947
+ components:
+ - type: Transform
+ pos: 34.5,39.5
+ parent: 1653
+ - uid: 1948
+ components:
+ - type: Transform
+ pos: 35.5,39.5
+ parent: 1653
+ - uid: 1949
+ components:
+ - type: Transform
+ pos: 36.5,39.5
+ parent: 1653
+ - uid: 1950
+ components:
+ - type: Transform
+ pos: 37.5,39.5
+ parent: 1653
+ - uid: 1951
+ components:
+ - type: Transform
+ pos: 38.5,39.5
+ parent: 1653
+ - uid: 1952
+ components:
+ - type: Transform
+ pos: 35.5,40.5
+ parent: 1653
+ - uid: 1953
+ components:
+ - type: Transform
+ pos: 35.5,38.5
+ parent: 1653
+ - uid: 2000
+ components:
+ - type: Transform
+ pos: 27.5,40.5
+ parent: 1653
+ - uid: 2001
+ components:
+ - type: Transform
+ pos: 27.5,39.5
+ parent: 1653
+ - uid: 2002
+ components:
+ - type: Transform
+ pos: 27.5,38.5
+ parent: 1653
+ - uid: 2003
+ components:
+ - type: Transform
+ pos: 26.5,39.5
+ parent: 1653
+ - uid: 2004
+ components:
+ - type: Transform
+ pos: 28.5,39.5
+ parent: 1653
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: 30.5,38.5
+ parent: 1653
+ - uid: 2006
+ components:
+ - type: Transform
+ pos: 30.5,39.5
+ parent: 1653
+ - uid: 2007
+ components:
+ - type: Transform
+ pos: 30.5,40.5
+ parent: 1653
+ - uid: 2008
+ components:
+ - type: Transform
+ pos: 24.5,40.5
+ parent: 1653
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: 24.5,39.5
+ parent: 1653
+ - uid: 2010
+ components:
+ - type: Transform
+ pos: 24.5,38.5
+ parent: 1653
+ - uid: 2081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,28.5
+ parent: 1653
+ - uid: 2083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,26.5
+ parent: 1653
+ - uid: 2085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,24.5
+ parent: 1653
+ - uid: 2086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,26.5
+ parent: 1653
+- proto: Chair
+ entities:
+ - uid: 630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,35.5
+ parent: 1653
+ - uid: 638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,35.5
+ parent: 1653
+ - uid: 696
+ components:
+ - type: Transform
+ pos: 0.5,32.5
+ parent: 1653
+ - uid: 705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,30.5
+ parent: 1653
+ - uid: 706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,30.5
+ parent: 1653
+ - uid: 779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,32.5
+ parent: 1653
+ - uid: 780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,30.5
+ parent: 1653
+ - uid: 783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,32.5
+ parent: 1653
+ - uid: 784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,30.5
+ parent: 1653
+ - uid: 1004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,21.5
+ parent: 1653
+ - uid: 1005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,19.5
+ parent: 1653
+ - uid: 1008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,19.5
+ parent: 1653
+ - uid: 1009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,21.5
+ parent: 1653
+ - uid: 1079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,34.5
+ parent: 1653
+ - uid: 1707
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1653
+ - uid: 2120
+ components:
+ - type: Transform
+ pos: 26.5,26.5
+ parent: 1653
+ - uid: 2127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,24.5
+ parent: 1653
+- proto: ChairOfficeDark
+ entities:
+ - uid: 675
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,30.5
+ parent: 1653
+ - uid: 678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,30.5
+ parent: 1653
+ - uid: 697
+ components:
+ - type: Transform
+ pos: 2.5,32.5
+ parent: 1653
+ - uid: 708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,15.5
+ parent: 1653
+ - uid: 716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,13.5
+ parent: 1653
+ - uid: 880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,16.5
+ parent: 1653
+ - uid: 1584
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,12.5
+ parent: 1653
+ - uid: 2049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,27.5
+ parent: 1653
+ - uid: 2050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,25.5
+ parent: 1653
+- proto: ChairOfficeLight
+ entities:
+ - uid: 462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,43.5
+ parent: 1653
+ - uid: 463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,44.5
+ parent: 1653
+ - uid: 1062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,21.5
+ parent: 1653
+ - uid: 1063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,22.5
+ parent: 1653
+ - uid: 1455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,3.5
+ parent: 1653
+ - uid: 1467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,3.5
+ parent: 1653
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 22.5,1.5
+ parent: 1653
+ - uid: 1480
+ components:
+ - type: Transform
+ pos: 30.5,1.5
+ parent: 1653
+ - uid: 1612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,0.5
+ parent: 1653
+- proto: ChairWood
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,43.5
+ parent: 1653
+ - uid: 1084
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,44.5
+ parent: 1653
+ - uid: 1318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,42.5
+ parent: 1653
+ - uid: 1319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,43.5
+ parent: 1653
+ - uid: 1334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,43.5
+ parent: 1653
+ - uid: 1741
+ components:
+ - type: Transform
+ pos: 17.5,45.5
+ parent: 1653
+- proto: chem_master
+ entities:
+ - uid: 1299
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 1653
+ - uid: 1646
+ components:
+ - type: Transform
+ pos: 24.5,4.5
+ parent: 1653
+- proto: ChemDispenserEmpty
+ entities:
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 1653
+ - uid: 1957
+ components:
+ - type: Transform
+ pos: 25.5,4.5
+ parent: 1653
+- proto: ChemistryHotplate
+ entities:
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1653
+- proto: ClosetJanitorFilled
+ entities:
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 46.5,40.5
+ parent: 1653
+- proto: ClosetL3JanitorFilled
+ entities:
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 41.5,40.5
+ parent: 1653
+- proto: ClosetL3VirologyFilled
+ entities:
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 14.5,4.5
+ parent: 1653
+ - uid: 446
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 1653
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 1653
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 30.5,18.5
+ parent: 1653
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 1653
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 0.5,48.5
+ parent: 1653
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 2.5,48.5
+ parent: 1653
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 1.5,48.5
+ parent: 1653
+ - uid: 1956
+ components:
+ - type: Transform
+ pos: 29.5,4.5
+ parent: 1653
+- proto: ClothingHeadHatCone
+ entities:
+ - uid: 2072
+ components:
+ - type: Transform
+ pos: 17.261436,34.46187
+ parent: 1653
+ - uid: 2073
+ components:
+ - type: Transform
+ pos: 17.620811,36.602493
+ parent: 1653
+ - uid: 2074
+ components:
+ - type: Transform
+ pos: 22.419394,35.30562
+ parent: 1653
+ - uid: 2147
+ components:
+ - type: Transform
+ pos: 12.638144,35.571243
+ parent: 1653
+- proto: ClothingNeckAmuletBloodCult
+ entities:
+ - uid: 1685
+ components:
+ - type: Transform
+ pos: 27.494274,14.450742
+ parent: 1653
+- proto: ComfyChair
+ entities:
+ - uid: 774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,31.5
+ parent: 1653
+ - uid: 935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,18.5
+ parent: 1653
+ - uid: 937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,21.5
+ parent: 1653
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 13.5,22.5
+ parent: 1653
+ - uid: 939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,19.5
+ parent: 1653
+ - uid: 986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,6.5
+ parent: 1653
+ - uid: 987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,7.5
+ parent: 1653
+ - uid: 988
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,6.5
+ parent: 1653
+ - uid: 989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1653
+- proto: ComputerTabletopAlert
+ entities:
+ - uid: 1939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,21.5
+ parent: 1653
+ - uid: 2037
+ components:
+ - type: Transform
+ pos: 37.5,16.5
+ parent: 1653
+- proto: ComputerTabletopAnalysisConsole
+ entities:
+ - uid: 1152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,0.5
+ parent: 1653
+ - uid: 1738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,44.5
+ parent: 1653
+- proto: ComputerTabletopBroken
+ entities:
+ - uid: 838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,24.5
+ parent: 1653
+ - uid: 861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,28.5
+ parent: 1653
+- proto: ComputerTabletopCrewMonitoring
+ entities:
+ - uid: 1260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,0.5
+ parent: 1653
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 1653
+ - uid: 1938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,22.5
+ parent: 1653
+ - uid: 2034
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,32.5
+ parent: 1653
+- proto: ComputerTabletopFrame
+ entities:
+ - uid: 1740
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,42.5
+ parent: 1653
+- proto: ComputerTabletopMedicalRecords
+ entities:
+ - uid: 1739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,43.5
+ parent: 1653
+- proto: ComputerTabletopSurveillanceCameraMonitor
+ entities:
+ - uid: 836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,27.5
+ parent: 1653
+ - uid: 1613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,0.5
+ parent: 1653
+- proto: ComputerTelevision
+ entities:
+ - uid: 1918
+ components:
+ - type: Transform
+ pos: 44.5,1.5
+ parent: 1653
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 22.5,34.5
+ parent: 1653
+ - uid: 1383
+ components:
+ - type: Transform
+ pos: 16.5,25.5
+ parent: 1653
+- proto: CrateServiceJanitorialSupplies
+ entities:
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 42.5,40.5
+ parent: 1653
+- proto: CrateTrashCartJani
+ entities:
+ - uid: 1727
+ components:
+ - type: Transform
+ pos: 46.5,38.5
+ parent: 1653
+- proto: Crematorium
+ entities:
+ - uid: 1068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,18.5
+ parent: 1653
+- proto: CultAltarSpawner
+ entities:
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 1653
+- proto: DiseaseDiagnoser
+ entities:
+ - uid: 857
+ components:
+ - type: Transform
+ pos: 2.5,46.5
+ parent: 1653
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 30.5,19.5
+ parent: 1653
+ - uid: 1747
+ components:
+ - type: Transform
+ pos: 27.5,4.5
+ parent: 1653
+- proto: DisposalTrunk
+ entities:
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 1438
+ components:
+ - type: Transform
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 1440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,1.5
+ parent: 1653
+ - uid: 1441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,1.5
+ parent: 1653
+ - uid: 1442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 1443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,1.5
+ parent: 1653
+- proto: DisposalUnit
+ entities:
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 1435
+ components:
+ - type: Transform
+ pos: 33.5,2.5
+ parent: 1653
+- proto: DrinkPoisonWinebottleFull
+ entities:
+ - uid: 1806
+ components:
+ - type: Transform
+ pos: 6.4064465,22.726141
+ parent: 1653
+- proto: EmergencyLight
+ entities:
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 6.5,36.5
+ parent: 1653
+ - uid: 629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,34.5
+ parent: 1653
+ - uid: 831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,15.5
+ parent: 1653
+ - uid: 931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,42.5
+ parent: 1653
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - type: ActiveEmergencyLight
+ - uid: 1606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,16.5
+ parent: 1653
+ - type: ActiveEmergencyLight
+ - uid: 1607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,44.5
+ parent: 1653
+ - type: ActiveEmergencyLight
+ - uid: 1672
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1653
+ - uid: 1699
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1653
+ - uid: 1758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,38.5
+ parent: 1653
+ - uid: 2033
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,40.5
+ parent: 1653
+ - uid: 2056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,34.5
+ parent: 1653
+ - uid: 2057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,30.5
+ parent: 1653
+ - uid: 2058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,38.5
+ parent: 1653
+ - uid: 2059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,38.5
+ parent: 1653
+ - uid: 2060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,38.5
+ parent: 1653
+ - uid: 2061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,38.5
+ parent: 1653
+ - uid: 2062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,46.5
+ parent: 1653
+ - uid: 2063
+ components:
+ - type: Transform
+ pos: 18.5,47.5
+ parent: 1653
+ - uid: 2064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,21.5
+ parent: 1653
+ - uid: 2065
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,15.5
+ parent: 1653
+ - uid: 2066
+ components:
+ - type: Transform
+ pos: 18.5,10.5
+ parent: 1653
+ - uid: 2067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,6.5
+ parent: 1653
+ - uid: 2068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,0.5
+ parent: 1653
+ - uid: 2069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,0.5
+ parent: 1653
+ - uid: 2070
+ components:
+ - type: Transform
+ pos: 39.5,2.5
+ parent: 1653
+ - uid: 2071
+ components:
+ - type: Transform
+ pos: 51.5,2.5
+ parent: 1653
+ - uid: 2128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,13.5
+ parent: 1653
+ - uid: 2129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,18.5
+ parent: 1653
+ - uid: 2130
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,21.5
+ parent: 1653
+ - uid: 2131
+ components:
+ - type: Transform
+ pos: 28.5,26.5
+ parent: 1653
+ - uid: 2132
+ components:
+ - type: Transform
+ pos: 26.5,26.5
+ parent: 1653
+ - uid: 2133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,24.5
+ parent: 1653
+ - uid: 2134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,24.5
+ parent: 1653
+ - uid: 2135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,24.5
+ parent: 1653
+ - uid: 2136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,25.5
+ parent: 1653
+ - uid: 2137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,27.5
+ parent: 1653
+ - uid: 2140
+ components:
+ - type: Transform
+ pos: 8.5,32.5
+ parent: 1653
+ - uid: 2141
+ components:
+ - type: Transform
+ pos: 21.5,32.5
+ parent: 1653
+ - uid: 2142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,30.5
+ parent: 1653
+ - uid: 2143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,30.5
+ parent: 1653
+ - uid: 2144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,30.5
+ parent: 1653
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 1653
+ - uid: 2162
+ components:
+ - type: Transform
+ pos: 1.5,42.5
+ parent: 1653
+- proto: filingCabinetRandom
+ entities:
+ - uid: 1482
+ components:
+ - type: Transform
+ pos: 34.5,0.5
+ parent: 1653
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: 32.5,12.5
+ parent: 1653
+- proto: Floodlight
+ entities:
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 19.496153,34.502384
+ parent: 1653
+- proto: FloorDrain
+ entities:
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 0.5,47.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1074
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,22.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1732
+ components:
+ - type: Transform
+ pos: 43.5,39.5
+ parent: 1653
+ - type: Fixtures
+ fixtures: {}
+- proto: GasMixer
+ entities:
+ - uid: 483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,13.5
+ parent: 1653
+ - uid: 2076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,25.5
+ parent: 1653
+- proto: GasMixerFlipped
+ entities:
+ - uid: 2075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,27.5
+ parent: 1653
+- proto: GasOutletInjector
+ entities:
+ - uid: 1627
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1653
+ - uid: 1631
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 1653
+ - uid: 1635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,0.5
+ parent: 1653
+ - uid: 1667
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 1653
+ - uid: 1669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,0.5
+ parent: 1653
+ - uid: 1701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,0.5
+ parent: 1653
+- proto: GasPipeBend
+ entities:
+ - uid: 750
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1653
+ - uid: 906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,13.5
+ parent: 1653
+ - uid: 1616
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1653
+ - uid: 2077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,24.5
+ parent: 1653
+ - uid: 2078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,28.5
+ parent: 1653
+- proto: GasPipeFourway
+ entities:
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 1653
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1653
+- proto: GasPipeStraight
+ entities:
+ - uid: 1618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,3.5
+ parent: 1653
+ - uid: 1619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,1.5
+ parent: 1653
+ - uid: 1620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,1.5
+ parent: 1653
+ - uid: 1621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,3.5
+ parent: 1653
+ - uid: 1622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,3.5
+ parent: 1653
+ - uid: 1623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,1.5
+ parent: 1653
+ - uid: 1647
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,2.5
+ parent: 1653
+ - uid: 1648
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,2.5
+ parent: 1653
+ - uid: 1649
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,2.5
+ parent: 1653
+ - uid: 1650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,2.5
+ parent: 1653
+ - uid: 1651
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,2.5
+ parent: 1653
+ - uid: 1652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,2.5
+ parent: 1653
+ - uid: 1656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,2.5
+ parent: 1653
+- proto: GasPipeTJunction
+ entities:
+ - uid: 1642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 1653
+ - uid: 2079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,26.5
+ parent: 1653
+- proto: GasPort
+ entities:
+ - uid: 746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,12.5
+ parent: 1653
+ - uid: 844
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,27.5
+ parent: 1653
+ - uid: 845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,25.5
+ parent: 1653
+ - uid: 856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,24.5
+ parent: 1653
+ - uid: 866
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,28.5
+ parent: 1653
+ - uid: 913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,12.5
+ parent: 1653
+ - uid: 1615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,0.5
+ parent: 1653
+- proto: GasPressurePump
+ entities:
+ - uid: 1657
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,1.5
+ parent: 1653
+ - uid: 2080
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,26.5
+ parent: 1653
+- proto: GeneratorRTG
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ pos: 24.5,40.5
+ parent: 1653
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 1653
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 1653
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 13.5,47.5
+ parent: 1653
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 1653
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 30.5,40.5
+ parent: 1653
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 1653
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 24.5,38.5
+ parent: 1653
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 1653
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: 25.5,9.5
+ parent: 1653
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 1653
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 33.5,9.5
+ parent: 1653
+- proto: GeneratorRTGDamaged
+ entities:
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 30.5,38.5
+ parent: 1653
+- proto: Girder
+ entities:
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 14.5,34.5
+ parent: 1653
+- proto: Grille
+ entities:
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1653
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1653
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1653
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1653
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 1653
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 1653
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1653
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 1653
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1653
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1653
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1653
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1653
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 1653
+ - uid: 742
+ components:
+ - type: Transform
+ pos: 17.5,30.5
+ parent: 1653
+ - uid: 743
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 1653
+ - uid: 751
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1653
+ - uid: 1186
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 1653
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 1653
+ - uid: 1303
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 1653
+ - uid: 1304
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 1653
+ - uid: 1306
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 1653
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1653
+ - uid: 1361
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1653
+ - uid: 1362
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 1653
+ - uid: 1363
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 1653
+ - uid: 1364
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 1653
+ - uid: 1368
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1653
+ - uid: 1371
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1653
+ - uid: 1992
+ components:
+ - type: Transform
+ pos: 29.5,38.5
+ parent: 1653
+- proto: GunSafeShuttleT3Spawner
+ entities:
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 1653
+ - uid: 1665
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 1653
+- proto: HappyHonkCargo
+ entities:
+ - uid: 1666
+ components:
+ - type: Transform
+ pos: 8.5052395,27.559341
+ parent: 1653
+- proto: HighSecCaptainLocked
+ entities:
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 1653
+- proto: HospitalCurtains
+ entities:
+ - uid: 786
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 1653
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 6.5,25.5
+ parent: 1653
+ - uid: 806
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1653
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 4.5,25.5
+ parent: 1653
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 1653
+- proto: hydroponicsTrayAnchored
+ entities:
+ - uid: 749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,6.5
+ parent: 1653
+ - uid: 912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,6.5
+ parent: 1653
+ - uid: 1190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,6.5
+ parent: 1653
+ - uid: 1191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,7.5
+ parent: 1653
+ - uid: 1284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,6.5
+ parent: 1653
+ - uid: 1715
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,6.5
+ parent: 1653
+- proto: JanitorialTrolley
+ entities:
+ - uid: 1728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,38.5
+ parent: 1653
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 1653
+ - uid: 1181
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1653
+- proto: Lamp
+ entities:
+ - uid: 769
+ components:
+ - type: Transform
+ pos: 1.4880867,32.68946
+ parent: 1653
+- proto: LampGold
+ entities:
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 17.553259,44.577797
+ parent: 1653
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 21.600134,43.921547
+ parent: 1653
+ - uid: 2035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.527401,31.790619
+ parent: 1653
+- proto: LockerBotanistFilled
+ entities:
+ - uid: 830
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 1653
+- proto: LockerBotanistLoot
+ entities:
+ - uid: 841
+ components:
+ - type: Transform
+ pos: 19.5,6.5
+ parent: 1653
+- proto: LockerChemistryFilled
+ entities:
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 1653
+- proto: LockerJanitorFilled
+ entities:
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 40.5,40.5
+ parent: 1653
+- proto: MachineCentrifuge
+ entities:
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 30.5,4.5
+ parent: 1653
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1653
+- proto: MachineElectrolysisUnit
+ entities:
+ - uid: 339
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1653
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 1983
+ components:
+ - type: Transform
+ pos: 37.5,40.5
+ parent: 1653
+ - uid: 1984
+ components:
+ - type: Transform
+ pos: 36.5,38.5
+ parent: 1653
+ - uid: 2159
+ components:
+ - type: Transform
+ pos: 21.5,46.5
+ parent: 1653
+- proto: MaintenancePlantSpawner
+ entities:
+ - uid: 1981
+ components:
+ - type: Transform
+ pos: 32.5,40.5
+ parent: 1653
+ - uid: 1982
+ components:
+ - type: Transform
+ pos: 34.5,39.5
+ parent: 1653
+- proto: MaintenanceWeaponSpawner
+ entities:
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 20.5,42.5
+ parent: 1653
+ - uid: 1980
+ components:
+ - type: Transform
+ pos: 32.5,38.5
+ parent: 1653
+- proto: MedicalBed
+ entities:
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 4.5,25.5
+ parent: 1653
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 1653
+ - uid: 616
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1653
+ - uid: 620
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 1653
+ - uid: 622
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1653
+ - uid: 752
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1653
+ - uid: 1058
+ components:
+ - type: Transform
+ pos: 6.5,24.5
+ parent: 1653
+ - uid: 1378
+ components:
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 1653
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1653
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: 6.5,25.5
+ parent: 1653
+- proto: Mirror
+ entities:
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1653
+ - uid: 893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,19.5
+ parent: 1653
+- proto: MopBucketFull
+ entities:
+ - uid: 1734
+ components:
+ - type: Transform
+ pos: 42.47678,38.57481
+ parent: 1653
+- proto: MopItem
+ entities:
+ - uid: 1735
+ components:
+ - type: Transform
+ pos: 42.50803,38.60606
+ parent: 1653
+- proto: Morgue
+ entities:
+ - uid: 294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,12.5
+ parent: 1653
+ - uid: 332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,12.5
+ parent: 1653
+ - uid: 486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,12.5
+ parent: 1653
+ - uid: 487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,12.5
+ parent: 1653
+ - uid: 488
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,12.5
+ parent: 1653
+ - uid: 489
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,12.5
+ parent: 1653
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 16.5,16.5
+ parent: 1653
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 1653
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 1653
+ - type: EntityStorage
+ open: True
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 1653
+- proto: OperatingTable
+ entities:
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 5.5,43.5
+ parent: 1653
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 34.5,22.5
+ parent: 1653
+- proto: PianoInstrument
+ entities:
+ - uid: 1330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,47.5
+ parent: 1653
+- proto: PortableFlasher
+ entities:
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 30.5,32.5
+ parent: 1653
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 38.5,32.5
+ parent: 1653
+- proto: PortableGeneratorPacman
+ entities:
+ - uid: 1528
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 1653
+ - uid: 1529
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 1653
+- proto: PottedPlantRandom
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1653
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 25.5,36.5
+ parent: 1653
+ - uid: 932
+ components:
+ - type: Transform
+ pos: 22.5,42.5
+ parent: 1653
+ - uid: 1919
+ components:
+ - type: Transform
+ pos: 44.5,0.5
+ parent: 1653
+ - uid: 2029
+ components:
+ - type: Transform
+ pos: 33.5,30.5
+ parent: 1653
+ - uid: 2030
+ components:
+ - type: Transform
+ pos: 35.5,30.5
+ parent: 1653
+ - uid: 2160
+ components:
+ - type: Transform
+ pos: 10.5,10.5
+ parent: 1653
+- proto: PottedPlantRandomPlastic
+ entities:
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 1653
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 12.5,36.5
+ parent: 1653
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 1653
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 7.5,32.5
+ parent: 1653
+ - uid: 1935
+ components:
+ - type: Transform
+ pos: 0.5,38.5
+ parent: 1653
+- proto: PowerCellRecharger
+ entities:
+ - uid: 807
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1653
+ - uid: 2122
+ components:
+ - type: Transform
+ pos: 24.5,26.5
+ parent: 1653
+- proto: Poweredlight
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,46.5
+ parent: 1653
+ - uid: 506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,38.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,38.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 634
+ components:
+ - type: Transform
+ pos: 2.5,36.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,34.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,38.5
+ parent: 1653
+ - uid: 653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,21.5
+ parent: 1653
+ - uid: 657
+ components:
+ - type: Transform
+ pos: 14.5,36.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,34.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 27.5,36.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 11.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 770
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 771
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 15.5,22.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,18.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,18.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,18.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,42.5
+ parent: 1653
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: 27.5,4.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,19.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 2016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,38.5
+ parent: 1653
+- proto: PoweredlightEmpty
+ entities:
+ - uid: 703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,30.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,34.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredSmallLight
+ entities:
+ - uid: 586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,42.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,44.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,44.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,25.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,19.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,22.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 949
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,6.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,14.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,0.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1595
+ components:
+ - type: Transform
+ pos: 38.5,16.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,12.5
+ parent: 1653
+ - uid: 1875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,12.5
+ parent: 1653
+ - uid: 1920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,0.5
+ parent: 1653
+ - uid: 1921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,0.5
+ parent: 1653
+ - uid: 1922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,0.5
+ parent: 1653
+ - uid: 1923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,0.5
+ parent: 1653
+ - uid: 1924
+ components:
+ - type: Transform
+ pos: 53.5,4.5
+ parent: 1653
+ - uid: 1925
+ components:
+ - type: Transform
+ pos: 49.5,4.5
+ parent: 1653
+ - uid: 1926
+ components:
+ - type: Transform
+ pos: 37.5,4.5
+ parent: 1653
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,26.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 1594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,12.5
+ parent: 1653
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - type: Timer
+ - uid: 2138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,24.5
+ parent: 1653
+ - uid: 2139
+ components:
+ - type: Transform
+ pos: 30.5,26.5
+ parent: 1653
+- proto: Rack
+ entities:
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 20.5,36.5
+ parent: 1653
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 21.5,36.5
+ parent: 1653
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 16.5,24.5
+ parent: 1653
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 1653
+ - uid: 1047
+ components:
+ - type: Transform
+ pos: 28.5,21.5
+ parent: 1653
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 1653
+ - uid: 1729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,38.5
+ parent: 1653
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: 22.5,40.5
+ parent: 1653
+ - uid: 1752
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 1653
+ - uid: 1753
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 1653
+ - uid: 1819
+ components:
+ - type: Transform
+ pos: 40.5,15.5
+ parent: 1653
+ - uid: 1820
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1653
+ - uid: 1821
+ components:
+ - type: Transform
+ pos: 42.5,16.5
+ parent: 1653
+ - uid: 1822
+ components:
+ - type: Transform
+ pos: 42.5,15.5
+ parent: 1653
+ - uid: 1823
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 1653
+ - uid: 1824
+ components:
+ - type: Transform
+ pos: 44.5,16.5
+ parent: 1653
+ - uid: 1825
+ components:
+ - type: Transform
+ pos: 46.5,16.5
+ parent: 1653
+ - uid: 1826
+ components:
+ - type: Transform
+ pos: 46.5,15.5
+ parent: 1653
+ - uid: 1828
+ components:
+ - type: Transform
+ pos: 46.5,13.5
+ parent: 1653
+ - uid: 1829
+ components:
+ - type: Transform
+ pos: 46.5,12.5
+ parent: 1653
+ - uid: 1830
+ components:
+ - type: Transform
+ pos: 44.5,12.5
+ parent: 1653
+ - uid: 1831
+ components:
+ - type: Transform
+ pos: 44.5,13.5
+ parent: 1653
+ - uid: 1832
+ components:
+ - type: Transform
+ pos: 42.5,12.5
+ parent: 1653
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: 40.5,12.5
+ parent: 1653
+ - uid: 1834
+ components:
+ - type: Transform
+ pos: 40.5,13.5
+ parent: 1653
+ - uid: 1835
+ components:
+ - type: Transform
+ pos: 42.5,13.5
+ parent: 1653
+ - uid: 1971
+ components:
+ - type: Transform
+ pos: 38.5,38.5
+ parent: 1653
+ - uid: 1972
+ components:
+ - type: Transform
+ pos: 36.5,40.5
+ parent: 1653
+ - uid: 1973
+ components:
+ - type: Transform
+ pos: 32.5,38.5
+ parent: 1653
+ - uid: 2011
+ components:
+ - type: Transform
+ pos: 26.5,38.5
+ parent: 1653
+ - uid: 2082
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 1653
+- proto: Railing
+ entities:
+ - uid: 936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,18.5
+ parent: 1653
+ - uid: 940
+ components:
+ - type: Transform
+ pos: 12.5,19.5
+ parent: 1653
+ - uid: 2025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,31.5
+ parent: 1653
+ - uid: 2027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,31.5
+ parent: 1653
+- proto: RailingCornerSmall
+ entities:
+ - uid: 943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,19.5
+ parent: 1653
+- proto: RailingRound
+ entities:
+ - uid: 2026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,30.5
+ parent: 1653
+ - uid: 2028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,30.5
+ parent: 1653
+- proto: RandomInstruments
+ entities:
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 36.5,0.5
+ parent: 1653
+ - uid: 865
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 1653
+ - uid: 1351
+ components:
+ - type: Transform
+ pos: 50.5,4.5
+ parent: 1653
+- proto: RandomItem
+ entities:
+ - uid: 1654
+ components:
+ - type: Transform
+ pos: 12.5,21.5
+ parent: 1653
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: 16.5,19.5
+ parent: 1653
+ - uid: 1661
+ components:
+ - type: Transform
+ pos: 22.5,32.5
+ parent: 1653
+ - uid: 1662
+ components:
+ - type: Transform
+ pos: 19.5,30.5
+ parent: 1653
+ - uid: 1668
+ components:
+ - type: Transform
+ pos: 10.5,47.5
+ parent: 1653
+ - uid: 1673
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 1653
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 1653
+ - uid: 1679
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1653
+- proto: RandomMedicCorpseSpawner
+ entities:
+ - uid: 1075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,22.5
+ parent: 1653
+ - uid: 1712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,0.5
+ parent: 1653
+- proto: RandomSoap
+ entities:
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 1653
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 1653
+- proto: RandomSpawner
+ entities:
+ - uid: 627
+ components:
+ - type: Transform
+ pos: 4.5,34.5
+ parent: 1653
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 7.5,36.5
+ parent: 1653
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 3.5,35.5
+ parent: 1653
+ - uid: 650
+ components:
+ - type: Transform
+ pos: 0.5,36.5
+ parent: 1653
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 1653
+ - uid: 1059
+ components:
+ - type: Transform
+ pos: 14.5,7.5
+ parent: 1653
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 1653
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: 20.5,9.5
+ parent: 1653
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: 18.5,9.5
+ parent: 1653
+ - uid: 1227
+ components:
+ - type: Transform
+ pos: 22.5,8.5
+ parent: 1653
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: 14.5,9.5
+ parent: 1653
+ - uid: 1461
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 1653
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: 17.5,6.5
+ parent: 1653
+- proto: RandomVending
+ entities:
+ - uid: 934
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 1653
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 533
+ components:
+ - type: Transform
+ pos: 29.5,38.5
+ parent: 1653
+- proto: ReinforcedWindow
+ entities:
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1653
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 1653
+ - uid: 451
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 1653
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 1653
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1653
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1653
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1653
+ - uid: 465
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1653
+ - uid: 507
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 1653
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1653
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1653
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1653
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1653
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1653
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 1653
+ - uid: 611
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 1653
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 17.5,30.5
+ parent: 1653
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 1653
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 1653
+ - uid: 1356
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1653
+ - uid: 1357
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 1653
+ - uid: 1358
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 1653
+ - uid: 1359
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1653
+ - uid: 1360
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 1653
+ - uid: 1365
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 1653
+ - uid: 1366
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1653
+ - uid: 1367
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 1653
+ - uid: 1369
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1653
+- proto: ResearchAndDevelopmentServer
+ entities:
+ - uid: 864
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1653
+- proto: SeedExtractor
+ entities:
+ - uid: 1305
+ components:
+ - type: Transform
+ pos: 19.5,10.5
+ parent: 1653
+- proto: ShuttersRadiation
+ entities:
+ - uid: 867
+ components:
+ - type: Transform
+ pos: 29.5,39.5
+ parent: 1653
+- proto: ShuttersRadiationOpen
+ entities:
+ - uid: 1993
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 1653
+- proto: ShuttersWindow
+ entities:
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 10.5,43.5
+ parent: 1653
+ - type: DeviceLinkSink
+ links:
+ - 583
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 11.5,43.5
+ parent: 1653
+ - type: DeviceLinkSink
+ links:
+ - 583
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 12.5,43.5
+ parent: 1653
+ - type: DeviceLinkSink
+ links:
+ - 583
+- proto: SignalButton
+ entities:
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 9.5,43.5
+ parent: 1653
+ - type: DeviceLinkSource
+ linkedPorts:
+ 580:
+ - Pressed: Toggle
+ 581:
+ - Pressed: Toggle
+ 582:
+ - Pressed: Toggle
+- proto: SignDirectionalHydro
+ entities:
+ - uid: 1724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,7.5
+ parent: 1653
+- proto: SignDirectionalJanitor
+ entities:
+ - uid: 1726
+ components:
+ - type: Transform
+ pos: 44.5,40.5
+ parent: 1653
+- proto: SignElectricalMed
+ entities:
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 8.5,43.5
+ parent: 1653
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 1653
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: 28.5,9.5
+ parent: 1653
+- proto: SignEngineering
+ entities:
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: 34.5,16.5
+ parent: 1653
+- proto: SignRedEight
+ entities:
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: 38.5,1.5
+ parent: 1653
+- proto: SignRedFive
+ entities:
+ - uid: 1561
+ components:
+ - type: Transform
+ pos: 52.5,1.5
+ parent: 1653
+- proto: SignRedFour
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 52.5,3.5
+ parent: 1653
+- proto: SignRedOne
+ entities:
+ - uid: 1565
+ components:
+ - type: Transform
+ pos: 38.5,3.5
+ parent: 1653
+ - uid: 2145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,32.5
+ parent: 1653
+- proto: SignRedSeven
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 40.5,1.5
+ parent: 1653
+- proto: SignRedSix
+ entities:
+ - uid: 1560
+ components:
+ - type: Transform
+ pos: 50.5,1.5
+ parent: 1653
+- proto: SignRedThree
+ entities:
+ - uid: 1564
+ components:
+ - type: Transform
+ pos: 50.5,3.5
+ parent: 1653
+- proto: SignRedTwo
+ entities:
+ - uid: 1671
+ components:
+ - type: Transform
+ pos: 40.5,3.5
+ parent: 1653
+ - uid: 2146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,32.5
+ parent: 1653
+- proto: SignSecureMed
+ entities:
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 1653
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 1653
+- proto: SignVirology
+ entities:
+ - uid: 1256
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 1653
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: 33.5,4.5
+ parent: 1653
+ - uid: 1954
+ components:
+ - type: Transform
+ pos: 16.5,4.5
+ parent: 1653
+- proto: SinkWide
+ entities:
+ - uid: 471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,47.5
+ parent: 1653
+ - uid: 803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,24.5
+ parent: 1653
+ - uid: 804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,28.5
+ parent: 1653
+ - uid: 805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,28.5
+ parent: 1653
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1653
+ - uid: 891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,19.5
+ parent: 1653
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1653
+ - uid: 1733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,40.5
+ parent: 1653
+- proto: SmartFridge
+ entities:
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1653
+ - uid: 1458
+ components:
+ - type: Transform
+ pos: 23.5,4.5
+ parent: 1653
+- proto: SMESBasic
+ entities:
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 26.5,40.5
+ parent: 1653
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 1653
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 11.5,45.5
+ parent: 1653
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 1653
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 1653
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 1653
+- proto: SolidSecretDoor
+ entities:
+ - uid: 1214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,16.5
+ parent: 1653
+ - uid: 1262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,14.5
+ parent: 1653
+ - uid: 1279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,14.5
+ parent: 1653
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: 27.5,12.5
+ parent: 1653
+- proto: SpawnDungeonClutterBeakerEmpty
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 17.508053,43.64005
+ parent: 1653
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 0.99453807,16.484083
+ parent: 1653
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 22.287348,4.675832
+ parent: 1653
+ - uid: 591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.36547,13.565901
+ parent: 1653
+ - uid: 617
+ components:
+ - type: Transform
+ pos: 21.115473,4.441457
+ parent: 1653
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 22.709223,4.472707
+ parent: 1653
+ - uid: 969
+ components:
+ - type: Transform
+ pos: 21.365473,4.769582
+ parent: 1653
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 21.724848,4.457082
+ parent: 1653
+ - uid: 1176
+ components:
+ - type: Transform
+ pos: 2.7048159,12.687208
+ parent: 1653
+ - uid: 1178
+ components:
+ - type: Transform
+ pos: 2.2516909,12.655958
+ parent: 1653
+ - uid: 1179
+ components:
+ - type: Transform
+ pos: 2.5954409,12.452833
+ parent: 1653
+ - uid: 1180
+ components:
+ - type: Transform
+ pos: 1.3851631,16.405958
+ parent: 1653
+ - uid: 1298
+ components:
+ - type: Transform
+ pos: 2.1891909,12.437208
+ parent: 1653
+ - uid: 1960
+ components:
+ - type: Transform
+ pos: 27.43555,2.7791195
+ parent: 1653
+ - uid: 1961
+ components:
+ - type: Transform
+ pos: 31.232426,2.4666195
+ parent: 1653
+- proto: SpawnDungeonClutterImplanter
+ entities:
+ - uid: 1968
+ components:
+ - type: Transform
+ pos: 20.357252,0.4884808
+ parent: 1653
+- proto: SpawnDungeonClutterMedical
+ entities:
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 12.613158,28.671333
+ parent: 1653
+ - uid: 908
+ components:
+ - type: Transform
+ pos: 12.363158,28.436958
+ parent: 1653
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: 14.6179085,1.1491132
+ parent: 1653
+ - uid: 1962
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.123539,4.4978695
+ parent: 1653
+ - uid: 1963
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.889164,4.6697445
+ parent: 1653
+ - uid: 1964
+ components:
+ - type: Transform
+ pos: 21.763004,4.7009945
+ parent: 1653
+ - uid: 1965
+ components:
+ - type: Transform
+ pos: 20.96613,4.6697445
+ parent: 1653
+ - uid: 1966
+ components:
+ - type: Transform
+ pos: 19.669254,2.5916195
+ parent: 1653
+ - uid: 1967
+ components:
+ - type: Transform
+ pos: 29.451002,2.4666195
+ parent: 1653
+ - uid: 2055
+ components:
+ - type: Transform
+ pos: 28.683006,36.542156
+ parent: 1653
+- proto: SpawnDungeonClutterPatientTransport
+ entities:
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: 4.5,27.5
+ parent: 1653
+ - uid: 1813
+ components:
+ - type: Transform
+ pos: 4.5,28.5
+ parent: 1653
+ - uid: 1979
+ components:
+ - type: Transform
+ pos: 33.46475,40.585865
+ parent: 1653
+- proto: SpawnDungeonClutterSyringe
+ entities:
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 1.4632881,12.593458
+ parent: 1653
+ - uid: 910
+ components:
+ - type: Transform
+ pos: 0.85391307,16.530958
+ parent: 1653
+ - uid: 1177
+ components:
+ - type: Transform
+ pos: 1.7601631,12.577833
+ parent: 1653
+ - uid: 1710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.4835751,0.6129701
+ parent: 1653
+- proto: SpawnDungeonLootArmoryClutter
+ entities:
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 28.935242,32.495216
+ parent: 1653
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: 38.49774,30.573343
+ parent: 1653
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: 39.607117,32.588966
+ parent: 1653
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: 30.492989,30.620218
+ parent: 1653
+ - uid: 1754
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 1653
+ - uid: 1755
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 1653
+ - uid: 1756
+ components:
+ - type: Transform
+ pos: 22.5,40.5
+ parent: 1653
+ - uid: 1763
+ components:
+ - type: Transform
+ pos: 21.627516,40.28638
+ parent: 1653
+ - uid: 1764
+ components:
+ - type: Transform
+ pos: 21.83064,40.583256
+ parent: 1653
+ - uid: 1765
+ components:
+ - type: Transform
+ pos: 22.596266,40.31763
+ parent: 1653
+ - uid: 1766
+ components:
+ - type: Transform
+ pos: 22.377516,40.552006
+ parent: 1653
+ - uid: 2104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.172354,0.9465852
+ parent: 1653
+- proto: SpawnDungeonLootArmoryGuns
+ entities:
+ - uid: 2148
+ components:
+ - type: Transform
+ pos: 28.911795,0.5880221
+ parent: 1653
+ - uid: 2149
+ components:
+ - type: Transform
+ pos: 42.683395,4.322397
+ parent: 1653
+ - uid: 2153
+ components:
+ - type: Transform
+ pos: 28.549303,26.469124
+ parent: 1653
+ - uid: 2155
+ components:
+ - type: Transform
+ pos: 30.547493,30.672554
+ parent: 1653
+ - uid: 2156
+ components:
+ - type: Transform
+ pos: 40.20229,32.43818
+ parent: 1653
+ - uid: 2157
+ components:
+ - type: Transform
+ pos: 21.290741,40.449932
+ parent: 1653
+ - uid: 2158
+ components:
+ - type: Transform
+ pos: 22.071991,40.418682
+ parent: 1653
+- proto: SpawnDungeonLootBureaucracy
+ entities:
+ - uid: 619
+ components:
+ - type: Transform
+ pos: 19.528336,32.551476
+ parent: 1653
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 1.3471019,46.61399
+ parent: 1653
+ - uid: 823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.605526,31.978119
+ parent: 1653
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: 0.9096019,46.42649
+ parent: 1653
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 24.54396,31.660852
+ parent: 1653
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 21.73092,16.262358
+ parent: 1653
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 22.51271,30.598352
+ parent: 1653
+ - uid: 1337
+ components:
+ - type: Transform
+ pos: 21.527796,16.559233
+ parent: 1653
+ - uid: 1338
+ components:
+ - type: Transform
+ pos: 21.54342,15.621733
+ parent: 1653
+ - uid: 1339
+ components:
+ - type: Transform
+ pos: 21.465296,15.949858
+ parent: 1653
+ - uid: 1348
+ components:
+ - type: Transform
+ pos: 21.35592,16.184233
+ parent: 1653
+ - uid: 1703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.3991585,1.5084882
+ parent: 1653
+ - uid: 1705
+ components:
+ - type: Transform
+ pos: 14.7429085,1.5866132
+ parent: 1653
+ - uid: 1708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.3742001,0.4879701
+ parent: 1653
+ - uid: 1709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.6242001,0.6442201
+ parent: 1653
+ - uid: 2036
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.621151,30.649994
+ parent: 1653
+ - uid: 2106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.328604,0.9622102
+ parent: 1653
+- proto: SpawnDungeonLootCanister
+ entities:
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 1653
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 1653
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 1653
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 1653
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 1653
+ - uid: 1637
+ components:
+ - type: Transform
+ pos: 18.5,27.5
+ parent: 1653
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: 18.5,28.5
+ parent: 1653
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: 38.5,40.5
+ parent: 1653
+- proto: SpawnDungeonLootChemsHydroponics
+ entities:
+ - uid: 753
+ components:
+ - type: Transform
+ pos: 22.408081,7.39108
+ parent: 1653
+ - uid: 911
+ components:
+ - type: Transform
+ pos: 22.283081,7.562955
+ parent: 1653
+ - uid: 924
+ components:
+ - type: Transform
+ pos: 22.329956,7.000455
+ parent: 1653
+ - uid: 1716
+ components:
+ - type: Transform
+ pos: 22.611206,7.437955
+ parent: 1653
+- proto: SpawnDungeonLootCircuitBoard
+ entities:
+ - uid: 1940
+ components:
+ - type: Transform
+ pos: 27.40435,22.354977
+ parent: 1653
+ - uid: 1941
+ components:
+ - type: Transform
+ pos: 1.6886501,25.920597
+ parent: 1653
+- proto: SpawnDungeonLootClutterEngi
+ entities:
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 12.316283,24.468208
+ parent: 1653
+ - uid: 1173
+ components:
+ - type: Transform
+ pos: 12.628783,24.608833
+ parent: 1653
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 33.191795,13.486207
+ parent: 1653
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: 33.629295,13.673707
+ parent: 1653
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 36.973045,15.079957
+ parent: 1653
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 36.48867,16.579956
+ parent: 1653
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: 10.367256,7.6852627
+ parent: 1653
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 32.55117,13.658082
+ parent: 1653
+ - uid: 1641
+ components:
+ - type: Transform
+ pos: 35.535545,14.642457
+ parent: 1653
+ - uid: 1680
+ components:
+ - type: Transform
+ pos: 21.462755,36.54628
+ parent: 1653
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: 8.553732,35.58555
+ parent: 1653
+ - uid: 1686
+ components:
+ - type: Transform
+ pos: 10.648506,7.4196377
+ parent: 1653
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: 36.51992,15.923707
+ parent: 1653
+ - uid: 1827
+ components:
+ - type: Transform
+ pos: 40.31357,16.67536
+ parent: 1653
+ - uid: 1836
+ components:
+ - type: Transform
+ pos: 40.641693,16.503485
+ parent: 1653
+ - uid: 1837
+ components:
+ - type: Transform
+ pos: 42.37607,15.67536
+ parent: 1653
+ - uid: 1838
+ components:
+ - type: Transform
+ pos: 42.68857,15.472235
+ parent: 1653
+ - uid: 1839
+ components:
+ - type: Transform
+ pos: 42.46982,13.48786
+ parent: 1653
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: 44.766693,15.64411
+ parent: 1653
+ - uid: 1841
+ components:
+ - type: Transform
+ pos: 44.610443,16.48786
+ parent: 1653
+ - uid: 1842
+ components:
+ - type: Transform
+ pos: 46.50107,16.597235
+ parent: 1653
+ - uid: 1843
+ components:
+ - type: Transform
+ pos: 44.56357,12.61286
+ parent: 1653
+ - uid: 1844
+ components:
+ - type: Transform
+ pos: 46.454193,12.58161
+ parent: 1653
+ - uid: 1845
+ components:
+ - type: Transform
+ pos: 40.59482,12.534735
+ parent: 1653
+ - uid: 2053
+ components:
+ - type: Transform
+ pos: 33.58468,34.667156
+ parent: 1653
+ - uid: 2054
+ components:
+ - type: Transform
+ pos: 28.401756,36.62028
+ parent: 1653
+ - uid: 2107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.40673,0.6653352
+ parent: 1653
+- proto: SpawnDungeonLootClutterKitchen
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 21.068884,46.499672
+ parent: 1653
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 21.428259,46.499672
+ parent: 1653
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 20.443884,46.780922
+ parent: 1653
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 1.5097866,10.419947
+ parent: 1653
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 1.2597866,10.779322
+ parent: 1653
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 1.2129116,10.482447
+ parent: 1653
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: 20.678259,47.312172
+ parent: 1653
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 1.6972866,10.716822
+ parent: 1653
+ - uid: 1697
+ components:
+ - type: Transform
+ pos: 2.0410366,10.544947
+ parent: 1653
+ - uid: 1698
+ components:
+ - type: Transform
+ pos: 2.4160366,10.701197
+ parent: 1653
+ - uid: 2108
+ components:
+ - type: Transform
+ pos: 31.597359,1.2590852
+ parent: 1653
+- proto: SpawnDungeonLootCrateArmoryArmor
+ entities:
+ - uid: 1749
+ components:
+ - type: Transform
+ pos: 18.5,40.5
+ parent: 1653
+- proto: SpawnDungeonLootCrateArmoryWeapon
+ entities:
+ - uid: 1748
+ components:
+ - type: Transform
+ pos: 18.5,38.5
+ parent: 1653
+ - uid: 1759
+ components:
+ - type: Transform
+ pos: 17.5,40.5
+ parent: 1653
+- proto: SpawnDungeonLootCrateVehicle
+ entities:
+ - uid: 1955
+ components:
+ - type: Transform
+ pos: 14.5,42.5
+ parent: 1653
+ - uid: 2161
+ components:
+ - type: Transform
+ pos: 12.5,27.5
+ parent: 1653
+- proto: SpawnDungeonLootFood
+ entities:
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 0.4160366,9.513697
+ parent: 1653
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 0.5879116,9.919947
+ parent: 1653
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 1.3656492,25.793985
+ parent: 1653
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 1.6937742,25.52836
+ parent: 1653
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 12.461545,22.599348
+ parent: 1653
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 11.53257,30.694124
+ parent: 1653
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 16.47303,18.559921
+ parent: 1653
+- proto: SpawnDungeonLootKitchenTabletop
+ entities:
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+- proto: SpawnDungeonLootKitsFirstAid
+ entities:
+ - uid: 1817
+ components:
+ - type: Transform
+ pos: 6.338212,27.416548
+ parent: 1653
+ - uid: 1818
+ components:
+ - type: Transform
+ pos: 6.650712,27.588423
+ parent: 1653
+ - uid: 1871
+ components:
+ - type: Transform
+ pos: 42.59482,15.55036
+ parent: 1653
+ - uid: 1915
+ components:
+ - type: Transform
+ pos: 54.418865,0.4279878
+ parent: 1653
+- proto: SpawnDungeonLootKitSurgery
+ entities:
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 6.5202923,46.51293
+ parent: 1653
+ - uid: 1863
+ components:
+ - type: Transform
+ pos: 44.37607,12.503485
+ parent: 1653
+ - uid: 1864
+ components:
+ - type: Transform
+ pos: 44.360443,15.659735
+ parent: 1653
+ - uid: 2017
+ components:
+ - type: Transform
+ pos: 33.56157,22.57114
+ parent: 1653
+- proto: SpawnDungeonLootLathe
+ entities:
+ - uid: 1281
+ components:
+ - type: Transform
+ pos: 32.5,15.5
+ parent: 1653
+- proto: SpawnDungeonLootLatheArmory
+ entities:
+ - uid: 1767
+ components:
+ - type: Transform
+ pos: 16.5,40.5
+ parent: 1653
+- proto: SpawnDungeonLootLatheEngi
+ entities:
+ - uid: 873
+ components:
+ - type: Transform
+ pos: 32.5,16.5
+ parent: 1653
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 33.5,16.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersArmory
+ entities:
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 40.5,30.5
+ parent: 1653
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 28.5,30.5
+ parent: 1653
+ - uid: 1744
+ components:
+ - type: Transform
+ pos: 21.5,38.5
+ parent: 1653
+ - uid: 1768
+ components:
+ - type: Transform
+ pos: 20.5,38.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersEngi
+ entities:
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 1653
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: 27.5,9.5
+ parent: 1653
+ - uid: 2012
+ components:
+ - type: Transform
+ pos: 28.5,38.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersGeneral
+ entities:
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1653
+ - uid: 953
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1653
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1653
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersMed
+ entities:
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 4.5,35.5
+ parent: 1653
+ - uid: 760
+ components:
+ - type: Transform
+ pos: 4.5,48.5
+ parent: 1653
+ - uid: 763
+ components:
+ - type: Transform
+ pos: 5.5,48.5
+ parent: 1653
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 8.5,30.5
+ parent: 1653
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 1653
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 14.5,24.5
+ parent: 1653
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 1653
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: 14.5,25.5
+ parent: 1653
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 14.5,27.5
+ parent: 1653
+ - uid: 1711
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1653
+- proto: SpawnDungeonLootLockersProtectiveGear
+ entities:
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 1653
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 1653
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 6.5,35.5
+ parent: 1653
+ - uid: 1969
+ components:
+ - type: Transform
+ pos: 34.5,40.5
+ parent: 1653
+ - uid: 1970
+ components:
+ - type: Transform
+ pos: 37.5,38.5
+ parent: 1653
+ - uid: 2084
+ components:
+ - type: Transform
+ pos: 16.5,28.5
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsBasicFull
+ entities:
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 27.427818,8.406059
+ parent: 1653
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 27.802818,8.281059
+ parent: 1653
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 27.521568,8.671684
+ parent: 1653
+ - uid: 933
+ components:
+ - type: Transform
+ pos: 44.669296,38.589455
+ parent: 1653
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: 12.425658,24.499458
+ parent: 1653
+ - uid: 1247
+ components:
+ - type: Transform
+ pos: 33.424976,18.593527
+ parent: 1653
+ - uid: 1454
+ components:
+ - type: Transform
+ pos: 26.43496,38.65841
+ parent: 1653
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 27.802818,8.515434
+ parent: 1653
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 32.50711,4.582082
+ parent: 1653
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: 7.4517813,6.5602627
+ parent: 1653
+ - uid: 1643
+ components:
+ - type: Transform
+ pos: 8.631171,28.549417
+ parent: 1653
+ - uid: 1750
+ components:
+ - type: Transform
+ pos: 20.306318,40.33874
+ parent: 1653
+ - uid: 1760
+ components:
+ - type: Transform
+ pos: 20.603193,40.58874
+ parent: 1653
+ - uid: 1859
+ components:
+ - type: Transform
+ pos: 42.40732,12.64411
+ parent: 1653
+ - uid: 1860
+ components:
+ - type: Transform
+ pos: 42.68857,13.20661
+ parent: 1653
+ - uid: 1861
+ components:
+ - type: Transform
+ pos: 46.454193,13.534735
+ parent: 1653
+ - uid: 1862
+ components:
+ - type: Transform
+ pos: 46.610443,13.26911
+ parent: 1653
+ - uid: 1906
+ components:
+ - type: Transform
+ pos: 48.310688,4.317608
+ parent: 1653
+ - uid: 1931
+ components:
+ - type: Transform
+ pos: 1.6251614,38.478745
+ parent: 1653
+ - uid: 1932
+ components:
+ - type: Transform
+ pos: 2.2657864,38.61937
+ parent: 1653
+ - uid: 1975
+ components:
+ - type: Transform
+ pos: 36.52725,40.35149
+ parent: 1653
+ - uid: 1976
+ components:
+ - type: Transform
+ pos: 36.71475,40.69524
+ parent: 1653
+ - uid: 1977
+ components:
+ - type: Transform
+ pos: 38.4335,38.57024
+ parent: 1653
+ - uid: 1978
+ components:
+ - type: Transform
+ pos: 38.746,38.617115
+ parent: 1653
+ - uid: 2014
+ components:
+ - type: Transform
+ pos: 26.552809,38.49964
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsBasicSingle
+ entities:
+ - uid: 715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.613785,13.600289
+ parent: 1653
+ - uid: 1879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.28566,13.475289
+ parent: 1653
+ - uid: 1880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.457535,13.084664
+ parent: 1653
+ - uid: 1881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.051285,12.709664
+ parent: 1653
+ - uid: 1882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.488785,12.553414
+ parent: 1653
+ - uid: 1883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.78566,12.694039
+ parent: 1653
+ - uid: 1884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.707535,12.319039
+ parent: 1653
+ - uid: 1885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.270035,12.631539
+ parent: 1653
+ - uid: 1907
+ components:
+ - type: Transform
+ pos: 48.29822,0.3811128
+ parent: 1653
+ - uid: 1908
+ components:
+ - type: Transform
+ pos: 48.407597,0.7248628
+ parent: 1653
+ - uid: 1909
+ components:
+ - type: Transform
+ pos: 48.751347,0.4904878
+ parent: 1653
+ - uid: 2021
+ components:
+ - type: Transform
+ pos: 28.857117,32.307716
+ parent: 1653
+ - uid: 2022
+ components:
+ - type: Transform
+ pos: 29.200867,32.44834
+ parent: 1653
+ - uid: 2023
+ components:
+ - type: Transform
+ pos: 40.544617,32.57334
+ parent: 1653
+ - uid: 2024
+ components:
+ - type: Transform
+ pos: 39.87274,32.41709
+ parent: 1653
+ - uid: 2047
+ components:
+ - type: Transform
+ pos: 22.410824,25.530336
+ parent: 1653
+ - uid: 2048
+ components:
+ - type: Transform
+ pos: 22.629574,25.264711
+ parent: 1653
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: 16.438751,27.627316
+ parent: 1653
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: 16.720001,24.39294
+ parent: 1653
+ - uid: 2094
+ components:
+ - type: Transform
+ pos: 16.423126,24.48669
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableFull
+ entities:
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 12.535033,28.655708
+ parent: 1653
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 1.496994,27.709425
+ parent: 1653
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: 25.411459,12.563899
+ parent: 1653
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: 33.72185,18.546652
+ parent: 1653
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 20.545664,34.64003
+ parent: 1653
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: 25.614584,12.517024
+ parent: 1653
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: 15.420664,34.54628
+ parent: 1653
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: 31.551804,8.577934
+ parent: 1653
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: 16.536243,24.58135
+ parent: 1653
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 20.468935,4.597707
+ parent: 1653
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 21.514414,34.67128
+ parent: 1653
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 1.496994,27.16255
+ parent: 1653
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 1.434494,26.740675
+ parent: 1653
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: 1.471144,31.615616
+ parent: 1653
+ - uid: 1811
+ components:
+ - type: Transform
+ pos: 10.447058,22.585516
+ parent: 1653
+ - uid: 1812
+ components:
+ - type: Transform
+ pos: 10.634558,22.460516
+ parent: 1653
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: 42.37607,16.45661
+ parent: 1653
+ - uid: 1857
+ components:
+ - type: Transform
+ pos: 42.766693,16.61286
+ parent: 1653
+ - uid: 1858
+ components:
+ - type: Transform
+ pos: 44.360443,13.58161
+ parent: 1653
+ - uid: 1930
+ components:
+ - type: Transform
+ pos: 0.5470364,40.43187
+ parent: 1653
+ - uid: 1974
+ components:
+ - type: Transform
+ pos: 32.480373,38.50774
+ parent: 1653
+- proto: SpawnDungeonLootMaterialsValuableSingle
+ entities:
+ - uid: 1846
+ components:
+ - type: Transform
+ pos: 40.40732,13.64411
+ parent: 1653
+ - uid: 1847
+ components:
+ - type: Transform
+ pos: 40.65732,13.503485
+ parent: 1653
+ - uid: 1848
+ components:
+ - type: Transform
+ pos: 40.37607,13.33161
+ parent: 1653
+ - uid: 1849
+ components:
+ - type: Transform
+ pos: 40.766693,13.73786
+ parent: 1653
+ - uid: 1850
+ components:
+ - type: Transform
+ pos: 40.59482,15.503485
+ parent: 1653
+ - uid: 1851
+ components:
+ - type: Transform
+ pos: 40.21982,15.565985
+ parent: 1653
+ - uid: 1852
+ components:
+ - type: Transform
+ pos: 40.62607,15.753485
+ parent: 1653
+ - uid: 1853
+ components:
+ - type: Transform
+ pos: 46.485443,15.45661
+ parent: 1653
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: 46.34482,15.690985
+ parent: 1653
+ - uid: 1855
+ components:
+ - type: Transform
+ pos: 46.766693,15.51911
+ parent: 1653
+- proto: SpawnDungeonLootMugs
+ entities:
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 20.397009,48.062172
+ parent: 1653
+ - uid: 277
+ components:
+ - type: Transform
+ pos: 20.693884,47.921547
+ parent: 1653
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 20.475134,46.499672
+ parent: 1653
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 20.303259,47.562172
+ parent: 1653
+ - uid: 1807
+ components:
+ - type: Transform
+ pos: 6.4220715,22.023016
+ parent: 1653
+ - uid: 1808
+ components:
+ - type: Transform
+ pos: 6.6564465,21.929266
+ parent: 1653
+ - uid: 1809
+ components:
+ - type: Transform
+ pos: 6.3908215,21.616766
+ parent: 1653
+- proto: SpawnDungeonLootOresFull
+ entities:
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 18.523888,15.771515
+ parent: 1653
+ - uid: 1061
+ components:
+ - type: Transform
+ pos: 22.416225,7.3324466
+ parent: 1653
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 10.521796,25.471292
+ parent: 1653
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 1.481369,26.365675
+ parent: 1653
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: 24.692709,16.2514
+ parent: 1653
+ - uid: 1816
+ components:
+ - type: Transform
+ pos: 4.400712,24.416548
+ parent: 1653
+ - uid: 1872
+ components:
+ - type: Transform
+ pos: 44.766693,13.597235
+ parent: 1653
+ - uid: 1873
+ components:
+ - type: Transform
+ pos: 44.37607,16.58161
+ parent: 1653
+- proto: SpawnDungeonLootOresSingle
+ entities:
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 22.166225,6.5980716
+ parent: 1653
+- proto: SpawnDungeonLootPartsEngi
+ entities:
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: 1.533644,31.990616
+ parent: 1653
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 1.4959452,46.502045
+ parent: 1653
+ - uid: 1204
+ components:
+ - type: Transform
+ pos: 33.05804,13.765078
+ parent: 1653
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: 36.011166,14.483828
+ parent: 1653
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 2.705519,31.59999
+ parent: 1653
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 27.493414,2.519582
+ parent: 1653
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 31.462164,2.613332
+ parent: 1653
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 2.127394,31.50624
+ parent: 1653
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: 23.399664,2.644582
+ parent: 1653
+ - uid: 1663
+ components:
+ - type: Transform
+ pos: 36.604916,14.452578
+ parent: 1653
+ - uid: 1692
+ components:
+ - type: Transform
+ pos: 19.55425,2.457082
+ parent: 1653
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: 30.66336,4.535207
+ parent: 1653
+ - uid: 1694
+ components:
+ - type: Transform
+ pos: 31.50711,4.550832
+ parent: 1653
+ - uid: 1865
+ components:
+ - type: Transform
+ pos: 42.71982,13.628485
+ parent: 1653
+ - uid: 1866
+ components:
+ - type: Transform
+ pos: 42.266693,13.597235
+ parent: 1653
+ - uid: 1867
+ components:
+ - type: Transform
+ pos: 40.797943,12.378485
+ parent: 1653
+ - uid: 1868
+ components:
+ - type: Transform
+ pos: 40.297943,12.51911
+ parent: 1653
+ - uid: 1869
+ components:
+ - type: Transform
+ pos: 42.704193,12.48786
+ parent: 1653
+ - uid: 1870
+ components:
+ - type: Transform
+ pos: 46.78232,12.48786
+ parent: 1653
+ - uid: 1876
+ components:
+ - type: Transform
+ pos: 32.323666,13.343203
+ parent: 1653
+ - uid: 1886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.395035,12.475289
+ parent: 1653
+ - uid: 1887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.97316,12.662789
+ parent: 1653
+ - uid: 1888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.395035,12.553414
+ parent: 1653
+ - uid: 1889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.207535,12.365914
+ parent: 1653
+ - uid: 1890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.613785,12.475289
+ parent: 1653
+ - uid: 1891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.59816,12.881539
+ parent: 1653
+ - uid: 1892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.520035,13.319039
+ parent: 1653
+ - uid: 1893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.69191,13.662789
+ parent: 1653
+ - uid: 1911
+ components:
+ - type: Transform
+ pos: 54.27824,4.381113
+ parent: 1653
+ - uid: 1912
+ components:
+ - type: Transform
+ pos: 54.49699,4.568613
+ parent: 1653
+ - uid: 1913
+ components:
+ - type: Transform
+ pos: 54.65324,4.334238
+ parent: 1653
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: 52.62199,4.381113
+ parent: 1653
+ - uid: 1958
+ components:
+ - type: Transform
+ pos: 19.4043,2.7166195
+ parent: 1653
+ - uid: 1959
+ components:
+ - type: Transform
+ pos: 23.49805,2.3572445
+ parent: 1653
+ - uid: 2044
+ components:
+ - type: Transform
+ pos: 22.301449,25.186586
+ parent: 1653
+ - uid: 2045
+ components:
+ - type: Transform
+ pos: 22.754574,25.608461
+ parent: 1653
+ - uid: 2046
+ components:
+ - type: Transform
+ pos: 22.270199,25.624086
+ parent: 1653
+ - uid: 2090
+ components:
+ - type: Transform
+ pos: 16.401363,27.66821
+ parent: 1653
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: 16.510738,27.402584
+ parent: 1653
+- proto: SpawnDungeonLootPowerCell
+ entities:
+ - uid: 745
+ components:
+ - type: Transform
+ pos: 29.497742,32.401466
+ parent: 1653
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 12.660753,45.699017
+ parent: 1653
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: 29.528992,32.60459
+ parent: 1653
+ - uid: 1690
+ components:
+ - type: Transform
+ pos: 36.23867,15.001832
+ parent: 1653
+ - uid: 1910
+ components:
+ - type: Transform
+ pos: 52.27824,0.4279878
+ parent: 1653
+ - uid: 2018
+ components:
+ - type: Transform
+ pos: 40.34149,32.526466
+ parent: 1653
+- proto: SpawnDungeonLootRnDDisk
+ entities:
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 20.429928,42.57755
+ parent: 1653
+ - uid: 2103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.570932,0.5247102
+ parent: 1653
+ - uid: 2105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.242805,0.5403352
+ parent: 1653
+- proto: SpawnDungeonLootSeed
+ entities:
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 4.5460906,18.508413
+ parent: 1653
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 12.410851,9.531705
+ parent: 1653
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: 12.676476,9.76608
+ parent: 1653
+ - uid: 1718
+ components:
+ - type: Transform
+ pos: 12.254601,10.094205
+ parent: 1653
+ - uid: 1719
+ components:
+ - type: Transform
+ pos: 12.692101,10.250455
+ parent: 1653
+ - uid: 1720
+ components:
+ - type: Transform
+ pos: 12.379601,10.625455
+ parent: 1653
+ - uid: 1721
+ components:
+ - type: Transform
+ pos: 12.738976,10.70358
+ parent: 1653
+ - uid: 1722
+ components:
+ - type: Transform
+ pos: 16.301476,10.687955
+ parent: 1653
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: 16.66085,10.54733
+ parent: 1653
+ - uid: 1902
+ components:
+ - type: Transform
+ pos: 36.390884,4.286358
+ parent: 1653
+ - uid: 1903
+ components:
+ - type: Transform
+ pos: 36.62526,4.473858
+ parent: 1653
+ - uid: 1904
+ components:
+ - type: Transform
+ pos: 38.62526,4.286358
+ parent: 1653
+ - uid: 1942
+ components:
+ - type: Transform
+ pos: 22.72586,6.493848
+ parent: 1653
+ - uid: 1943
+ components:
+ - type: Transform
+ pos: 19.366486,8.368848
+ parent: 1653
+ - uid: 1944
+ components:
+ - type: Transform
+ pos: 15.850861,6.775098
+ parent: 1653
+- proto: SpawnDungeonLootSpesos
+ entities:
+ - uid: 1551
+ components:
+ - type: Transform
+ pos: 40.32589,4.442608
+ parent: 1653
+ - uid: 1905
+ components:
+ - type: Transform
+ pos: 38.18776,4.520733
+ parent: 1653
+- proto: SpawnDungeonLootToolbox
+ entities:
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 22.504574,25.186586
+ parent: 1653
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 36.497677,16.296684
+ parent: 1653
+ - uid: 1280
+ components:
+ - type: Transform
+ pos: 36.542416,15.296328
+ parent: 1653
+ - uid: 2015
+ components:
+ - type: Transform
+ pos: 26.584059,38.640266
+ parent: 1653
+- proto: SpawnDungeonLootToolsAdvancedEngineering
+ entities:
+ - uid: 1380
+ components:
+ - type: Transform
+ pos: 28.450766,21.574556
+ parent: 1653
+ - uid: 1761
+ components:
+ - type: Transform
+ pos: 20.650068,40.30749
+ parent: 1653
+ - uid: 1762
+ components:
+ - type: Transform
+ pos: 20.259443,40.68249
+ parent: 1653
+ - uid: 1899
+ components:
+ - type: Transform
+ pos: 36.50441,14.897164
+ parent: 1653
+ - uid: 1900
+ components:
+ - type: Transform
+ pos: 34.50441,15.397164
+ parent: 1653
+ - uid: 2089
+ components:
+ - type: Transform
+ pos: 16.588863,27.465084
+ parent: 1653
+- proto: SpawnDungeonLootToolsBasicEngineering
+ entities:
+ - uid: 820
+ components:
+ - type: Transform
+ pos: 10.514916,45.573624
+ parent: 1653
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 20.369005,36.60878
+ parent: 1653
+ - uid: 822
+ components:
+ - type: Transform
+ pos: 20.650255,36.499405
+ parent: 1653
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 27.580544,22.502699
+ parent: 1653
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: 0.5271952,46.502045
+ parent: 1653
+ - uid: 1894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.50441,12.444039
+ parent: 1653
+ - uid: 1895
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.301285,12.647164
+ parent: 1653
+ - uid: 1896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.988785,12.631539
+ parent: 1653
+ - uid: 1897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.28566,12.975289
+ parent: 1653
+ - uid: 1898
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.37941,13.459664
+ parent: 1653
+ - uid: 2019
+ components:
+ - type: Transform
+ pos: 28.513367,32.51084
+ parent: 1653
+ - uid: 2020
+ components:
+ - type: Transform
+ pos: 40.06024,32.495216
+ parent: 1653
+ - uid: 2042
+ components:
+ - type: Transform
+ pos: 22.348324,25.624086
+ parent: 1653
+ - uid: 2043
+ components:
+ - type: Transform
+ pos: 22.567074,25.577211
+ parent: 1653
+ - uid: 2087
+ components:
+ - type: Transform
+ pos: 16.401363,27.44946
+ parent: 1653
+ - uid: 2088
+ components:
+ - type: Transform
+ pos: 16.745113,27.652584
+ parent: 1653
+- proto: SpawnDungeonLootToolsHydroponics
+ entities:
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: 21.751831,6.54733
+ parent: 1653
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: 21.361206,6.687955
+ parent: 1653
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 21.923706,6.70358
+ parent: 1653
+ - uid: 1374
+ components:
+ - type: Transform
+ pos: 21.564331,6.51608
+ parent: 1653
+- proto: SpawnDungeonLootToolsSalvage
+ entities:
+ - uid: 1901
+ components:
+ - type: Transform
+ pos: 42.26339,4.301983
+ parent: 1653
+- proto: SpawnDungeonLootToolsSurgery
+ entities:
+ - uid: 1933
+ components:
+ - type: Transform
+ pos: 2.4064114,38.36937
+ parent: 1653
+ - uid: 1934
+ components:
+ - type: Transform
+ pos: 2.5782864,38.666245
+ parent: 1653
+- proto: SpawnDungeonLootToolsSurgeryAdvanced
+ entities:
+ - uid: 761
+ components:
+ - type: Transform
+ pos: 6.4577923,47.278557
+ parent: 1653
+ - uid: 764
+ components:
+ - type: Transform
+ pos: 6.5202923,47.57543
+ parent: 1653
+ - uid: 765
+ components:
+ - type: Transform
+ pos: 6.4890423,46.98168
+ parent: 1653
+ - uid: 768
+ components:
+ - type: Transform
+ pos: 6.4734173,46.747307
+ parent: 1653
+ - uid: 1066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.733463,22.516201
+ parent: 1653
+ - uid: 1073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.34284,22.500576
+ parent: 1653
+- proto: SpawnDungeonLootVaultGuns
+ entities:
+ - uid: 2154
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5133982,26.877148
+ parent: 1653
+- proto: SpawnDungeonVendomatsArmory
+ entities:
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 17.5,38.5
+ parent: 1653
+ - uid: 1745
+ components:
+ - type: Transform
+ pos: 16.5,38.5
+ parent: 1653
+- proto: SpawnDungeonVendomatsClothes
+ entities:
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 44.5,4.5
+ parent: 1653
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 44.5,3.5
+ parent: 1653
+- proto: SpawnDungeonVendomatsMed
+ entities:
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: 6.5,48.5
+ parent: 1653
+- proto: SpawnDungeonVendomatsRecreational
+ entities:
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 6.5,40.5
+ parent: 1653
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 46.5,3.5
+ parent: 1653
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 46.5,4.5
+ parent: 1653
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 1653
+ - uid: 1626
+ components:
+ - type: Transform
+ pos: 7.5,10.5
+ parent: 1653
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 1653
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 1653
+ - uid: 1676
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 1653
+- proto: SpawnVehicleJanicart
+ entities:
+ - uid: 1730
+ components:
+ - type: Transform
+ pos: 41.5,38.5
+ parent: 1653
+- proto: StationMapBroken
+ entities:
+ - uid: 1675
+ components:
+ - type: Transform
+ pos: 9.5,39.5
+ parent: 1653
+- proto: Stool
+ entities:
+ - uid: 644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,35.5
+ parent: 1653
+ - uid: 701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,32.5
+ parent: 1653
+ - uid: 702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,30.5
+ parent: 1653
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 1653
+ - uid: 788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,30.5
+ parent: 1653
+ - uid: 789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,30.5
+ parent: 1653
+ - uid: 790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,30.5
+ parent: 1653
+ - uid: 813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,25.5
+ parent: 1653
+ - uid: 814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,26.5
+ parent: 1653
+ - uid: 815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,27.5
+ parent: 1653
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 8.5,25.5
+ parent: 1653
+ - uid: 901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,21.5
+ parent: 1653
+ - uid: 902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,21.5
+ parent: 1653
+ - uid: 950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 1653
+ - uid: 951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 1653
+ - uid: 1064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,18.5
+ parent: 1653
+ - uid: 1065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,19.5
+ parent: 1653
+ - uid: 1313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,47.5
+ parent: 1653
+ - uid: 2150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,6.5
+ parent: 1653
+ - uid: 2151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,7.5
+ parent: 1653
+- proto: StoolBar
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,45.5
+ parent: 1653
+ - uid: 111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,45.5
+ parent: 1653
+ - uid: 1102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,47.5
+ parent: 1653
+ - uid: 1311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,46.5
+ parent: 1653
+- proto: SubstationBasic
+ entities:
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 28.5,40.5
+ parent: 1653
+ - uid: 559
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 1653
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 28.5,18.5
+ parent: 1653
+- proto: SubstationWallBasic
+ entities:
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+- proto: SuitStorageMercenary
+ entities:
+ - uid: 1267
+ components:
+ - type: Transform
+ pos: 22.5,38.5
+ parent: 1653
+- proto: SurveillanceCameraMedical
+ entities:
+ - uid: 2095
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1653
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1653
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: 21.5,0.5
+ parent: 1653
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: 31.5,0.5
+ parent: 1653
+ - uid: 2099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,22.5
+ parent: 1653
+ - uid: 2100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,27.5
+ parent: 1653
+ - uid: 2101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,43.5
+ parent: 1653
+ - uid: 2102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,47.5
+ parent: 1653
+- proto: SurveillanceCameraRouterGeneral
+ entities:
+ - uid: 868
+ components:
+ - type: Transform
+ pos: 20.5,27.5
+ parent: 1653
+- proto: SurveillanceCameraRouterMedical
+ entities:
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: 20.5,28.5
+ parent: 1653
+- proto: Table
+ entities:
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 2.5,44.5
+ parent: 1653
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 37.5,16.5
+ parent: 1653
+ - uid: 214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,30.5
+ parent: 1653
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 0.5,46.5
+ parent: 1653
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 1.5,46.5
+ parent: 1653
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 1653
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 10.5,45.5
+ parent: 1653
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 12.5,45.5
+ parent: 1653
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 1653
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 12.5,24.5
+ parent: 1653
+ - uid: 645
+ components:
+ - type: Transform
+ pos: 22.5,27.5
+ parent: 1653
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 1653
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 22.5,24.5
+ parent: 1653
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 2.5,31.5
+ parent: 1653
+ - uid: 694
+ components:
+ - type: Transform
+ pos: 1.5,31.5
+ parent: 1653
+ - uid: 695
+ components:
+ - type: Transform
+ pos: 1.5,32.5
+ parent: 1653
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 2.5,43.5
+ parent: 1653
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 2.5,42.5
+ parent: 1653
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 31.5,21.5
+ parent: 1653
+ - uid: 759
+ components:
+ - type: Transform
+ pos: 31.5,22.5
+ parent: 1653
+ - uid: 777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,32.5
+ parent: 1653
+ - uid: 778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,30.5
+ parent: 1653
+ - uid: 781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,32.5
+ parent: 1653
+ - uid: 782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,30.5
+ parent: 1653
+ - uid: 812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,6.5
+ parent: 1653
+ - uid: 826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,7.5
+ parent: 1653
+ - uid: 827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,6.5
+ parent: 1653
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 22.5,25.5
+ parent: 1653
+ - uid: 858
+ components:
+ - type: Transform
+ pos: 30.5,30.5
+ parent: 1653
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 12.5,28.5
+ parent: 1653
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1653
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1653
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1653
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1653
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 36.5,12.5
+ parent: 1653
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 1653
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 33.5,18.5
+ parent: 1653
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 37.5,12.5
+ parent: 1653
+ - uid: 1193
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 1653
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 21.5,15.5
+ parent: 1653
+ - uid: 1428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 1429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,2.5
+ parent: 1653
+ - uid: 1430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,2.5
+ parent: 1653
+ - uid: 1431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,2.5
+ parent: 1653
+ - uid: 1568
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 1653
+ - uid: 1577
+ components:
+ - type: Transform
+ pos: 36.5,16.5
+ parent: 1653
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: 36.5,15.5
+ parent: 1653
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 1653
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 1653
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: 32.5,13.5
+ parent: 1653
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: 33.5,13.5
+ parent: 1653
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 14.5,1.5
+ parent: 1653
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 1653
+ - uid: 1704
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1653
+ - uid: 1736
+ components:
+ - type: Transform
+ pos: 44.5,38.5
+ parent: 1653
+ - uid: 1877
+ components:
+ - type: Transform
+ pos: 38.5,12.5
+ parent: 1653
+ - uid: 1878
+ components:
+ - type: Transform
+ pos: 38.5,13.5
+ parent: 1653
+ - uid: 2052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,34.5
+ parent: 1653
+ - uid: 2121
+ components:
+ - type: Transform
+ pos: 24.5,26.5
+ parent: 1653
+- proto: TableCarpet
+ entities:
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 21.5,43.5
+ parent: 1653
+ - uid: 1328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,43.5
+ parent: 1653
+ - uid: 1335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,44.5
+ parent: 1653
+- proto: TableCounterMetal
+ entities:
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 40.5,32.5
+ parent: 1653
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 29.5,32.5
+ parent: 1653
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 39.5,32.5
+ parent: 1653
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 28.5,32.5
+ parent: 1653
+ - uid: 870
+ components:
+ - type: Transform
+ pos: 28.5,36.5
+ parent: 1653
+ - uid: 1072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,22.5
+ parent: 1653
+ - uid: 1232
+ components:
+ - type: Transform
+ pos: 1.5,38.5
+ parent: 1653
+ - uid: 1271
+ components:
+ - type: Transform
+ pos: 0.5,40.5
+ parent: 1653
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: 25.5,36.5
+ parent: 1653
+ - uid: 1929
+ components:
+ - type: Transform
+ pos: 2.5,38.5
+ parent: 1653
+ - uid: 2119
+ components:
+ - type: Transform
+ pos: 28.5,24.5
+ parent: 1653
+ - uid: 2123
+ components:
+ - type: Transform
+ pos: 28.5,26.5
+ parent: 1653
+- proto: TableCounterWood
+ entities:
+ - uid: 235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,46.5
+ parent: 1653
+ - uid: 275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,46.5
+ parent: 1653
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 20.5,42.5
+ parent: 1653
+ - uid: 1316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,48.5
+ parent: 1653
+ - uid: 1742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,47.5
+ parent: 1653
+ - uid: 1804
+ components:
+ - type: Transform
+ pos: 6.5,22.5
+ parent: 1653
+ - uid: 1805
+ components:
+ - type: Transform
+ pos: 6.5,21.5
+ parent: 1653
+ - uid: 1810
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 1653
+- proto: TableGlass
+ entities:
+ - uid: 707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,30.5
+ parent: 1653
+ - uid: 941
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 1653
+ - uid: 942
+ components:
+ - type: Transform
+ pos: 16.5,18.5
+ parent: 1653
+ - uid: 1182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,10.5
+ parent: 1653
+ - uid: 1188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,9.5
+ parent: 1653
+ - uid: 1377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,10.5
+ parent: 1653
+ - uid: 1448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,4.5
+ parent: 1653
+ - uid: 1449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,4.5
+ parent: 1653
+ - uid: 1450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,4.5
+ parent: 1653
+ - uid: 1451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,4.5
+ parent: 1653
+ - uid: 1452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,4.5
+ parent: 1653
+ - uid: 1453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,4.5
+ parent: 1653
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 22.5,0.5
+ parent: 1653
+ - uid: 1478
+ components:
+ - type: Transform
+ pos: 30.5,0.5
+ parent: 1653
+- proto: TableReinforced
+ entities:
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 1.5,25.5
+ parent: 1653
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 1.5,26.5
+ parent: 1653
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 1.5,27.5
+ parent: 1653
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 1653
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 1653
+- proto: TableReinforcedGlass
+ entities:
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 1653
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1653
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1653
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1653
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1653
+ - uid: 748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,46.5
+ parent: 1653
+ - uid: 1321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,47.5
+ parent: 1653
+ - uid: 1815
+ components:
+ - type: Transform
+ pos: 6.5,27.5
+ parent: 1653
+- proto: TableWood
+ entities:
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 20.5,34.5
+ parent: 1653
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 21.5,34.5
+ parent: 1653
+ - uid: 772
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 1653
+ - uid: 773
+ components:
+ - type: Transform
+ pos: 24.5,31.5
+ parent: 1653
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1653
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1653
+- proto: TelecomServer
+ entities:
+ - uid: 860
+ components:
+ - type: Transform
+ pos: 20.5,24.5
+ parent: 1653
+- proto: ToiletEmpty
+ entities:
+ - uid: 799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 1653
+ - uid: 801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,27.5
+ parent: 1653
+ - uid: 802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,27.5
+ parent: 1653
+ - uid: 889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,18.5
+ parent: 1653
+- proto: ToolboxGoldFilled
+ entities:
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 1.492549,27.312542
+ parent: 1653
+- proto: ToyRubberDuck
+ entities:
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 8.491199,25.423159
+ parent: 1653
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 1653
+- proto: ToySpawner
+ entities:
+ - uid: 1936
+ components:
+ - type: Transform
+ pos: 1.5,40.5
+ parent: 1653
+ - uid: 1937
+ components:
+ - type: Transform
+ pos: 4.5,40.5
+ parent: 1653
+- proto: TurboItemRecharger
+ entities:
+ - uid: 2125
+ components:
+ - type: Transform
+ pos: 28.5,24.5
+ parent: 1653
+- proto: Vaccinator
+ entities:
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 28.5,4.5
+ parent: 1653
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 0.5,42.5
+ parent: 1653
+- proto: VehicleKeyJanicart
+ entities:
+ - uid: 1731
+ components:
+ - type: Transform
+ pos: 40.58462,38.5371
+ parent: 1653
+- proto: VendingMachineBooze
+ entities:
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 21.5,48.5
+ parent: 1653
+- proto: VendingMachineChemDrobe
+ entities:
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 6.5,16.5
+ parent: 1653
+- proto: VendingMachineChemicals
+ entities:
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 1653
+- proto: VendingMachineCigs
+ entities:
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: 22.5,48.5
+ parent: 1653
+- proto: VendingMachineHydrobe
+ entities:
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 14.5,10.5
+ parent: 1653
+- proto: VendingMachineMedical
+ entities:
+ - uid: 1814
+ components:
+ - type: Transform
+ pos: 6.5,28.5
+ parent: 1653
+- proto: VendingMachineNutri
+ entities:
+ - uid: 1375
+ components:
+ - type: Transform
+ pos: 13.5,10.5
+ parent: 1653
+- proto: VendingMachineSeeds
+ entities:
+ - uid: 1372
+ components:
+ - type: Transform
+ pos: 15.5,10.5
+ parent: 1653
+- proto: WallmountTelescreen
+ entities:
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 13.5,39.5
+ parent: 1653
+- proto: WallPlastitanium
+ entities:
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 1653
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 11.5,15.5
+ parent: 1653
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 1653
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: 13.5,13.5
+ parent: 1653
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 13.5,15.5
+ parent: 1653
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: 12.5,15.5
+ parent: 1653
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 10.5,15.5
+ parent: 1653
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: 9.5,15.5
+ parent: 1653
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: 13.5,14.5
+ parent: 1653
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 1653
+ - uid: 1134
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 1653
+- proto: WallSolid
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 43.5,1.5
+ parent: 1653
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 47.5,1.5
+ parent: 1653
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 16.5,48.5
+ parent: 1653
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 18.5,48.5
+ parent: 1653
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 35.5,32.5
+ parent: 1653
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 33.5,32.5
+ parent: 1653
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 44.5,40.5
+ parent: 1653
+ - uid: 521
+ components:
+ - type: Transform
+ pos: 40.5,3.5
+ parent: 1653
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 38.5,1.5
+ parent: 1653
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 51.5,4.5
+ parent: 1653
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 39.5,1.5
+ parent: 1653
+ - uid: 530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,39.5
+ parent: 1653
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 8.5,43.5
+ parent: 1653
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 9.5,43.5
+ parent: 1653
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 13.5,43.5
+ parent: 1653
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 14.5,43.5
+ parent: 1653
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 43.5,0.5
+ parent: 1653
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 47.5,3.5
+ parent: 1653
+ - uid: 682
+ components:
+ - type: Transform
+ pos: 31.5,32.5
+ parent: 1653
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 1653
+ - uid: 687
+ components:
+ - type: Transform
+ pos: 9.5,30.5
+ parent: 1653
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 38.5,3.5
+ parent: 1653
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 50.5,1.5
+ parent: 1653
+ - uid: 828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,7.5
+ parent: 1653
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1653
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 1.5,22.5
+ parent: 1653
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 1653
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 1653
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 1653
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 39.5,3.5
+ parent: 1653
+ - uid: 1165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,6.5
+ parent: 1653
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 51.5,1.5
+ parent: 1653
+ - uid: 1212
+ components:
+ - type: Transform
+ pos: 36.5,3.5
+ parent: 1653
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: 48.5,1.5
+ parent: 1653
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: 43.5,3.5
+ parent: 1653
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 36.5,1.5
+ parent: 1653
+ - uid: 1238
+ components:
+ - type: Transform
+ pos: 51.5,0.5
+ parent: 1653
+ - uid: 1239
+ components:
+ - type: Transform
+ pos: 39.5,4.5
+ parent: 1653
+ - uid: 1241
+ components:
+ - type: Transform
+ pos: 47.5,0.5
+ parent: 1653
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: 43.5,4.5
+ parent: 1653
+ - uid: 1269
+ components:
+ - type: Transform
+ pos: 52.5,1.5
+ parent: 1653
+ - uid: 1273
+ components:
+ - type: Transform
+ pos: 54.5,1.5
+ parent: 1653
+ - uid: 1275
+ components:
+ - type: Transform
+ pos: 47.5,4.5
+ parent: 1653
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: 42.5,3.5
+ parent: 1653
+ - uid: 1333
+ components:
+ - type: Transform
+ pos: 17.5,48.5
+ parent: 1653
+ - uid: 1457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,39.5
+ parent: 1653
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 1653
+ - uid: 1460
+ components:
+ - type: Transform
+ pos: 33.5,4.5
+ parent: 1653
+ - uid: 1475
+ components:
+ - type: Transform
+ pos: 48.5,3.5
+ parent: 1653
+ - uid: 1501
+ components:
+ - type: Transform
+ pos: 28.5,9.5
+ parent: 1653
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 1653
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 1653
+ - uid: 1546
+ components:
+ - type: Transform
+ pos: 50.5,3.5
+ parent: 1653
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 34.5,16.5
+ parent: 1653
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: 42.5,1.5
+ parent: 1653
+ - uid: 1602
+ components:
+ - type: Transform
+ pos: 39.5,0.5
+ parent: 1653
+ - uid: 1603
+ components:
+ - type: Transform
+ pos: 40.5,1.5
+ parent: 1653
+ - uid: 1610
+ components:
+ - type: Transform
+ pos: 36.5,32.5
+ parent: 1653
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 37.5,32.5
+ parent: 1653
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: 51.5,3.5
+ parent: 1653
+ - uid: 1644
+ components:
+ - type: Transform
+ pos: 52.5,3.5
+ parent: 1653
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: 54.5,3.5
+ parent: 1653
+ - uid: 1682
+ components:
+ - type: Transform
+ pos: 16.5,4.5
+ parent: 1653
+ - uid: 1688
+ components:
+ - type: Transform
+ pos: 32.5,32.5
+ parent: 1653
+ - uid: 1989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,40.5
+ parent: 1653
+ - uid: 1990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,38.5
+ parent: 1653
+ - uid: 1991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,40.5
+ parent: 1653
+- proto: WallSolidDiagonal
+ entities:
+ - uid: 497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,13.5
+ parent: 1653
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 30.5,15.5
+ parent: 1653
+ - uid: 501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,12.5
+ parent: 1653
+ - uid: 504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,16.5
+ parent: 1653
+ - uid: 505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,13.5
+ parent: 1653
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 26.5,12.5
+ parent: 1653
+ - uid: 737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,16.5
+ parent: 1653
+ - uid: 1199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,15.5
+ parent: 1653
+- proto: WardrobeVirologyFilled
+ entities:
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1653
+- proto: WaterTankFull
+ entities:
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: 20.5,10.5
+ parent: 1653
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 21.5,10.5
+ parent: 1653
+ - uid: 1163
+ components:
+ - type: Transform
+ pos: 22.5,10.5
+ parent: 1653
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 2124
+ components:
+ - type: Transform
+ pos: 28.5,26.5
+ parent: 1653
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 14.5,44.5
+ parent: 1653
+ - uid: 1387
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 1653
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: 31.5,7.5
+ parent: 1653
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 1653
+- proto: Windoor
+ entities:
+ - uid: 636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,34.5
+ parent: 1653
+ - uid: 637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,36.5
+ parent: 1653
+ - uid: 639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,34.5
+ parent: 1653
+ - uid: 640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,36.5
+ parent: 1653
+ - uid: 690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,32.5
+ parent: 1653
+ - uid: 691
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,30.5
+ parent: 1653
+ - uid: 877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,25.5
+ parent: 1653
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 1653
+- proto: WindoorSecure
+ entities:
+ - uid: 216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,31.5
+ parent: 1653
+ - uid: 468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,28.5
+ parent: 1653
+ - uid: 470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,27.5
+ parent: 1653
+ - uid: 523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,25.5
+ parent: 1653
+ - uid: 672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,24.5
+ parent: 1653
+ - uid: 785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,45.5
+ parent: 1653
+ - uid: 809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,42.5
+ parent: 1653
+ - uid: 824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,7.5
+ parent: 1653
+ - uid: 842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,31.5
+ parent: 1653
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 1653
+ - uid: 1229
+ components:
+ - type: Transform
+ pos: 34.5,21.5
+ parent: 1653
+ - uid: 1297
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,46.5
+ parent: 1653
+ - uid: 1322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,44.5
+ parent: 1653
+ - uid: 1420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,1.5
+ parent: 1653
+ - uid: 1421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,2.5
+ parent: 1653
+ - uid: 1422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,2.5
+ parent: 1653
+ - uid: 1423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,1.5
+ parent: 1653
+ - uid: 1424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,1.5
+ parent: 1653
+ - uid: 1425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,2.5
+ parent: 1653
+ - uid: 1426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,1.5
+ parent: 1653
+ - uid: 1427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,2.5
+ parent: 1653
+ - uid: 1465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,3.5
+ parent: 1653
+ - uid: 1466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,3.5
+ parent: 1653
+ - uid: 1634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,1.5
+ parent: 1653
+ - uid: 1678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,1.5
+ parent: 1653
+- proto: WindowDirectional
+ entities:
+ - uid: 307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,39.5
+ parent: 1653
+ - uid: 308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,39.5
+ parent: 1653
+ - uid: 459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,39.5
+ parent: 1653
+ - uid: 625
+ components:
+ - type: Transform
+ pos: 5.5,15.5
+ parent: 1653
+ - uid: 632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,35.5
+ parent: 1653
+ - uid: 633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,35.5
+ parent: 1653
+ - uid: 869
+ components:
+ - type: Transform
+ pos: 20.5,26.5
+ parent: 1653
+ - uid: 1067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,26.5
+ parent: 1653
+ - uid: 1162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,10.5
+ parent: 1653
+ - uid: 1164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,10.5
+ parent: 1653
+ - uid: 1208
+ components:
+ - type: Transform
+ pos: 12.5,39.5
+ parent: 1653
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: 44.5,3.5
+ parent: 1653
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: 46.5,3.5
+ parent: 1653
+ - uid: 1274
+ components:
+ - type: Transform
+ pos: 11.5,39.5
+ parent: 1653
+ - uid: 1294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,46.5
+ parent: 1653
+ - uid: 1295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,48.5
+ parent: 1653
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 1653
+ - uid: 1301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,15.5
+ parent: 1653
+ - uid: 1302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,16.5
+ parent: 1653
+ - uid: 1677
+ components:
+ - type: Transform
+ pos: 10.5,39.5
+ parent: 1653
+- proto: WindowFrostedDirectional
+ entities:
+ - uid: 473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,48.5
+ parent: 1653
+ - uid: 475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,46.5
+ parent: 1653
+ - uid: 476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,46.5
+ parent: 1653
+ - uid: 688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,31.5
+ parent: 1653
+ - uid: 689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,31.5
+ parent: 1653
+ - uid: 744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 1653
+ - uid: 758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,48.5
+ parent: 1653
+ - uid: 791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,25.5
+ parent: 1653
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 10.5,28.5
+ parent: 1653
+ - uid: 793
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 1653
+ - uid: 794
+ components:
+ - type: Transform
+ pos: 8.5,28.5
+ parent: 1653
+ - uid: 795
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 1653
+ - uid: 797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,25.5
+ parent: 1653
+ - uid: 798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,24.5
+ parent: 1653
+ - uid: 946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 1653
+ - uid: 947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1653
+ - uid: 970
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1653
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1653
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1653
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1653
+ - uid: 1089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,46.5
+ parent: 1653
+ - uid: 1172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,46.5
+ parent: 1653
+ - uid: 2152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 1653
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,30.5
+ parent: 1653
+ - uid: 456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,42.5
+ parent: 1653
+ - uid: 457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,43.5
+ parent: 1653
+ - uid: 458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,44.5
+ parent: 1653
+ - uid: 604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,3.5
+ parent: 1653
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 1653
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 15.5,3.5
+ parent: 1653
+ - uid: 762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,44.5
+ parent: 1653
+ - uid: 816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,7.5
+ parent: 1653
+ - uid: 817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,7.5
+ parent: 1653
+ - uid: 825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,7.5
+ parent: 1653
+ - uid: 840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,30.5
+ parent: 1653
+ - uid: 846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,34.5
+ parent: 1653
+ - uid: 849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,34.5
+ parent: 1653
+ - uid: 850
+ components:
+ - type: Transform
+ pos: 34.5,36.5
+ parent: 1653
+ - uid: 851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,36.5
+ parent: 1653
+ - uid: 852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,36.5
+ parent: 1653
+ - uid: 853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,34.5
+ parent: 1653
+ - uid: 854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,34.5
+ parent: 1653
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 24.5,36.5
+ parent: 1653
+ - uid: 915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,6.5
+ parent: 1653
+ - uid: 995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,18.5
+ parent: 1653
+ - uid: 996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,18.5
+ parent: 1653
+ - uid: 997
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,18.5
+ parent: 1653
+ - uid: 998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,18.5
+ parent: 1653
+ - uid: 999
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,22.5
+ parent: 1653
+ - uid: 1000
+ components:
+ - type: Transform
+ pos: 22.5,22.5
+ parent: 1653
+ - uid: 1001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,22.5
+ parent: 1653
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 1653
+ - uid: 1051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,21.5
+ parent: 1653
+ - uid: 1053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,22.5
+ parent: 1653
+ - uid: 1054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,21.5
+ parent: 1653
+ - uid: 1055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,22.5
+ parent: 1653
+ - uid: 1056
+ components:
+ - type: Transform
+ pos: 33.5,21.5
+ parent: 1653
+ - uid: 1307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,43.5
+ parent: 1653
+ - uid: 1323
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,44.5
+ parent: 1653
+ - uid: 1324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,44.5
+ parent: 1653
+ - uid: 1325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,42.5
+ parent: 1653
+ - uid: 1388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,0.5
+ parent: 1653
+ - uid: 1389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,1.5
+ parent: 1653
+ - uid: 1390
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,0.5
+ parent: 1653
+ - uid: 1391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 1392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,0.5
+ parent: 1653
+ - uid: 1393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,1.5
+ parent: 1653
+ - uid: 1394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,0.5
+ parent: 1653
+ - uid: 1395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,1.5
+ parent: 1653
+ - uid: 1396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,0.5
+ parent: 1653
+ - uid: 1397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,1.5
+ parent: 1653
+ - uid: 1398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,0.5
+ parent: 1653
+ - uid: 1399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,1.5
+ parent: 1653
+ - uid: 1400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,0.5
+ parent: 1653
+ - uid: 1401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,1.5
+ parent: 1653
+ - uid: 1402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,0.5
+ parent: 1653
+ - uid: 1403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,1.5
+ parent: 1653
+ - uid: 1404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,1.5
+ parent: 1653
+ - uid: 1405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,1.5
+ parent: 1653
+ - uid: 1406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,1.5
+ parent: 1653
+ - uid: 1407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,1.5
+ parent: 1653
+ - uid: 1408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,1.5
+ parent: 1653
+ - uid: 1409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,1.5
+ parent: 1653
+ - uid: 1410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,1.5
+ parent: 1653
+ - uid: 1411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,1.5
+ parent: 1653
+ - uid: 1412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,2.5
+ parent: 1653
+ - uid: 1413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 1414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,2.5
+ parent: 1653
+ - uid: 1415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,2.5
+ parent: 1653
+ - uid: 1416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,2.5
+ parent: 1653
+ - uid: 1417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,2.5
+ parent: 1653
+ - uid: 1418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 1419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,2.5
+ parent: 1653
+ - uid: 1463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,2.5
+ parent: 1653
+ - uid: 1464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,2.5
+ parent: 1653
+ - uid: 1632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,1.5
+ parent: 1653
+ - uid: 1633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,0.5
+ parent: 1653
+ - uid: 1713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,7.5
+ parent: 1653
+ - uid: 1714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,7.5
+ parent: 1653
+...
diff --git a/Resources/Maps/_NF/POI/cove.yml b/Resources/Maps/_NF/POI/cove.yml
index 8e8ad29d03a..b4adf4a0ad9 100644
--- a/Resources/Maps/_NF/POI/cove.yml
+++ b/Resources/Maps/_NF/POI/cove.yml
@@ -3,302 +3,748 @@ meta:
postmapinit: false
tilemap:
0: Space
- 7: FloorAsteroidSand
- 8: FloorAsteroidSandDug
- 30: FloorDark
- 34: FloorDarkMini
- 35: FloorDarkMono
- 37: FloorDarkPavement
- 38: FloorDarkPavementVertical
- 41: FloorDirt
- 74: FloorPlanetDirt
- 75: FloorPlanetGrass
- 90: FloorSteel
- 92: FloorSteelCheckerDark
- 105: FloorTechMaint
- 106: FloorTechMaint2
- 113: FloorWhiteMini
- 119: FloorWood
- 122: Plating
+ 3: FloorAsteroidSand
+ 6: FloorAsteroidSandUnvariantized
+ 8: FloorAstroGrass
+ 14: FloorBar
+ 4: FloorBrokenWood
+ 5: FloorCaveDrought
+ 7: FloorDirt
+ 77: FloorRGlass
+ 1: FloorSteelCheckerDark
+ 107: FloorTechMaint
+ 115: FloorWhiteMini
+ 116: FloorWhiteMono
+ 2: FloorWood
+ 124: Lattice
+ 125: Plating
entities:
- proto: ""
entities:
- uid: 1
components:
- type: MetaData
+ name: grid
- type: Transform
- pos: 0.14431763,-0.13037014
+ pos: -0.5,-0.6875
parent: invalid
- type: MapGrid
chunks:
0,0:
ind: 0,0
- tiles: dwAAAAADdwAAAAACdwAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAACegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAABdwAAAAACdwAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAADdwAAAAADdwAAAAADegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAACegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADdwAAAAAAdwAAAAACdwAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAAWgAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAMKQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAACKQAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJKQAAAAAAKQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAFKQAAAAAAKQAAAAABKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAFBwAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAABKQAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 0,-1:
- ind: 0,-1
- tiles: BwAAAAAJBwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAegAAAAAABwAAAAAFegAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJSwAAAAABSwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAASwAAAAACSwAAAAACegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAASwAAAAACSwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAISwAAAAABSwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAHBwAAAAADBwAAAAAABwAAAAAAKQAAAAABKQAAAAACegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFKQAAAAAAKQAAAAADegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAASwAAAAADSwAAAAADegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASwAAAAACSwAAAAADegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAMIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAegAAAAAABwAAAAAABwAAAAAHIwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADegAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALdwAAAAACdwAAAAACdwAAAAADegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAABegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAADfQAAAAAAAQAAAAACAQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAgAAAAACAgAAAAAABAAAAAAFAgAAAAABawAAAAAAAQAAAAAAAQAAAAACawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAACAgAAAAABfQAAAAAAfQAAAAAAAQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAAAAgAAAAADAgAAAAABAgAAAAAAfQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAACfQAAAAAAAQAAAAABAQAAAAABfQAAAAAAAQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAABBAAAAAADAgAAAAABfQAAAAAAAQAAAAACAQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAfQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAQAAAAACfQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcwAAAAADcwAAAAACcwAAAAADfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAEAwAAAAAAfQAAAAAAfQAAAAAAcwAAAAACcwAAAAABcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAwAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAEAwAAAAABawAAAAAAawAAAAAAcwAAAAACcwAAAAAAcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAABQAAAAAGBQAAAAAABQAAAAAHBQAAAAAEBQAAAAAEBQAAAAAEBQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABQAAAAAHBQAAAAAABQAAAAAABQAAAAAHBQAAAAAFBQAAAAAGBQAAAAADBQAAAAACBQAAAAADfQAAAAAABQAAAAAHBQAAAAAGBQAAAAAABQAAAAAEBQAAAAAGBQAAAAACBQAAAAABBQAAAAAFBQAAAAACBQAAAAABBQAAAAAFBQAAAAABBQAAAAACBQAAAAAABQAAAAAE
version: 6
-1,0:
ind: -1,0
- tiles: SgAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAABBwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADSgAAAAAASgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAegAAAAAAcQAAAAACcQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAAAdwAAAAAASgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAcQAAAAABcQAAAAADaQAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAcQAAAAABcQAAAAAAegAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAABdwAAAAADBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAKQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAGKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAMBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAF
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAdAAAAAACdAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAgAAAAAAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAgAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAgAAAAACAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAAgAAAAACBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAgAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAgAAAAADAgAAAAACAAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAFfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAwAAAAAFAwAAAAAMAwAAAAAAAwAAAAAAAwAAAAAGAwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAABQAAAAAABQAAAAACBQAAAAAFBQAAAAAFBQAAAAACBQAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAABQAAAAAHBQAAAAAFBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAABQAAAAAEBQAAAAAHBQAAAAAFBQAAAAACBQAAAAADBQAAAAAHBQAAAAAEfQAAAAAAawAAAAAAawAAAAAAawAAAAAABQAAAAACawAAAAAAawAAAAAABQAAAAAHBQAAAAAD
version: 6
-1,-1:
ind: -1,-1
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIBwAAAAAAegAAAAAAdwAAAAADdwAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAACegAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAMBwAAAAAAegAAAAAAdwAAAAADdwAAAAAAHgAAAAACIgAAAAABIgAAAAABIgAAAAAAHgAAAAACegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAegAAAAAAdwAAAAACdwAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACegAAAAAAKQAAAAAAKQAAAAADKQAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABdwAAAAACdwAAAAADdwAAAAABdwAAAAACdwAAAAABdwAAAAADdwAAAAACegAAAAAASgAAAAAASgAAAAAASgAAAAAAXAAAAAACIgAAAAACIgAAAAAAIgAAAAACXAAAAAABdwAAAAADdwAAAAACdwAAAAABdwAAAAADdwAAAAAAdwAAAAACdwAAAAABaQAAAAAASgAAAAAASgAAAAAASgAAAAAAXAAAAAABIgAAAAADIgAAAAAAIgAAAAABXAAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAACdwAAAAAAdwAAAAACaQAAAAAASgAAAAAASgAAAAAASgAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAACXAAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAAAdwAAAAABdwAAAAABdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAADJQAAAAAAJQAAAAACJQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAAIwAAAAABIwAAAAACIwAAAAACegAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAABdwAAAAAC
- version: 6
- -1,-2:
- ind: -1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAQAAAAABAQAAAAACAQAAAAABTQAAAAACTQAAAAACTQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAQAAAAADAQAAAAABAQAAAAADTQAAAAABTQAAAAACTQAAAAACAQAAAAABTQAAAAABTQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAADTQAAAAADTQAAAAADTQAAAAAD
version: 6
- -2,-1:
- ind: -2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAADBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAAABwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABJQAAAAACIwAAAAACJQAAAAAAJQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAADJQAAAAACIwAAAAADJQAAAAACJQAAAAADegAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAMegAAAAAAJQAAAAACIwAAAAACJQAAAAAAJQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAMBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAABwAAAAAKBwAAAAALBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAA
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAACTQAAAAADTQAAAAAATQAAAAADAQAAAAADAQAAAAAAAQAAAAACawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAADTQAAAAACTQAAAAABTQAAAAADAQAAAAABTQAAAAABTQAAAAACTQAAAAACAQAAAAAAAQAAAAACAQAAAAADawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAATQAAAAADTQAAAAADTQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
version: 6
- -2,-2:
- ind: -2,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAF
+ -1,1:
+ ind: -1,1
+ tiles: BQAAAAABBQAAAAABBQAAAAAHBQAAAAAHBQAAAAAHBQAAAAAGBQAAAAABBQAAAAAEBQAAAAAAfQAAAAAABQAAAAAEBQAAAAAFBQAAAAAFBQAAAAAEBQAAAAAABQAAAAAHBQAAAAACBQAAAAABBQAAAAADBQAAAAAGBQAAAAAHBQAAAAADBQAAAAABBQAAAAAEBQAAAAAEBQAAAAACBQAAAAADBQAAAAAEBQAAAAAHBQAAAAAHBQAAAAADBQAAAAAABQAAAAADBQAAAAAFBQAAAAAGBQAAAAABBQAAAAAHBQAAAAACBQAAAAABBQAAAAAEBQAAAAAEBQAAAAADBQAAAAAEBQAAAAADBQAAAAAFBQAAAAAGBQAAAAABBQAAAAACBQAAAAAHBQAAAAAEBQAAAAADBQAAAAAHBQAAAAABBQAAAAAEBQAAAAACBQAAAAAHBQAAAAAFBQAAAAAABQAAAAABBQAAAAAFBQAAAAAEBQAAAAAHBQAAAAACBQAAAAAFBQAAAAAEBQAAAAABBQAAAAAGBQAAAAABBQAAAAAHBQAAAAADBQAAAAACBQAAAAAHBQAAAAAGBQAAAAACBQAAAAADBQAAAAAGBQAAAAACBQAAAAAGBQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAAGBQAAAAAHBQAAAAAGBQAAAAADBQAAAAAEBQAAAAADBQAAAAAGBQAAAAAGBQAAAAAGBQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAACBQAAAAACBQAAAAAEBQAAAAACBQAAAAAFBQAAAAAHBQAAAAACBQAAAAAFBQAAAAAABQAAAAADBQAAAAABAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAFBQAAAAABBQAAAAAGBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAAEBQAAAAAFBQAAAAAABQAAAAAHBQAAAAAEAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAABBQAAAAAEBQAAAAAABQAAAAAGBQAAAAAFBQAAAAABBQAAAAADBQAAAAADBQAAAAAHBQAAAAAHBQAAAAACAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAADBQAAAAACBQAAAAAEBQAAAAABBQAAAAAEBQAAAAAGBQAAAAACBQAAAAACBQAAAAACBQAAAAAFBQAAAAAEAwAAAAAJBgAAAAAABgAAAAAABgAAAAAAAwAAAAACBQAAAAAEBQAAAAAEBQAAAAABBQAAAAAABQAAAAAGBQAAAAAGBQAAAAAHBQAAAAAHBQAAAAAGBQAAAAAFBQAAAAABBQAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAGBQAAAAADBQAAAAADBQAAAAAEBQAAAAAEBQAAAAADBQAAAAABBQAAAAAABQAAAAAEBQAAAAAEBQAAAAAEBQAAAAABBQAAAAABBQAAAAAHBQAAAAAGBQAAAAAFBQAAAAAGBQAAAAAABQAAAAAABQAAAAAABQAAAAAGBQAAAAADBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAAFBQAAAAAEBQAAAAAFBQAAAAAGBQAAAAAHBQAAAAABBQAAAAAABQAAAAAFBQAAAAABBQAAAAAABQAAAAAGBQAAAAADBQAAAAAHBQAAAAAGBQAAAAABBQAAAAAEBQAAAAAEBQAAAAAGBQAAAAADBQAAAAAEBQAAAAAFBQAAAAAGBQAAAAADBQAAAAAFBQAAAAAABQAAAAACBQAAAAAHBQAAAAAABQAAAAADBQAAAAAEBQAAAAAABQAAAAAGBQAAAAAABQAAAAAFBQAAAAAGBQAAAAAABQAAAAACBQAAAAAFBQAAAAAHBQAAAAABBQAAAAAHBQAAAAAFBQAAAAAEBQAAAAABBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAAEBQAAAAAFBQAAAAAFBQAAAAACBQAAAAAB
version: 6
0,1:
ind: 0,1
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BQAAAAADBQAAAAAFBQAAAAAABQAAAAAGBQAAAAADBQAAAAAHBQAAAAAGBQAAAAACBQAAAAADBQAAAAADBQAAAAAFBQAAAAAABQAAAAAEBQAAAAAGBQAAAAADBQAAAAACBQAAAAAGBQAAAAAABQAAAAAFBQAAAAADBQAAAAACBQAAAAAEBQAAAAABBQAAAAAFBQAAAAAFBQAAAAAABQAAAAAGBQAAAAADBQAAAAABBQAAAAACBQAAAAAGBQAAAAAEBQAAAAAABQAAAAAABQAAAAAABQAAAAAFBQAAAAAEBQAAAAADBQAAAAAFBQAAAAAHBQAAAAAHBQAAAAAABQAAAAAEBQAAAAAFBQAAAAAGBQAAAAAFBQAAAAAGBQAAAAAGBQAAAAAHBQAAAAAGBQAAAAAFBQAAAAAHBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAAEBQAAAAAEBQAAAAACBQAAAAABBQAAAAAFBQAAAAAHAwAAAAAAAwAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAADBQAAAAAEBQAAAAAHBQAAAAAFBQAAAAAEBQAAAAAHBQAAAAADBQAAAAAEBQAAAAACBQAAAAAGAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAHBQAAAAAGBQAAAAABBQAAAAABBQAAAAABBQAAAAADBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAEBQAAAAADBQAAAAAHAwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAEBQAAAAABBQAAAAAFBQAAAAAHBQAAAAAEBQAAAAAEBQAAAAAABQAAAAAEBQAAAAADBQAAAAAFBQAAAAAAAwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAwAAAAAMBQAAAAAGBQAAAAADBQAAAAABBQAAAAAHBQAAAAAFBQAAAAABBQAAAAAEBQAAAAAFBQAAAAADBQAAAAAABQAAAAADAwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAGBQAAAAAABQAAAAADBQAAAAADBQAAAAAGBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAGBQAAAAACBQAAAAADBQAAAAADfAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAAEBQAAAAADBQAAAAAEBQAAAAAEBQAAAAABBQAAAAAGBQAAAAADBQAAAAADAwAAAAAAAAAAAAAAAwAAAAAABQAAAAAABQAAAAAHBQAAAAAGBQAAAAABBQAAAAABBQAAAAAGBQAAAAAHBQAAAAAABQAAAAAHBQAAAAABBQAAAAAEBQAAAAACBQAAAAAABQAAAAAFBQAAAAAEBQAAAAABBQAAAAABBQAAAAADBQAAAAAGBQAAAAACBQAAAAAGBQAAAAADBQAAAAABBQAAAAAABQAAAAAFBQAAAAADBQAAAAABBQAAAAAFBQAAAAAHBQAAAAABBQAAAAAHBQAAAAADBQAAAAAHBQAAAAAABQAAAAAEBQAAAAAFBQAAAAAFBQAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAABBQAAAAAABQAAAAAFBQAAAAAEBQAAAAAABQAAAAAEBQAAAAAFBQAAAAAABQAAAAAGBQAAAAAGBQAAAAAFBQAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAAABQAAAAAABQAAAAACBQAAAAAFBQAAAAAFBQAAAAAGBQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAACBgAAAAAABQAAAAAFBQAAAAABBQAAAAAABQAAAAAFBQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAADBQAAAAAF
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: BQAAAAAGBQAAAAAFAwAAAAAJAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBQAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAMAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAALAwAAAAAAAwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAKAwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEBQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAGAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAGBQAAAAAHAwAAAAAAAwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEBQAAAAACBQAAAAACAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEBQAAAAACBQAAAAAABQAAAAAEAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: BwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAIBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,-1:
- ind: 1,-1
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABAwAAAAAEAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAGBQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- 1,-2:
- ind: 1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAGBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ -2,0:
+ ind: -2,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAMAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAGAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAIAwAAAAAABQAAAAAG
version: 6
- 0,-2:
- ind: 0,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAADJgAAAAACJgAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAACJgAAAAAAJgAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAIwAAAAABIwAAAAAAIwAAAAAAegAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAADJgAAAAABJgAAAAABegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAAAJgAAAAACJgAAAAADegAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAACegAAAAAABwAAAAAAegAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ -2,1:
+ ind: -2,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAGBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAFBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAJBQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAAABQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAFAwAAAAAABQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAKAwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAAC
version: 6
- -1,1:
- ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ -1,2:
+ ind: -1,2
+ tiles: BQAAAAAEBQAAAAAEBQAAAAAABQAAAAABBQAAAAAABQAAAAADBgAAAAAABgAAAAAABgAAAAAABQAAAAAFBQAAAAAABQAAAAAGBQAAAAAGBQAAAAADBQAAAAAABQAAAAAEAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACBAAAAAABAgAAAAABAgAAAAADAgAAAAABBgAAAAAAAwAAAAAGAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAAABAAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAAABAAAAAABAgAAAAADAgAAAAABAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAALBgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAABAgAAAAADAgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- -2,0:
- ind: -2,0
- tiles: BwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAMBwAAAAAABwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAHBwAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAHBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ 0,2:
+ ind: 0,2
+ tiles: BgAAAAAABQAAAAAEBQAAAAAEBQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAAEBQAAAAAGBQAAAAAGBQAAAAAGBQAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAHBQAAAAAGBQAAAAABBQAAAAAHBQAAAAAABQAAAAAABQAAAAAGBQAAAAAEBQAAAAABBQAAAAAFBQAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAFAwAAAAADBgAAAAAABgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABwAAAAACBwAAAAADBwAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- -3,-1:
- ind: -3,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAaQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAaQAAAAAAJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ 1,2:
+ ind: 1,2
+ tiles: BQAAAAABBQAAAAACAwAAAAACAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- -3,0:
- ind: -3,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ -2,2:
+ ind: -2,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
bodyStatus: InAir
- angularDamping: 999999
- linearDamping: 999999
+ angularDamping: 0.05
+ linearDamping: 0.05
fixedRotation: False
bodyType: Dynamic
- type: Fixtures
fixtures: {}
+ - type: IFF
+ color: '#FFC000FF'
+ flags: HideLabel
- type: OccluderTree
- type: SpreaderGrid
- type: Shuttle
angularDamping: 999999
linearDamping: 999999
- type: GridPathfinding
- - type: Gravity
- gravityShakeSound: !type:SoundPathSpecifier
- path: /Audio/Effects/alert.ogg
- type: DecalGrid
chunkCollection:
version: 2
nodes:
- node:
- color: '#DE3A3A96'
- id: BotGreyscale
+ color: '#FFFFFFFF'
+ id: Box
+ decals:
+ 73: -9,14
+ 74: -9,13
+ 75: -9,12
+ 76: -8,12
+ 77: -8,13
+ 78: -8,14
+ 79: -7,14
+ 80: -7,13
+ 81: -7,12
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 270: 4,8
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 271: -2,8
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 269: 4,3
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 268: -2,3
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelInnerNe
decals:
- 72: -9,-1
- 73: -8,-1
- 74: -7,-1
+ 250: -8,-4
+ 251: -4,-3
+ 252: 0,-3
+ 253: 4,-4
- node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelInnerNw
+ decals:
+ 264: -4,-4
+ 265: 0,-3
+ 266: 4,-3
+ 267: 8,-4
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelInnerSe
+ decals:
+ 256: -8,-1
+ 257: -4,0
+ 258: 0,0
+ 259: 4,-1
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelInnerSw
+ decals:
+ 260: -4,-1
+ 261: 0,0
+ 262: 4,0
+ 263: 8,-1
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 219: 4,-2
+ 221: 4,-3
+ 222: -4,-1
+ 223: -4,-2
+ 224: -8,-3
+ 225: -8,-2
+ 254: 0,-2
+ 255: 0,-1
+ 279: 4,7
+ 280: 4,6
+ 281: 4,5
+ 282: 4,4
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 212: -1,-3
+ 213: -2,-3
+ 214: -3,-3
+ 215: 1,-3
+ 216: 2,-3
+ 217: 3,-3
+ 244: 5,-4
+ 245: 6,-4
+ 246: 7,-4
+ 247: -5,-4
+ 248: -6,-4
+ 249: -7,-4
+ 272: 0,8
+ 273: 1,8
+ 274: 2,8
+ 275: 3,8
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelLineS
+ decals:
+ 232: -7,-1
+ 233: -6,-1
+ 234: -5,-1
+ 235: -3,0
+ 236: -2,0
+ 237: -1,0
+ 238: 1,0
+ 239: 2,0
+ 240: 3,0
+ 241: 5,-1
+ 242: 6,-1
+ 243: 7,-1
+ 283: 3,3
+ 284: 2,3
+ 285: 1,3
+ 286: 0,3
+ 287: -1,3
+ - node:
+ color: '#D4C8BFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 218: 4,-1
+ 220: 4,-2
+ 226: 8,-2
+ 227: 8,-3
+ 228: 0,-1
+ 229: 0,-2
+ 230: -4,-2
+ 231: -4,-3
+ 276: -2,7
+ 277: -2,6
+ 278: -2,5
+ - node:
+ color: '#726F6AFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 298: -1,8
+ - node:
+ color: '#726F6AFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 295: -2,4
+ 297: -1,8
+ - node:
+ color: '#726F6AFF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 296: -2,4
+ - node:
+ color: '#951710FF'
+ id: Caution
+ decals:
+ 322: -13,27
+ - node:
+ color: '#A4610696'
+ id: CheckerNWSE
+ decals:
+ 63: 6,8
+ 64: 7,8
+ 65: 6,7
+ 66: 7,7
+ 67: 6,6
+ 68: 7,6
+ 69: 6,5
+ 70: 7,5
+ 82: 8,5
+ 83: 9,5
+ 84: 9,6
+ 85: 8,8
+ 86: 9,8
+ 87: 9,9
+ 88: 7,4
+ - node:
+ cleanable: True
color: '#FFFFFFFF'
- id: BrickTileDarkCornerSw
+ id: DirtHeavy
decals:
- 52: 7,-6
+ 156: -8,3
+ 157: -5,5
+ 158: -8,7
+ 159: -5,9
+ 160: -8,9
+ 161: -6,8
+ 162: -4,10
+ 163: -1,11
+ 164: -4,12
+ 165: 0,13
+ 176: -5,3
+ 184: -8,8
+ 185: -2,10
+ 326: -3,4
+ 327: -7,4
+ 332: -5,14
+ 333: 6,13
+ 336: -8,15
+ 338: -6,15
+ 339: -3,15
+ 343: -1,14
+ 344: 6,10
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: BrickTileDarkInnerNe
+ id: DirtHeavyMonotile
decals:
- 50: 6,-7
+ 187: -3,12
+ 191: -1,12
+ 192: 0,12
+ 193: -2,12
+ 194: -3,12
+ 195: -4,6
+ 323: -1,9
+ 324: -1,10
+ 325: -4,4
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: BrickTileDarkInnerSe
+ id: DirtLight
decals:
- 77: -10,0
- 78: -6,2
+ 166: -5,13
+ 167: -8,8
+ 168: -8,5
+ 169: -6,3
+ 170: -8,4
+ 177: -6,3
+ 178: -6,4
+ 179: -4,6
+ 180: -5,7
+ 181: -5,6
+ 182: -8,6
+ 183: -5,8
+ 186: -3,10
+ 189: -5,10
+ 190: -4,10
+ 334: 6,11
+ 335: 7,12
+ 340: -4,15
+ 341: -3,14
+ 342: 0,14
+ 345: 7,10
+ 346: 7,11
+ 347: 6,11
+ 348: 7,12
+ 349: 6,12
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: BrickTileDarkLineE
+ id: DirtMedium
decals:
- 46: 6,-3
- 47: 6,-4
- 48: 6,-5
- 49: 6,-6
- 75: -10,-2
- 76: -10,-1
+ 171: -8,4
+ 172: -7,3
+ 173: -4,3
+ 174: -5,4
+ 175: -5,3
+ 188: -5,12
+ 328: -7,3
+ 329: -4,2
+ 330: 0,12
+ 331: -1,12
+ 337: -7,15
- node:
color: '#FFFFFFFF'
- id: BrickTileDarkLineN
+ id: FlowersBROne
decals:
- 51: 7,-7
+ 311: 14.009639,29.090136
+ 312: 13.395055,29.277636
+ 313: 13.895055,29.746386
+ 314: 14.884639,29.694302
+ 315: 14.967972,29.017218
+ 316: 13.551305,28.996386
- node:
color: '#FFFFFFFF'
- id: BrickTileDarkLineW
+ id: Flowerspv3
decals:
- 53: 7,-5
- 54: 7,-4
- 55: 7,-3
+ 304: 12.061722,29.048468
+ 305: 12.415889,29.475552
+ 306: 12.770055,29.090136
- node:
- color: '#D4D4D414'
- id: BrickTileWhiteCornerSw
+ color: '#FFFFFFFF'
+ id: Flowersy1
decals:
- 62: 7,-6
+ 307: 13.238805,29.579718
+ 308: 12.395055,29.423468
+ 309: 14.738805,28.996386
+ 310: 14.436722,29.433886
- node:
- color: '#D4D4D41E'
- id: BrickTileWhiteInnerNe
+ color: '#A46106FF'
+ id: MiniTileWhiteCornerNe
+ decals:
+ 55: 4,12
+ - node:
+ color: '#A46106FF'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 56: 2,12
+ - node:
+ color: '#A46106FF'
+ id: MiniTileWhiteCornerSe
decals:
- 60: 6,-7
+ 57: 4,10
- node:
- color: '#D4D4D41E'
- id: BrickTileWhiteLineE
+ color: '#A46106FF'
+ id: MiniTileWhiteCornerSw
decals:
- 56: 6,-6
- 57: 6,-5
- 58: 6,-4
- 59: 6,-3
+ 58: 2,10
- node:
- color: '#D4D4D41E'
- id: BrickTileWhiteLineN
+ color: '#A46106FF'
+ id: MiniTileWhiteLineE
decals:
- 61: 7,-7
+ 62: 4,11
- node:
- color: '#D4D4D414'
- id: BrickTileWhiteLineW
+ color: '#A46106FF'
+ id: MiniTileWhiteLineN
decals:
- 63: 7,-5
- 64: 7,-4
- 65: 7,-3
+ 61: 3,12
- node:
- color: '#79150096'
- id: MiniTileCheckerAOverlay
+ color: '#A46106FF'
+ id: MiniTileWhiteLineS
decals:
- 80: -5,-13
- 81: -4,-13
- 82: -3,-13
+ 60: 3,10
- node:
- color: '#D4D4D428'
- id: MiniTileCheckerAOverlay
+ color: '#A46106FF'
+ id: MiniTileWhiteLineW
decals:
- 83: -12,-9
- 84: -12,-8
- 85: -11,-9
- 86: -11,-8
- 87: -10,-9
- 88: -10,-8
+ 59: 2,11
- node:
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: StandClear
decals:
- 43: -31,-7
- 44: -31,-6
- 45: -31,-5
+ 350: 10,22
- node:
- color: '#FFFFFFFF'
- id: StandClear
+ color: '#A46106FF'
+ id: WarnCornerNE
decals:
- 40: 2,-24
- 41: 3,-24
- 42: 4,-24
+ 129: -4,6
- node:
- color: '#52B4E996'
- id: WarnFullGreyscale
+ color: '#A46106FF'
+ id: WarnCornerNW
+ decals:
+ 130: -8,9
+ - node:
+ color: '#A46106FF'
+ id: WarnCornerSE
+ decals:
+ 131: -4,3
+ 132: 0,12
+ - node:
+ color: '#9FED58FF'
+ id: WarnCornerSW
+ decals:
+ 149: -8,3
+ - node:
+ color: '#9FED58FF'
+ id: WarnCornerSmallNE
+ decals:
+ 154: -8,4
+ - node:
+ color: '#A46106FF'
+ id: WarnCornerSmallNE
+ decals:
+ 135: -5,10
+ 136: -5,12
+ 137: -5,6
+ 290: -4,4
+ - node:
+ color: '#9FED58FF'
+ id: WarnCornerSmallNW
+ decals:
+ 155: -5,4
+ - node:
+ color: '#A46106FF'
+ id: WarnCornerSmallNW
+ decals:
+ 133: 0,12
+ 134: -5,9
+ 294: -1,10
+ - node:
+ color: '#A46106FF'
+ id: WarnCornerSmallSE
decals:
- 66: 8,-3
- 67: 9,-3
- 68: 10,-3
+ 140: -8,8
+ 141: -5,10
+ 142: -1,12
+ 143: -5,12
+ 291: -4,4
- node:
- color: '#DE3A3A96'
+ color: '#A46106FF'
+ id: WarnCornerSmallSW
+ decals:
+ 138: -1,12
+ 139: -5,8
+ 292: -1,10
+ - node:
+ color: '#B02E26FF'
id: WarnFullGreyscale
decals:
- 69: 8,-6
- 70: 9,-6
- 71: 10,-6
+ 54: 4,12
+ - node:
+ color: '#9FED58FF'
+ id: WarnLineE
+ decals:
+ 146: -8,5
+ - node:
+ color: '#A46106FF'
+ id: WarnLineE
+ decals:
+ 91: -8,6
+ 92: -8,7
+ 104: -5,9
+ 105: -5,8
+ 106: -5,7
+ 107: -4,5
+ 108: -1,11
+ 109: 0,13
+ 110: -5,13
+ 111: -5,11
+ 293: -1,10
+ 302: -1,9
- node:
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 0: -34,-5
- 1: -34,-7
- 2: -28,-7
- 3: -28,-5
- 9: -6,2
- 16: -1,-8
- 17: -1,-9
- 28: -31,-7
- 29: -31,-6
- 30: -31,-5
+ 17: 11,-1
+ 18: 11,-2
+ 19: 11,-3
+ 20: -11,-1
+ 21: -11,-2
+ 28: -13,-1
+ 29: -13,-2
+ 30: -13,-3
+ 31: 13,-1
+ 32: 13,-2
+ 33: 13,-3
+ 52: 5,3
+ 53: 8,3
+ 72: -11,-3
+ 199: -6,-8
+ 288: 1,12
+ - node:
+ color: '#9FED58FF'
+ id: WarnLineN
+ decals:
+ 150: -7,3
+ 151: -6,3
+ 152: -5,3
+ - node:
+ color: '#A46106FF'
+ id: WarnLineN
+ decals:
+ 112: -6,8
+ 113: -7,8
+ 114: -4,10
+ 115: -3,10
+ 116: -2,10
+ 117: -2,12
+ 118: -3,12
+ 119: -4,12
+ 300: -3,4
- node:
color: '#FFFFFFFF'
id: WarnLineN
decals:
- 13: -2,-2
- 14: -1,-2
- 15: 5,-2
- 20: 2,-27
- 21: 4,-27
- 22: 2,-21
- 23: 4,-21
- 37: 2,-24
- 38: 3,-24
- 39: 4,-24
+ 11: -8,-7
+ 12: -7,-7
+ 13: -6,-7
+ 14: 6,-7
+ 15: 7,-7
+ 16: 8,-7
+ 34: -4,2
+ 39: 3,9
+ 46: -8,-9
+ 47: -7,-9
+ 48: -6,-9
+ 49: 6,-9
+ 50: 7,-9
+ 51: 8,-9
+ 90: 6,9
+ 197: -12,-3
+ - node:
+ color: '#9FED58FF'
+ id: WarnLineS
+ decals:
+ 147: -8,5
+ 148: -8,4
+ 153: -5,5
+ - node:
+ color: '#A46106FF'
+ id: WarnLineS
+ decals:
+ 93: -8,7
+ 94: -8,6
+ 95: -8,8
+ 96: -5,10
+ 97: -5,11
+ 98: -5,12
+ 99: -5,13
+ 100: 0,13
+ 101: -1,11
+ 102: -5,6
+ 103: -5,7
+ 301: -1,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 0: -11,-1
+ 1: -11,-2
+ 2: 11,-1
+ 3: 11,-2
+ 4: 11,-3
+ 22: 13,-3
+ 23: 13,-2
+ 24: 13,-1
+ 25: -13,-3
+ 26: -13,-2
+ 27: -13,-1
+ 35: 5,3
+ 36: 8,3
+ 71: -11,-3
+ 198: -8,-8
+ 289: 1,12
- node:
+ angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 4: -34,-7
- 5: -34,-5
- 6: -28,-7
- 7: -28,-5
- 8: -6,2
- 18: -1,-9
- 19: -1,-8
- 31: -31,-7
- 32: -31,-6
- 33: -31,-5
+ 207: 12,-3
+ - node:
+ color: '#9FED58FF'
+ id: WarnLineW
+ decals:
+ 144: -6,4
+ 145: -7,4
+ - node:
+ color: '#A46106FF'
+ id: WarnLineW
+ decals:
+ 120: -7,9
+ 121: -6,9
+ 122: -1,12
+ 123: -2,12
+ 124: -3,12
+ 125: -4,12
+ 126: -4,10
+ 127: -3,10
+ 128: -2,10
+ 299: -3,4
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 211: 8,-8
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 5: 6,-7
+ 6: 7,-7
+ 7: 8,-7
+ 8: -8,-7
+ 9: -7,-7
+ 10: -6,-7
+ 37: -4,2
+ 38: 3,9
+ 40: 8,-9
+ 41: 7,-9
+ 42: 6,-9
+ 43: -8,-9
+ 44: -7,-9
+ 45: -6,-9
+ 89: 6,9
+ 196: -12,-1
+ 209: 12,-1
- node:
+ angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 10: -2,-2
- 11: -1,-2
- 12: 5,-2
- 24: 2,-21
- 25: 4,-21
- 26: 2,-27
- 27: 4,-27
- 34: 2,-24
- 35: 3,-24
- 36: 4,-24
+ 210: 6,-8
+ - node:
+ cleanable: True
+ color: '#951710FF'
+ id: footprint
+ decals:
+ 318: -13.115324,17.519892
+ 319: -12.880949,17.769892
+ - node:
+ color: '#951710FF'
+ id: shop
+ decals:
+ 320: 0,16
+ 321: -5,16
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: skull
+ decals:
+ 200: -12,-1
+ 201: -12,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: skull
+ decals:
+ 202: -8,-8
+ 203: -6,-8
+ 204: 6,-8
+ 205: 8,-8
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: skull
+ decals:
+ 206: 12,-3
+ 208: 12,-1
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#791500FF'
+ id: space
+ decals:
+ 351: 8,22
- node:
- color: '#FF0000FF'
+ cleanable: True
+ color: '#951710FF'
+ id: splatter
+ decals:
+ 317: -12.740324,16.801142
+ - node:
+ color: '#951710FF'
id: x
decals:
- 79: 0.5325799,12.50158
+ 303: 3,36
- type: GridAtmosphere
version: 2
data:
@@ -308,314 +754,236 @@ entities:
0,-1:
0: 65535
-1,0:
- 0: 65535
- -1,-1:
- 0: 65535
+ 0: 56575
0,1:
0: 65535
+ -1,1:
+ 0: 57311
0,2:
- 0: 65535
+ 0: 4495
+ 1: 52224
+ -1,2:
+ 0: 65437
0,3:
+ 0: 65299
+ 1: 12
+ -1,3:
0: 65535
- 1,0:
+ 0,4:
0: 65535
+ 1,0:
+ 0: 56831
1,1:
- 0: 65535
+ 0: 56785
1,2:
- 0: 65535
+ 0: 52237
+ 1: 4352
1,3:
+ 1: 1
+ 0: 65484
+ 1,-1:
0: 65535
- 2,0:
+ 1,4:
0: 65535
+ 2,0:
+ 0: 8247
+ 2: 128
2,1:
- 0: 65535
+ 0: 560
2,2:
- 0: 65535
+ 0: 4131
+ 3: 128
2,3:
- 0: 1023
- 1: 7168
- 3,0:
- 0: 65535
- 3,1:
- 0: 65535
+ 0: 65329
+ 2,-1:
+ 0: 65527
+ 2,4:
+ 0: 4927
3,2:
- 0: 65535
+ 3: 3952
3,3:
- 0: 7
- 1: 8
- 0,-4:
- 0: 65535
- 0,-3:
- 0: 65535
- 0,-2:
- 0: 65535
- 1,-4:
- 0: 65535
- 1,-3:
- 0: 65535
- 1,-2:
- 0: 65535
- 1,-1:
- 0: 65535
- 2,-4:
- 0: 65535
- 2,-3:
- 0: 65535
- 2,-2:
- 0: 65535
- 2,-1:
- 0: 65535
- 3,-4:
- 0: 65535
- 3,-3:
- 0: 65535
- 3,-2:
- 0: 65535
+ 0: 65280
3,-1:
- 0: 65535
- -4,0:
- 0: 65535
- -4,1:
- 0: 65535
+ 0: 13104
+ 3,4:
+ 0: 7
+ 4,2:
+ 3: 768
+ -4,3:
+ 0: 65024
+ -4,4:
+ 0: 61167
-4,2:
+ 3: 608
+ -4,-1:
+ 0: 34944
+ -3,3:
+ 0: 65160
+ -3,-1:
+ 0: 65532
+ -3,4:
0: 65535
- -4,3:
- 0: 239
- 1: 16
-3,0:
- 0: 65535
+ 2: 32
+ 0: 32908
-3,1:
- 0: 65535
+ 0: 34952
-3,2:
- 0: 65535
- -3,3:
- 0: 255
- 1: 3584
+ 0: 34952
-2,0:
- 0: 65535
+ 0: 61695
-2,1:
0: 65535
-2,2:
0: 65535
-2,3:
- 0: 61439
- -1,1:
- 0: 65535
- -1,2:
- 0: 65535
- -1,3:
- 0: 65535
- -4,-4:
- 0: 65535
- -4,-3:
0: 65535
- -4,-2:
+ -2,-1:
0: 65535
- -4,-1:
+ -2,4:
0: 65535
- -3,-4:
+ -1,-1:
0: 65535
- -3,-3:
+ -1,4:
0: 65535
-3,-2:
- 0: 65535
- -3,-1:
- 0: 65535
- -2,-4:
- 0: 65535
+ 2: 8256
+ 0: 34816
-2,-3:
- 0: 65535
+ 0: 28672
-2,-2:
- 0: 65535
- -2,-1:
- 0: 65535
- -1,-4:
- 0: 65535
- -1,-3:
- 0: 65535
+ 0: 65399
-1,-2:
- 0: 65535
- -4,-5:
- 0: 65535
- -4,-6:
- 1: 8320
- 0: 52224
- -3,-6:
- 0: 65520
- 1: 8
- -3,-5:
- 0: 65535
- -2,-7:
- 1: 4608
- 0: 60416
- -2,-6:
- 0: 65535
- -2,-5:
- 0: 65535
- -1,-7:
- 1: 48
- 0: 65480
- -1,-6:
- 0: 65535
- -1,-5:
- 0: 65535
- -1,-8:
- 1: 32768
- -8,-3:
- 0: 65535
- -8,-2:
- 0: 65535
- -8,-1:
- 0: 65535
- -8,-4:
- 1: 8192
+ 2: 16
+ 0: 61440
+ 0,-2:
+ 0: 61440
+ 1,-2:
+ 0: 65228
+ 2: 16
+ 1,-3:
0: 49152
- -7,-4:
- 0: 56520
- 1: 8740
- -7,-3:
- 0: 65535
- -7,-2:
- 0: 65535
- -7,-1:
- 0: 65535
- -6,-4:
- 0: 65535
- -6,-3:
+ 2,-3:
+ 0: 4096
+ 2,-2:
+ 0: 13073
+ 2: 32832
+ -4,5:
+ 0: 61422
+ -4,6:
+ 0: 65518
+ -4,7:
+ 0: 3823
+ -3,5:
0: 65535
- -6,-2:
+ -3,6:
+ 0: 32767
+ -3,7:
+ 0: 819
+ -2,5:
0: 65535
- -6,-1:
+ -2,6:
0: 65535
- -5,-4:
+ -2,7:
+ 0: 49166
+ -2,8:
+ 0: 52428
+ -1,5:
0: 65535
- -5,-3:
+ -1,6:
0: 65535
- -5,-2:
+ -1,7:
+ 0: 62207
+ -1,8:
+ 0: 65407
+ 0,5:
0: 65535
- -5,-1:
+ 0,6:
0: 65535
- -6,-5:
- 1: 61440
- -5,-5:
- 1: 28
- 0: 65504
- 0,4:
- 0: 4095
- 1: 12288
- 1,4:
- 0: 307
- 1: 516
- 4,0:
+ 0,7:
+ 0: 19
+ 1,5:
0: 65535
- 4,1:
- 0: 30719
- 4,2:
- 0: 30583
- 1: 2176
+ 1,6:
+ 0: 53247
+ 1,7:
+ 0: 52428
+ 2,5:
+ 0: 24401
+ 2,6:
+ 0: 13073
+ 2,7:
+ 0: 64977
+ 3,5:
+ 3: 4368
+ 2: 11808
+ 3,7:
+ 0: 32752
+ 3,6:
+ 2: 2
+ 3: 128
+ 4,5:
+ 2: 20256
+ 3: 3
+ 4,6:
+ 3: 28
+ 4,7:
+ 3: 2248
+ 4,8:
+ 3: 780
+ 5,4:
+ 3: 1
+ 2: 57344
+ 5,5:
+ 2: 53196
+ 5,7:
+ 3: 4352
+ 5,3:
+ 3: 4352
+ 5,6:
+ 2: 236
+ 5,8:
+ 3: 1
+ 6,4:
+ 2: 4096
+ 6,5:
+ 2: 4369
+ 6,6:
+ 2: 17
4,3:
- 0: 3
- 1: 4
- 5,0:
- 0: 4403
- 5,1:
- 1: 1
- 4,-4:
- 0: 65527
- 1: 8
- 4,-3:
- 0: 65535
- 4,-2:
- 0: 65535
- 4,-1:
- 0: 65535
- 5,-4:
- 1: 4096
- 5,-3:
- 1: 273
- 0: 4096
- 5,-2:
- 0: 13073
- 1: 32
- 5,-1:
- 0: 13107
- 1: 1092
- 4,-6:
- 1: 256
- 0: 4096
- 4,-5:
- 0: 29489
- 1: 1090
- 0,-8:
- 0: 61440
- 0,-7:
- 0: 65535
- 0,-6:
- 0: 65535
- 0,-5:
- 0: 65535
- 1,-8:
- 0: 28672
- 1,-7:
- 0: 65399
- 1: 128
- 1,-6:
- 0: 65535
- 1,-5:
- 0: 65535
- 2,-7:
- 0: 28928
- 1: 34304
- 2,-6:
- 0: 65535
- 2,-5:
- 0: 65535
- 3,-6:
- 0: 65328
- 1: 64
- 3,-5:
- 0: 65535
- -2,4:
- 1: 6
- 0: 8
- -1,4:
- 0: 3311
- 1: 528
- -8,0:
- 0: 3823
- 1: 16
- -7,0:
- 0: 61439
- -7,1:
- 0: 61166
- -7,2:
- 0: 142
- 1: 2144
- -6,0:
- 0: 65535
- -6,1:
- 0: 65535
- -6,2:
- 0: 4095
- 1: 49152
- -5,0:
- 0: 65535
- -5,1:
- 0: 65535
- -5,2:
- 0: 65535
+ 3: 2048
-5,3:
- 1: 12
- -9,-3:
- 1: 256
- 0: 65024
- -9,-2:
- 0: 65535
- -9,-1:
- 0: 65535
- -9,0:
- 1: 130
- 0: 12
+ 3: 272
+ -5,2:
+ 3: 8192
+ -5,4:
+ 3: 256
+ -5,5:
+ 3: 256
+ -5,6:
+ 3: 4096
+ -5,8:
+ 3: 2082
+ -3,8:
+ 3: 8192
+ -3,9:
+ 3: 2176
+ -2,9:
+ 0: 2188
+ -1,9:
+ 0: 2047
+ 0,8:
+ 3: 49152
+ 0,9:
+ 3: 12
+ 1,8:
+ 3: 28672
+ 1,9:
+ 3: 1
+ 2,8:
+ 3: 3072
+ 3,8:
+ 3: 3840
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -632,6 +1000,36 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 235
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -650,10541 +1048,11892 @@ entities:
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
- - type: BecomesStation
- id: Cove
-- proto: ActionToggleLight
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+- proto: AccordionInstrument
entities:
- - uid: 1919
+ - uid: 1426
components:
- type: Transform
- parent: 1918
- - type: InstantAction
- container: 1918
-- proto: AirCanister
+ pos: -0.4802575,36.45672
+ parent: 1
+- proto: AirAlarm
entities:
- - uid: 1289
+ - uid: 239
components:
- type: Transform
- pos: 8.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
parent: 1
-- proto: AirlockEngineering
+ - type: DeviceList
+ devices:
+ - 407
+ - 646
+ - 171
+ - 974
+ - 973
+- proto: AirCanister
entities:
- - uid: 1843
+ - uid: 901
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-1.5
+ anchored: True
+ pos: 8.5,11.5
parent: 1
-- proto: AirlockShuttle
+ - type: Physics
+ bodyType: Static
+- proto: AirlockFreezer
entities:
- - uid: 3
+ - uid: 345
components:
- type: Transform
- pos: 2.5,-28.5
+ pos: 1.5,12.5
parent: 1
- - uid: 4
+ - uid: 993
components:
- type: Transform
- pos: 3.5,-28.5
+ pos: 3.5,9.5
parent: 1
- - uid: 5
+- proto: AirlockGlass
+ entities:
+ - uid: 358
components:
- type: Transform
- pos: 4.5,-28.5
+ pos: 8.5,8.5
parent: 1
- - uid: 22
+ - uid: 637
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-6.5
+ pos: 8.5,5.5
parent: 1
- - uid: 23
+- proto: AirlockHatch
+ entities:
+ - uid: 36
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-5.5
+ pos: -10.5,-0.5
parent: 1
- - uid: 24
+ - uid: 41
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-4.5
+ pos: -10.5,-1.5
parent: 1
-- proto: APCBasic
- entities:
- - uid: 1306
+ - uid: 58
components:
- type: Transform
- pos: -7.5,-5.5
+ pos: -10.5,-2.5
parent: 1
- - uid: 1307
+ - uid: 60
components:
- type: Transform
- pos: 3.5,-20.5
+ pos: 11.5,-0.5
parent: 1
- - uid: 1308
+ - type: DeviceLinkSink
+ links:
+ - 950
+ - uid: 89
components:
- type: Transform
- pos: -27.5,-5.5
+ pos: 11.5,-1.5
parent: 1
- - uid: 1309
+ - type: DeviceLinkSink
+ links:
+ - 950
+ - uid: 92
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,1.5
+ pos: 11.5,-2.5
parent: 1
-- proto: AtmosDeviceFanTiny
- entities:
- - uid: 1592
+ - uid: 95
components:
- type: Transform
- pos: 2.5,-26.5
+ pos: 6.5,-6.5
parent: 1
- - uid: 1593
+ - uid: 103
components:
- type: Transform
- pos: 4.5,-26.5
+ pos: 7.5,-6.5
parent: 1
- - uid: 1594
+ - uid: 114
components:
- type: Transform
- pos: -33.5,-4.5
+ pos: 8.5,-6.5
parent: 1
- - uid: 1595
+ - uid: 116
components:
- type: Transform
- pos: -33.5,-6.5
+ pos: -5.5,-6.5
parent: 1
-- proto: AtmosFixBlockerMarker
- entities:
- - uid: 1137
+ - uid: 117
components:
- type: Transform
- pos: -21.5,11.5
+ pos: -6.5,-6.5
parent: 1
- - uid: 1781
+ - uid: 118
components:
- type: Transform
- pos: -14.5,-20.5
+ pos: -7.5,-6.5
parent: 1
- - uid: 1920
+ - uid: 1917
components:
- type: Transform
- pos: -20.5,11.5
+ pos: 9.5,22.5
parent: 1
- - uid: 1922
+ - uid: 2055
components:
- type: Transform
- pos: -24.5,10.5
+ pos: 11.5,22.5
parent: 1
- - uid: 1923
+- proto: AirlockShuttleSyndicate
+ entities:
+ - uid: 130
components:
- type: Transform
- pos: -25.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-1.5
parent: 1
- - uid: 1924
+ - uid: 131
components:
- type: Transform
- pos: -26.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-2.5
parent: 1
- - uid: 1925
+ - uid: 136
components:
- type: Transform
- pos: -31.5,1.5
+ pos: -7.5,-8.5
parent: 1
- - uid: 1926
+ - uid: 137
components:
- type: Transform
- pos: -32.5,1.5
+ pos: -6.5,-8.5
parent: 1
- - uid: 1927
+ - uid: 140
components:
- type: Transform
- pos: -34.5,0.5
+ pos: -5.5,-8.5
parent: 1
- - uid: 1928
+ - uid: 143
components:
- type: Transform
- pos: -35.5,-9.5
+ pos: 6.5,-8.5
parent: 1
- - uid: 1929
+ - uid: 146
components:
- type: Transform
- pos: -30.5,-12.5
+ pos: 7.5,-8.5
parent: 1
- - uid: 1930
+ - uid: 147
components:
- type: Transform
- pos: -26.5,-12.5
+ pos: 8.5,-8.5
parent: 1
- - uid: 1931
+ - uid: 148
components:
- type: Transform
- pos: -26.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-2.5
parent: 1
- - uid: 1932
+ - uid: 150
components:
- type: Transform
- pos: -26.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-1.5
parent: 1
- - uid: 1933
+ - uid: 151
components:
- type: Transform
- pos: -25.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-0.5
parent: 1
- - uid: 1934
+ - uid: 159
components:
- type: Transform
- pos: -23.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-0.5
parent: 1
- - uid: 1935
+- proto: AirSensor
+ entities:
+ - uid: 973
components:
- type: Transform
- pos: -22.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,4.5
parent: 1
- - uid: 1936
+- proto: AmeJar
+ entities:
+ - uid: 562
components:
- type: Transform
- pos: -21.5,-16.5
+ pos: -3.6350956,13.749761
parent: 1
- - uid: 1937
+ - uid: 651
components:
- type: Transform
- pos: -20.5,-16.5
+ pos: -3.343429,13.760177
parent: 1
- - uid: 1938
+- proto: APCBasic
+ entities:
+ - uid: 53
components:
- type: Transform
- pos: -19.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,8.5
parent: 1
- - uid: 1939
+ - uid: 123
components:
- type: Transform
- pos: -17.5,-19.5
+ pos: 0.5,9.5
parent: 1
- - uid: 1940
+ - uid: 186
components:
- type: Transform
- pos: -16.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,9.5
parent: 1
- - uid: 1941
+ - uid: 578
components:
- type: Transform
- pos: -12.5,-22.5
+ pos: 9.5,2.5
parent: 1
- - uid: 1942
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 56
components:
- type: Transform
- pos: -8.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-2.5
parent: 1
- - uid: 1943
+ - uid: 257
components:
- type: Transform
- pos: -7.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-0.5
parent: 1
- - uid: 1944
+ - uid: 259
components:
- type: Transform
- pos: -6.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-1.5
parent: 1
- - uid: 1945
+ - uid: 320
components:
- type: Transform
- pos: -3.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-8.5
parent: 1
- - uid: 1946
+ - uid: 411
components:
- type: Transform
- pos: -2.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-8.5
parent: 1
- - uid: 1947
+ - uid: 446
components:
- type: Transform
- pos: -0.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-8.5
parent: 1
- - uid: 1948
+ - uid: 522
components:
- type: Transform
- pos: 7.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-8.5
parent: 1
- - uid: 1949
+ - uid: 542
components:
- type: Transform
- pos: 9.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-2.5
parent: 1
- - uid: 1950
+ - uid: 551
components:
- type: Transform
- pos: 10.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-0.5
parent: 1
- - uid: 1951
+ - uid: 552
components:
- type: Transform
- pos: 11.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-1.5
parent: 1
- - uid: 1952
+ - uid: 634
components:
- type: Transform
- pos: 14.5,-22.5
+ pos: 3.5,9.5
parent: 1
- - uid: 1953
+ - uid: 905
components:
- type: Transform
- pos: 16.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-8.5
parent: 1
- - uid: 1954
+ - uid: 906
components:
- type: Transform
- pos: 17.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-8.5
parent: 1
- - uid: 1955
+ - uid: 1037
components:
- type: Transform
- pos: 18.5,-18.5
+ pos: 1.5,12.5
parent: 1
- - uid: 1956
+ - uid: 2057
components:
- type: Transform
- pos: 18.5,-17.5
+ pos: 11.5,22.5
parent: 1
- - uid: 1957
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 176
components:
- type: Transform
- pos: 19.5,-15.5
+ pos: 4.5,-6.5
parent: 1
- - uid: 1958
+ - uid: 238
components:
- type: Transform
- pos: 20.5,-12.5
+ pos: 19.5,28.5
parent: 1
- - uid: 1959
+ - uid: 1051
components:
- type: Transform
- pos: 20.5,-11.5
+ pos: -3.5,-6.5
parent: 1
- - uid: 1960
+ - uid: 1052
components:
- type: Transform
- pos: 20.5,-10.5
+ pos: -10.5,-4.5
parent: 1
- - uid: 1961
+ - uid: 1053
components:
- type: Transform
- pos: 20.5,-9.5
+ pos: -9.5,-6.5
parent: 1
- - uid: 1962
+ - uid: 1054
components:
- type: Transform
- pos: 21.5,-6.5
+ pos: -10.5,1.5
parent: 1
- - uid: 1963
+ - uid: 1056
components:
- type: Transform
- pos: 22.5,-3.5
+ pos: 10.5,-6.5
parent: 1
- - uid: 1964
+ - uid: 1057
components:
- type: Transform
- pos: 22.5,-2.5
+ pos: 11.5,-4.5
parent: 1
- - uid: 1965
+ - uid: 1058
components:
- type: Transform
- pos: 22.5,-1.5
+ pos: 11.5,1.5
parent: 1
- - uid: 1966
+ - uid: 1292
components:
- type: Transform
- pos: 20.5,4.5
+ pos: 17.5,34.5
parent: 1
- - uid: 1967
+ - uid: 1432
components:
- type: Transform
- pos: 19.5,9.5
+ pos: 11.5,9.5
parent: 1
- - uid: 1968
+ - uid: 1433
components:
- type: Transform
- pos: 19.5,10.5
+ pos: 12.5,9.5
parent: 1
- - uid: 1969
+ - uid: 1435
components:
- type: Transform
- pos: 18.5,12.5
+ pos: 13.5,9.5
parent: 1
- - uid: 1970
+ - uid: 1436
components:
- type: Transform
- pos: 15.5,12.5
+ pos: 14.5,9.5
parent: 1
- - uid: 1971
+ - uid: 1437
components:
- type: Transform
- pos: 11.5,14.5
+ pos: 24.5,19.5
parent: 1
- - uid: 1972
+ - uid: 1438
components:
- type: Transform
- pos: 10.5,14.5
+ pos: 12.5,10.5
parent: 1
- - uid: 1973
+ - uid: 1439
components:
- type: Transform
- pos: 8.5,15.5
+ pos: 13.5,10.5
parent: 1
- - uid: 1974
+ - uid: 1440
components:
- type: Transform
- pos: 6.5,16.5
+ pos: 14.5,10.5
parent: 1
- - uid: 1975
+ - uid: 1441
components:
- type: Transform
- pos: 5.5,18.5
+ pos: 15.5,10.5
parent: 1
- - uid: 1976
+ - uid: 1442
components:
- type: Transform
- pos: 1.5,19.5
+ pos: 16.5,10.5
parent: 1
- - uid: 1977
+ - uid: 1443
components:
- type: Transform
- pos: 0.5,19.5
+ pos: 17.5,10.5
parent: 1
- - uid: 1978
+ - uid: 1444
components:
- type: Transform
- pos: -2.5,18.5
+ pos: 19.5,14.5
parent: 1
- - uid: 1979
+ - uid: 1445
components:
- type: Transform
- pos: -3.5,17.5
+ pos: 20.5,14.5
parent: 1
- - uid: 1980
+ - uid: 1446
components:
- type: Transform
- pos: -5.5,16.5
+ pos: 20.5,15.5
parent: 1
- - uid: 1981
+ - uid: 1447
components:
- type: Transform
- pos: -6.5,16.5
+ pos: 20.5,16.5
parent: 1
- - uid: 1982
+ - uid: 1448
components:
- type: Transform
- pos: -8.5,14.5
+ pos: 24.5,20.5
parent: 1
- - uid: 1983
+ - uid: 1449
components:
- type: Transform
- pos: -9.5,14.5
+ pos: 24.5,21.5
parent: 1
- - uid: 1984
+ - uid: 1450
components:
- type: Transform
- pos: -10.5,14.5
+ pos: 24.5,22.5
parent: 1
- - uid: 1985
+ - uid: 1451
components:
- type: Transform
- pos: -15.5,13.5
+ pos: 24.5,23.5
parent: 1
- - uid: 1986
+ - uid: 1452
components:
- type: Transform
- pos: -16.5,12.5
+ pos: 24.5,24.5
parent: 1
- - uid: 1987
+ - uid: 1453
components:
- type: Transform
- pos: -17.5,12.5
+ pos: 24.5,25.5
parent: 1
-- proto: BananaPhoneInstrument
- entities:
- - uid: 1830
+ - uid: 1454
components:
- type: Transform
- pos: -8.640035,-8.22926
+ pos: 23.5,25.5
parent: 1
-- proto: BananaSeeds
- entities:
- - uid: 1831
+ - uid: 1455
components:
- type: Transform
- pos: -8.424658,-8.463635
+ pos: 22.5,25.5
parent: 1
-- proto: BarSignEmergencyRumParty
- entities:
- - uid: 1804
+ - uid: 1456
components:
- type: Transform
- pos: -3.5,-5.5
+ pos: 21.5,25.5
parent: 1
-- proto: Bed
- entities:
- - uid: 1653
+ - uid: 1457
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: 22.5,24.5
parent: 1
- - uid: 1654
+ - uid: 1458
components:
- type: Transform
- pos: 2.5,0.5
+ pos: 22.5,23.5
parent: 1
- - uid: 1655
+ - uid: 1459
components:
- type: Transform
- pos: 2.5,1.5
+ pos: 22.5,22.5
parent: 1
- - uid: 1656
+ - uid: 1460
components:
- type: Transform
- pos: 2.5,3.5
+ pos: 22.5,21.5
parent: 1
-- proto: BedsheetSpawner
- entities:
- - uid: 1742
+ - uid: 1461
components:
- type: Transform
- pos: 2.5,3.5
+ pos: 22.5,20.5
parent: 1
- - uid: 1743
+ - uid: 1462
components:
- type: Transform
- pos: 2.5,1.5
+ pos: 22.5,19.5
parent: 1
- - uid: 1744
+ - uid: 1463
components:
- type: Transform
- pos: 2.5,0.5
+ pos: 23.5,19.5
parent: 1
- - uid: 1745
+ - uid: 1464
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: 23.5,20.5
parent: 1
-- proto: BenchSofaCorner
- entities:
- - uid: 1748
+ - uid: 1465
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,1.5
+ pos: 23.5,21.5
parent: 1
- - type: Physics
- canCollide: False
- bodyType: Static
- - type: Fixtures
- fixtures: {}
-- proto: BenchSofaLeft
- entities:
- - uid: 1749
+ - uid: 1466
components:
- type: Transform
- pos: -0.5,1.5
+ pos: 23.5,22.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BenchSofaMiddle
- entities:
- - uid: 1747
+ - uid: 1467
components:
- type: Transform
- pos: -1.5,1.5
+ pos: 23.5,23.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BenchSofaRight
- entities:
- - uid: 1750
+ - uid: 1468
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,0.5
+ pos: 23.5,24.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BlastDoorOpen
- entities:
- - uid: 1852
+ - uid: 1469
components:
- type: Transform
- pos: 2.5,-23.5
+ pos: 21.5,19.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1859
- - uid: 1853
+ - uid: 1470
components:
- type: Transform
- pos: 3.5,-23.5
+ pos: 21.5,22.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1859
- - uid: 1854
+ - uid: 1471
components:
- type: Transform
- pos: 4.5,-23.5
+ pos: 20.5,22.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1859
- - uid: 1855
+ - uid: 1472
components:
- type: Transform
- pos: -30.5,-4.5
+ pos: 19.5,22.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1858
- - uid: 1856
+ - uid: 1473
components:
- type: Transform
- pos: -30.5,-5.5
+ pos: 18.5,22.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1858
- - uid: 1857
+ - uid: 1474
components:
- type: Transform
- pos: -30.5,-6.5
+ pos: 17.5,22.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1858
-- proto: BoozeDispenser
- entities:
- - uid: 1651
+ - uid: 1475
components:
- type: Transform
- pos: -1.5,-13.5
+ pos: 16.5,22.5
parent: 1
-- proto: BrokenBottle
- entities:
- - uid: 1822
+ - uid: 1476
components:
- type: Transform
- pos: -2.7916102,-7.6355104
+ pos: 15.5,22.5
parent: 1
- - uid: 1823
+ - uid: 1477
components:
- type: Transform
- pos: -5.9166102,-9.963635
+ pos: 14.5,22.5
parent: 1
-- proto: Bucket
- entities:
- - uid: 1713
+ - uid: 1478
components:
- type: Transform
- pos: -14.518534,-6.3820496
+ pos: 13.5,22.5
parent: 1
-- proto: CableApcExtension
- entities:
- - uid: 1326
+ - uid: 1479
components:
- type: Transform
- pos: 3.5,1.5
+ pos: 12.5,22.5
parent: 1
- - uid: 1327
+ - uid: 1480
components:
- type: Transform
- pos: 3.5,2.5
+ pos: 12.5,23.5
parent: 1
- - uid: 1328
+ - uid: 1481
components:
- type: Transform
- pos: 4.5,2.5
+ pos: 13.5,23.5
parent: 1
- - uid: 1329
+ - uid: 1482
components:
- type: Transform
- pos: 5.5,2.5
+ pos: 13.5,24.5
parent: 1
- - uid: 1330
+ - uid: 1483
components:
- type: Transform
- pos: 5.5,1.5
+ pos: 12.5,21.5
parent: 1
- - uid: 1331
+ - uid: 1484
components:
- type: Transform
- pos: 5.5,0.5
+ pos: 13.5,21.5
parent: 1
- - uid: 1332
+ - uid: 1485
components:
- type: Transform
- pos: 5.5,-0.5
+ pos: 16.5,20.5
parent: 1
- - uid: 1333
+ - uid: 1486
components:
- type: Transform
- pos: 2.5,1.5
+ pos: 17.5,20.5
parent: 1
- - uid: 1334
+ - uid: 1487
components:
- type: Transform
- pos: 1.5,1.5
+ pos: 17.5,21.5
parent: 1
- - uid: 1335
+ - uid: 1488
components:
- type: Transform
- pos: 0.5,1.5
+ pos: 18.5,23.5
parent: 1
- - uid: 1336
+ - uid: 1489
components:
- type: Transform
- pos: -0.5,1.5
+ pos: 18.5,24.5
parent: 1
- - uid: 1337
+ - uid: 1490
components:
- type: Transform
- pos: -1.5,1.5
+ pos: 19.5,24.5
parent: 1
- - uid: 1338
+ - uid: 1491
components:
- type: Transform
- pos: -2.5,1.5
+ pos: 16.5,25.5
parent: 1
- - uid: 1339
+ - uid: 1492
components:
- type: Transform
- pos: -3.5,1.5
+ pos: 15.5,25.5
parent: 1
- - uid: 1340
+ - uid: 1557
components:
- type: Transform
- pos: -4.5,1.5
+ pos: 16.5,34.5
parent: 1
- - uid: 1341
+ - uid: 1563
components:
- type: Transform
- pos: -4.5,2.5
+ pos: 18.5,29.5
parent: 1
- - uid: 1342
+ - uid: 1565
components:
- type: Transform
- pos: -5.5,2.5
+ pos: 20.5,31.5
parent: 1
- - uid: 1343
+ - uid: 1566
components:
- type: Transform
- pos: -6.5,2.5
+ pos: 20.5,32.5
parent: 1
- - uid: 1344
+ - uid: 1567
components:
- type: Transform
- pos: -7.5,2.5
+ pos: 19.5,32.5
parent: 1
- - uid: 1345
+ - uid: 1660
components:
- type: Transform
- pos: -0.5,2.5
+ pos: 18.5,32.5
parent: 1
- - uid: 1346
+ - uid: 1661
components:
- type: Transform
- pos: -0.5,3.5
+ pos: 20.5,30.5
parent: 1
- - uid: 1347
+ - uid: 1662
components:
- type: Transform
- pos: -0.5,0.5
+ pos: 19.5,30.5
parent: 1
- - uid: 1348
+ - uid: 1922
components:
- type: Transform
- pos: -0.5,-0.5
+ pos: 15.5,34.5
parent: 1
- - uid: 1349
+ - uid: 1955
components:
- type: Transform
- pos: -3.5,-0.5
+ pos: 19.5,29.5
parent: 1
- - uid: 1350
+ - uid: 1962
components:
- type: Transform
- pos: -3.5,0.5
+ pos: 14.5,34.5
parent: 1
- - uid: 1351
+ - uid: 1963
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 13.5,34.5
parent: 1
- - uid: 1352
+ - uid: 1964
components:
- type: Transform
- pos: 1.5,-0.5
+ pos: 12.5,34.5
parent: 1
- - uid: 1353
+ - uid: 1965
components:
- type: Transform
- pos: 5.5,-1.5
+ pos: 11.5,34.5
parent: 1
- - uid: 1354
+ - uid: 1966
components:
- type: Transform
- pos: 6.5,-1.5
+ pos: 10.5,34.5
parent: 1
- - uid: 1355
+ - uid: 1967
components:
- type: Transform
- pos: 7.5,-1.5
+ pos: 6.5,35.5
parent: 1
- - uid: 1356
+ - uid: 1968
components:
- type: Transform
- pos: 7.5,-2.5
+ pos: 5.5,35.5
parent: 1
- - uid: 1357
+ - uid: 1969
components:
- type: Transform
- pos: 7.5,-3.5
+ pos: 4.5,35.5
parent: 1
- - uid: 1358
+ - uid: 1970
components:
- type: Transform
- pos: 7.5,-4.5
+ pos: 3.5,35.5
parent: 1
- - uid: 1359
+ - uid: 1971
components:
- type: Transform
- pos: 7.5,-5.5
+ pos: 2.5,35.5
parent: 1
- - uid: 1360
+ - uid: 1972
components:
- type: Transform
- pos: 5.5,-2.5
+ pos: 2.5,36.5
parent: 1
- - uid: 1361
+ - uid: 1973
components:
- type: Transform
- pos: 4.5,-2.5
+ pos: 3.5,36.5
parent: 1
- - uid: 1362
+ - uid: 1974
components:
- type: Transform
- pos: 4.5,-3.5
+ pos: 4.5,36.5
parent: 1
- - uid: 1363
+ - uid: 1975
components:
- type: Transform
- pos: 4.5,-4.5
+ pos: -8.5,38.5
parent: 1
- - uid: 1364
+ - uid: 1976
components:
- type: Transform
- pos: 4.5,-5.5
+ pos: -8.5,37.5
parent: 1
- - uid: 1365
+ - uid: 1977
components:
- type: Transform
- pos: 4.5,-6.5
+ pos: -10.5,35.5
parent: 1
- - uid: 1366
+ - uid: 1978
components:
- type: Transform
- pos: 4.5,-7.5
+ pos: -16.5,34.5
parent: 1
- - uid: 1367
+ - uid: 1979
components:
- type: Transform
- pos: 4.5,-8.5
+ pos: -18.5,33.5
parent: 1
- - uid: 1368
+ - uid: 1980
components:
- type: Transform
- pos: 4.5,-9.5
+ pos: -18.5,32.5
parent: 1
- - uid: 1369
+ - uid: 1981
components:
- type: Transform
- pos: 4.5,-10.5
+ pos: -19.5,27.5
parent: 1
- - uid: 1370
+ - uid: 1982
components:
- type: Transform
- pos: 4.5,-11.5
+ pos: -19.5,22.5
parent: 1
- - uid: 1371
+ - uid: 1983
components:
- type: Transform
- pos: 4.5,-12.5
+ pos: -19.5,18.5
parent: 1
- - uid: 1372
+ - uid: 1984
components:
- type: Transform
- pos: 4.5,-13.5
+ pos: -19.5,14.5
parent: 1
- - uid: 1373
+ - uid: 1985
components:
- type: Transform
- pos: 4.5,-14.5
+ pos: -19.5,13.5
parent: 1
- - uid: 1374
+ - uid: 1986
components:
- type: Transform
- pos: 4.5,-15.5
+ pos: -18.5,11.5
parent: 1
- - uid: 1375
+ - uid: 1987
components:
- type: Transform
- pos: 4.5,-16.5
+ pos: -14.5,10.5
parent: 1
- - uid: 1376
+ - uid: 1988
components:
- type: Transform
- pos: 4.5,-17.5
+ pos: -14.5,9.5
parent: 1
- - uid: 1377
+ - uid: 1989
components:
- type: Transform
- pos: 4.5,-18.5
+ pos: -13.5,9.5
parent: 1
- - uid: 1378
+- proto: AtmosFixFreezerMarker
+ entities:
+ - uid: 404
components:
- type: Transform
- pos: 2.5,-18.5
+ pos: 3.5,12.5
parent: 1
- - uid: 1379
+ - uid: 866
components:
- type: Transform
- pos: 2.5,-17.5
+ pos: 2.5,12.5
parent: 1
- - uid: 1380
+ - uid: 874
components:
- type: Transform
- pos: 2.5,-16.5
+ pos: 4.5,12.5
parent: 1
- - uid: 1381
+ - uid: 1014
components:
- type: Transform
- pos: 2.5,-15.5
+ pos: 4.5,11.5
parent: 1
- - uid: 1382
+ - uid: 1016
components:
- type: Transform
- pos: 2.5,-14.5
+ pos: 3.5,11.5
parent: 1
- - uid: 1383
+ - uid: 1023
components:
- type: Transform
- pos: 2.5,-13.5
+ pos: 2.5,11.5
parent: 1
- - uid: 1384
+ - uid: 1028
components:
- type: Transform
- pos: 2.5,-12.5
+ pos: 2.5,10.5
parent: 1
- - uid: 1385
+ - uid: 1063
components:
- type: Transform
- pos: 2.5,-11.5
+ pos: 3.5,10.5
parent: 1
- - uid: 1386
+ - uid: 1064
components:
- type: Transform
- pos: 2.5,-10.5
+ pos: 4.5,10.5
parent: 1
- - uid: 1387
+- proto: Bed
+ entities:
+ - uid: 1645
components:
- type: Transform
- pos: 2.5,-9.5
+ pos: -0.5,34.5
parent: 1
- - uid: 1388
+ - uid: 1701
components:
- type: Transform
- pos: 2.5,-8.5
+ pos: -5.5,35.5
parent: 1
- - uid: 1389
+ - uid: 1709
components:
- type: Transform
- pos: 2.5,-7.5
+ pos: -0.5,36.5
parent: 1
- - uid: 1390
+ - uid: 1863
components:
- type: Transform
- pos: 2.5,-6.5
+ pos: -12.5,17.5
parent: 1
- - uid: 1391
+- proto: BedsheetMedical
+ entities:
+ - uid: 1851
components:
- type: Transform
- pos: 2.5,-5.5
+ pos: -12.5,17.5
parent: 1
- - uid: 1392
+- proto: BedsheetSpawner
+ entities:
+ - uid: 1760
components:
- type: Transform
- pos: 2.5,-4.5
+ pos: -5.5,35.5
parent: 1
- - uid: 1393
+ - uid: 1761
components:
- type: Transform
- pos: 1.5,-4.5
+ pos: -0.5,36.5
parent: 1
- - uid: 1394
+ - uid: 1762
components:
- type: Transform
- pos: 0.5,-4.5
+ pos: -0.5,34.5
parent: 1
- - uid: 1395
+- proto: BlastDoor
+ entities:
+ - uid: 1672
components:
- type: Transform
- pos: -0.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,39.5
parent: 1
- - uid: 1396
+ - type: DeviceLinkSink
+ links:
+ - 1640
+ - uid: 1677
components:
- type: Transform
- pos: -1.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,39.5
parent: 1
- - uid: 1397
+ - type: DeviceLinkSink
+ links:
+ - 1640
+ - uid: 1734
components:
- type: Transform
- pos: -2.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,39.5
parent: 1
- - uid: 1398
+ - type: DeviceLinkSink
+ links:
+ - 1640
+ - uid: 1838
components:
- type: Transform
- pos: -3.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,39.5
parent: 1
- - uid: 1399
+ - type: DeviceLinkSink
+ links:
+ - 1640
+- proto: BlastDoorOpen
+ entities:
+ - uid: 313
components:
- type: Transform
- pos: -4.5,-4.5
+ pos: 10.5,9.5
parent: 1
- - uid: 1400
+ - type: DeviceLinkSink
+ links:
+ - 671
+ - uid: 318
components:
- type: Transform
- pos: -5.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
parent: 1
- - uid: 1401
+ - type: DeviceLinkSink
+ links:
+ - 173
+ - uid: 329
components:
- type: Transform
- pos: -6.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-5.5
parent: 1
- - uid: 1402
+ - type: DeviceLinkSink
+ links:
+ - 770
+ - uid: 330
components:
- type: Transform
- pos: -7.5,-4.5
+ pos: 10.5,6.5
parent: 1
- - uid: 1403
+ - type: DeviceLinkSink
+ links:
+ - 667
+ - uid: 337
components:
- type: Transform
- pos: -8.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,5.5
parent: 1
- - uid: 1404
+ - type: DeviceLinkSink
+ links:
+ - 750
+ - uid: 341
components:
- type: Transform
- pos: -9.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
parent: 1
- - uid: 1405
+ - type: DeviceLinkSink
+ links:
+ - 859
+ - uid: 344
components:
- type: Transform
- pos: -10.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,2.5
parent: 1
- - uid: 1406
+ - type: DeviceLinkSink
+ links:
+ - 859
+ - uid: 349
components:
- type: Transform
- pos: -11.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
parent: 1
- - uid: 1407
+ - type: DeviceLinkSink
+ links:
+ - 859
+ - uid: 350
components:
- type: Transform
- pos: -12.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,2.5
parent: 1
- - uid: 1408
+ - type: DeviceLinkSink
+ links:
+ - 859
+ - uid: 351
components:
- type: Transform
- pos: -13.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,2.5
parent: 1
- - uid: 1409
+ - type: DeviceLinkSink
+ links:
+ - 859
+ - uid: 352
components:
- type: Transform
- pos: -14.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,2.5
parent: 1
- - uid: 1410
+ - type: DeviceLinkSink
+ links:
+ - 859
+ - uid: 364
components:
- type: Transform
- pos: -15.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
parent: 1
- - uid: 1411
+ - type: DeviceLinkSink
+ links:
+ - 859
+ - uid: 365
components:
- type: Transform
- pos: -16.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,3.5
parent: 1
- - uid: 1412
+ - type: DeviceLinkSink
+ links:
+ - 730
+ - uid: 368
components:
- type: Transform
- pos: -17.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
parent: 1
- - uid: 1413
+ - type: DeviceLinkSink
+ links:
+ - 770
+ - uid: 386
components:
- type: Transform
- pos: -18.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-5.5
parent: 1
- - uid: 1414
+ - type: DeviceLinkSink
+ links:
+ - 770
+ - uid: 390
components:
- type: Transform
- pos: -19.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
parent: 1
- - uid: 1415
+ - type: DeviceLinkSink
+ links:
+ - 770
+ - uid: 403
components:
- type: Transform
- pos: -19.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-5.5
parent: 1
- - uid: 1416
+ - type: DeviceLinkSink
+ links:
+ - 770
+ - uid: 428
components:
- type: Transform
- pos: -19.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
parent: 1
- - uid: 1417
+ - type: DeviceLinkSink
+ links:
+ - 770
+ - uid: 429
components:
- type: Transform
- pos: -20.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-5.5
parent: 1
- - uid: 1418
+ - type: DeviceLinkSink
+ links:
+ - 770
+ - uid: 431
components:
- type: Transform
- pos: -21.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,8.5
parent: 1
- - uid: 1419
+ - type: DeviceLinkSink
+ links:
+ - 362
+ - uid: 433
components:
- type: Transform
- pos: -22.5,-6.5
+ pos: 10.5,8.5
parent: 1
- - uid: 1420
+ - type: DeviceLinkSink
+ links:
+ - 671
+ - uid: 438
components:
- type: Transform
- pos: -23.5,-6.5
+ pos: 10.5,5.5
parent: 1
- - uid: 1421
+ - type: DeviceLinkSink
+ links:
+ - 667
+ - uid: 439
components:
- type: Transform
- pos: -24.5,-6.5
+ pos: -4.5,-7.5
parent: 1
- - uid: 1422
+ - type: DeviceLinkSink
+ links:
+ - 947
+ - uid: 442
components:
- type: Transform
- pos: -25.5,-6.5
+ pos: -8.5,-7.5
parent: 1
- - uid: 1423
+ - type: DeviceLinkSink
+ links:
+ - 947
+ - uid: 444
components:
- type: Transform
- pos: -25.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,0.5
parent: 1
- - uid: 1424
+ - type: DeviceLinkSink
+ links:
+ - 948
+ - uid: 449
components:
- type: Transform
- pos: -24.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-3.5
parent: 1
- - uid: 1425
+ - type: DeviceLinkSink
+ links:
+ - 948
+ - uid: 454
components:
- type: Transform
- pos: -23.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-7.5
parent: 1
- - uid: 1426
+ - type: DeviceLinkSink
+ links:
+ - 949
+ - uid: 455
components:
- type: Transform
- pos: -22.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-7.5
parent: 1
- - uid: 1427
+ - type: DeviceLinkSink
+ links:
+ - 949
+ - uid: 639
components:
- type: Transform
- pos: -21.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-3.5
parent: 1
- - uid: 1428
+ - type: DeviceLinkSink
+ links:
+ - 950
+ - uid: 640
components:
- type: Transform
- pos: -21.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,0.5
parent: 1
- - uid: 1429
+ - type: DeviceLinkSink
+ links:
+ - 950
+- proto: Bloodpack
+ entities:
+ - uid: 1877
components:
- type: Transform
- pos: -21.5,-2.5
+ pos: -14.592388,18.943573
parent: 1
- - uid: 1430
+ - uid: 1878
components:
- type: Transform
- pos: -20.5,-2.5
+ pos: -14.363221,18.860239
parent: 1
- - uid: 1431
+- proto: Bonfire
+ entities:
+ - uid: 779
components:
- type: Transform
- pos: -19.5,-2.5
+ pos: -1.5,24.5
parent: 1
- - uid: 1432
+- proto: BoozeDispenser
+ entities:
+ - uid: 90
components:
- type: Transform
- pos: -18.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,5.5
parent: 1
- - uid: 1433
+- proto: BoxCardboard
+ entities:
+ - uid: 1993
components:
- type: Transform
- pos: -17.5,-2.5
+ pos: 0.5249535,4.68744
parent: 1
- - uid: 1434
+- proto: BoxCartridgeBB
+ entities:
+ - uid: 1748
components:
- type: Transform
- pos: -16.5,-2.5
+ pos: 23.40793,24.519094
parent: 1
- - uid: 1435
+- proto: BoxDarts
+ entities:
+ - uid: 1751
components:
- type: Transform
- pos: -15.5,-2.5
+ pos: -11.828638,30.224789
parent: 1
- - uid: 1436
+- proto: BoxDonkSoftBox
+ entities:
+ - uid: 1753
components:
- type: Transform
- pos: -14.5,-2.5
+ pos: 22.798862,20.227777
parent: 1
- - uid: 1437
+- proto: BoxHandcuff
+ entities:
+ - uid: 1874
components:
- type: Transform
- pos: -13.5,-2.5
+ pos: -14.498638,18.214405
parent: 1
- - uid: 1438
+- proto: BoxLightMixed
+ entities:
+ - uid: 2050
components:
- type: Transform
- pos: -12.5,-2.5
+ pos: -6.5784426,7.7413363
parent: 1
- - uid: 1439
+- proto: BoxMRE
+ entities:
+ - uid: 1136
components:
- type: Transform
- pos: -11.5,-2.5
+ pos: -3.6354046,8.857361
parent: 1
- - uid: 1440
+ - uid: 1137
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: -3.3854048,8.732361
parent: 1
- - uid: 1441
+- proto: BrokenBottle
+ entities:
+ - uid: 1127
components:
- type: Transform
- pos: -9.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -3.3516002,22.561167
parent: 1
- - uid: 1442
+- proto: Bucket
+ entities:
+ - uid: 17
components:
- type: Transform
- pos: -8.5,-2.5
+ pos: -3.4331908,7.0847335
parent: 1
- - uid: 1443
+ - uid: 1070
components:
- type: Transform
- pos: -7.5,-2.5
+ pos: -3.6727743,7.15765
parent: 1
- - uid: 1444
+ - uid: 1073
components:
- type: Transform
- pos: -6.5,-2.5
+ pos: -3.2248573,7.1680665
parent: 1
- - uid: 1445
+ - uid: 2028
components:
- type: Transform
- pos: -5.5,-2.5
+ pos: 14.837379,14.703768
parent: 1
- - uid: 1446
+- proto: ButchCleaver
+ entities:
+ - uid: 235
components:
- type: Transform
- pos: -4.5,-2.5
+ pos: 2.4287968,5.620631
parent: 1
- - uid: 1447
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 1707
components:
- type: Transform
- pos: -3.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,38.5
parent: 1
- - uid: 1448
+ - uid: 1740
components:
- type: Transform
- pos: -2.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,3.5
parent: 1
- - uid: 1449
+ - uid: 1741
components:
- type: Transform
- pos: -1.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
parent: 1
- - uid: 1450
+ - uid: 1742
components:
- type: Transform
- pos: -0.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,4.5
parent: 1
- - uid: 1451
+ - uid: 1743
components:
- type: Transform
- pos: 0.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-5.5
parent: 1
- - uid: 1452
+- proto: ButtonFrameExit
+ entities:
+ - uid: 1746
components:
- type: Transform
- pos: 1.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,6.5
parent: 1
- - uid: 1453
+ - uid: 1747
components:
- type: Transform
- pos: 2.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,9.5
parent: 1
- - uid: 1454
+- proto: ButtonFrameGrey
+ entities:
+ - uid: 1744
components:
- type: Transform
- pos: 3.5,-2.5
+ pos: 9.5,7.5
parent: 1
- - uid: 1455
+ - uid: 1745
components:
- type: Transform
- pos: -0.5,-1.5
+ pos: 9.5,10.5
parent: 1
- - uid: 1456
+- proto: CableApcExtension
+ entities:
+ - uid: 13
components:
- type: Transform
- pos: -7.5,-5.5
+ pos: -4.5,-3.5
parent: 1
- - uid: 1562
+ - uid: 20
components:
- type: Transform
- pos: 2.5,-20.5
+ pos: -6.5,-4.5
parent: 1
- - uid: 1563
+ - uid: 21
components:
- type: Transform
- pos: 3.5,-20.5
+ pos: -10.5,-1.5
parent: 1
- - uid: 1564
+ - uid: 22
components:
- type: Transform
- pos: 4.5,-20.5
+ pos: -6.5,-3.5
parent: 1
- - uid: 1565
+ - uid: 24
components:
- type: Transform
- pos: 4.5,-21.5
+ pos: -5.5,-3.5
parent: 1
- - uid: 1566
+ - uid: 74
components:
- type: Transform
- pos: 4.5,-22.5
+ pos: 2.5,7.5
parent: 1
- - uid: 1567
+ - uid: 80
components:
- type: Transform
- pos: 4.5,-23.5
+ pos: -3.5,10.5
parent: 1
- - uid: 1568
+ - uid: 86
components:
- type: Transform
- pos: 4.5,-24.5
+ pos: -2.5,9.5
parent: 1
- - uid: 1569
+ - uid: 94
components:
- type: Transform
- pos: 4.5,-25.5
+ pos: -2.5,10.5
parent: 1
- - uid: 1570
+ - uid: 120
components:
- type: Transform
- pos: 4.5,-26.5
+ pos: -0.5,12.5
parent: 1
- - uid: 1571
+ - uid: 153
components:
- type: Transform
- pos: 2.5,-26.5
+ pos: -4.5,5.5
parent: 1
- - uid: 1572
+ - uid: 155
components:
- type: Transform
- pos: 2.5,-25.5
+ pos: -0.5,4.5
parent: 1
- - uid: 1573
+ - uid: 161
components:
- type: Transform
- pos: 2.5,-24.5
+ pos: -0.5,7.5
parent: 1
- - uid: 1574
+ - uid: 163
components:
- type: Transform
- pos: 2.5,-23.5
+ pos: 3.5,7.5
parent: 1
- - uid: 1575
+ - uid: 168
components:
- type: Transform
- pos: 2.5,-22.5
+ pos: -5.5,9.5
parent: 1
- - uid: 1576
+ - uid: 175
components:
- type: Transform
- pos: 2.5,-21.5
+ pos: 6.5,8.5
parent: 1
- - uid: 1577
+ - uid: 185
components:
- type: Transform
- pos: -27.5,-4.5
+ pos: -3.5,-3.5
parent: 1
- - uid: 1578
+ - uid: 199
components:
- type: Transform
- pos: -27.5,-5.5
+ pos: 0.5,7.5
parent: 1
- - uid: 1579
+ - uid: 208
components:
- type: Transform
- pos: -27.5,-6.5
+ pos: 5.5,8.5
parent: 1
- - uid: 1580
+ - uid: 211
components:
- type: Transform
- pos: -28.5,-6.5
+ pos: 8.5,11.5
parent: 1
- - uid: 1581
+ - uid: 214
components:
- type: Transform
- pos: -29.5,-6.5
+ pos: 7.5,11.5
parent: 1
- - uid: 1582
+ - uid: 216
components:
- type: Transform
- pos: -30.5,-6.5
+ pos: -4.5,13.5
parent: 1
- - uid: 1583
+ - uid: 217
components:
- type: Transform
- pos: -31.5,-6.5
+ pos: -4.5,12.5
parent: 1
- - uid: 1584
+ - uid: 285
components:
- type: Transform
- pos: -32.5,-6.5
+ pos: -6.5,4.5
parent: 1
- - uid: 1585
+ - uid: 293
components:
- type: Transform
- pos: -33.5,-6.5
+ pos: -9.5,-1.5
parent: 1
- - uid: 1586
+ - uid: 295
components:
- type: Transform
- pos: -33.5,-4.5
+ pos: -6.5,-5.5
parent: 1
- - uid: 1587
+ - uid: 332
components:
- type: Transform
- pos: -32.5,-4.5
+ pos: -3.5,14.5
parent: 1
- - uid: 1588
+ - uid: 335
components:
- type: Transform
- pos: -31.5,-4.5
+ pos: -4.5,14.5
parent: 1
- - uid: 1589
+ - uid: 342
components:
- type: Transform
- pos: -30.5,-4.5
+ pos: -2.5,14.5
parent: 1
- - uid: 1590
+ - uid: 348
components:
- type: Transform
- pos: -29.5,-4.5
+ pos: -2.5,-3.5
parent: 1
- - uid: 1591
+ - uid: 388
components:
- type: Transform
- pos: -28.5,-4.5
+ pos: 3.5,-3.5
parent: 1
- - uid: 1596
+ - uid: 391
components:
- type: Transform
- pos: -7.5,-6.5
+ pos: -5.5,4.5
parent: 1
- - uid: 1597
+ - uid: 408
components:
- type: Transform
- pos: -6.5,-6.5
+ pos: -7.5,4.5
parent: 1
- - uid: 1598
+ - uid: 409
components:
- type: Transform
- pos: -5.5,-6.5
+ pos: -3.5,12.5
parent: 1
- - uid: 1599
+ - uid: 430
components:
- type: Transform
- pos: -4.5,-6.5
+ pos: -6.5,-6.5
parent: 1
- - uid: 1600
+ - uid: 434
components:
- type: Transform
- pos: -3.5,-6.5
+ pos: 5.5,14.5
parent: 1
- - uid: 1601
+ - uid: 443
components:
- type: Transform
- pos: -2.5,-6.5
+ pos: 4.5,14.5
parent: 1
- - uid: 1602
+ - uid: 451
components:
- type: Transform
- pos: -1.5,-6.5
+ pos: -4.5,6.5
parent: 1
- - uid: 1603
+ - uid: 458
components:
- type: Transform
- pos: -1.5,-7.5
+ pos: -4.5,7.5
parent: 1
- - uid: 1604
+ - uid: 459
components:
- type: Transform
- pos: -1.5,-8.5
+ pos: -4.5,8.5
parent: 1
- - uid: 1605
+ - uid: 460
components:
- type: Transform
- pos: -1.5,-9.5
+ pos: -4.5,9.5
parent: 1
- - uid: 1606
+ - uid: 461
components:
- type: Transform
- pos: -1.5,-10.5
+ pos: -4.5,10.5
parent: 1
- - uid: 1607
+ - uid: 462
components:
- type: Transform
- pos: -1.5,-11.5
+ pos: -4.5,11.5
parent: 1
- - uid: 1608
+ - uid: 463
components:
- type: Transform
- pos: -1.5,-12.5
+ pos: -2.5,12.5
parent: 1
- - uid: 1609
+ - uid: 464
components:
- type: Transform
- pos: -1.5,-13.5
+ pos: -1.5,12.5
parent: 1
- - uid: 1610
+ - uid: 467
components:
- type: Transform
- pos: -2.5,-13.5
+ pos: 0.5,9.5
parent: 1
- - uid: 1611
+ - uid: 469
components:
- type: Transform
- pos: -3.5,-13.5
+ pos: 0.5,8.5
parent: 1
- - uid: 1612
+ - uid: 472
components:
- type: Transform
- pos: -4.5,-13.5
+ pos: 3.5,8.5
parent: 1
- - uid: 1613
+ - uid: 476
components:
- type: Transform
- pos: -5.5,-13.5
+ pos: 3.5,11.5
parent: 1
- - uid: 1614
+ - uid: 477
components:
- type: Transform
- pos: -6.5,-13.5
+ pos: 1.5,7.5
parent: 1
- - uid: 1615
+ - uid: 478
components:
- type: Transform
- pos: -7.5,-13.5
+ pos: 1.5,6.5
parent: 1
- - uid: 1616
+ - uid: 479
components:
- type: Transform
- pos: -7.5,-12.5
+ pos: 1.5,5.5
parent: 1
- - uid: 1617
+ - uid: 480
components:
- type: Transform
- pos: -7.5,-11.5
+ pos: 1.5,4.5
parent: 1
- - uid: 1618
+ - uid: 481
components:
- type: Transform
- pos: -7.5,-10.5
+ pos: 0.5,4.5
parent: 1
- - uid: 1619
+ - uid: 482
components:
- type: Transform
- pos: -7.5,-9.5
+ pos: 2.5,4.5
parent: 1
- - uid: 1620
+ - uid: 483
components:
- type: Transform
- pos: -8.5,-9.5
+ pos: 3.5,4.5
parent: 1
- - uid: 1621
+ - uid: 491
components:
- type: Transform
- pos: -9.5,-9.5
+ pos: 8.5,8.5
parent: 1
- - uid: 1622
+ - uid: 492
components:
- type: Transform
- pos: -10.5,-9.5
+ pos: 8.5,5.5
parent: 1
- - uid: 1623
+ - uid: 494
components:
- type: Transform
- pos: -11.5,-9.5
+ pos: 7.5,8.5
parent: 1
- - uid: 1624
+ - uid: 495
components:
- type: Transform
- pos: -12.5,-9.5
+ pos: 7.5,7.5
parent: 1
- - uid: 1625
+ - uid: 496
components:
- type: Transform
- pos: -12.5,-8.5
+ pos: 7.5,6.5
parent: 1
- - uid: 1626
+ - uid: 497
components:
- type: Transform
- pos: -12.5,-7.5
+ pos: 7.5,5.5
parent: 1
- - uid: 1627
+ - uid: 500
components:
- type: Transform
- pos: -12.5,-6.5
+ pos: 7.5,0.5
parent: 1
- - uid: 1628
+ - uid: 501
components:
- type: Transform
- pos: -11.5,-6.5
+ pos: 6.5,0.5
parent: 1
- - uid: 1629
+ - uid: 504
components:
- type: Transform
- pos: -10.5,-6.5
+ pos: 5.5,0.5
parent: 1
- - uid: 1630
+ - uid: 505
components:
- type: Transform
- pos: -9.5,-6.5
+ pos: 4.5,0.5
parent: 1
- - uid: 1631
+ - uid: 506
components:
- type: Transform
- pos: -8.5,-6.5
+ pos: 3.5,0.5
parent: 1
- - uid: 1902
+ - uid: 507
components:
- type: Transform
- pos: 8.5,-5.5
+ pos: 2.5,0.5
parent: 1
- - uid: 1903
+ - uid: 508
components:
- type: Transform
- pos: 9.5,-5.5
+ pos: 1.5,0.5
parent: 1
- - uid: 1904
+ - uid: 509
components:
- type: Transform
- pos: 10.5,-5.5
+ pos: 0.5,0.5
parent: 1
- - uid: 1988
+ - uid: 510
components:
- type: Transform
- pos: -0.5,4.5
+ pos: -0.5,0.5
parent: 1
- - uid: 1989
+ - uid: 511
components:
- type: Transform
- pos: -0.5,5.5
+ pos: -1.5,0.5
parent: 1
- - uid: 1990
+ - uid: 512
components:
- type: Transform
- pos: -0.5,6.5
+ pos: -2.5,0.5
parent: 1
- - uid: 1991
+ - uid: 513
components:
- type: Transform
- pos: -0.5,7.5
+ pos: -3.5,0.5
parent: 1
- - uid: 1992
+ - uid: 514
components:
- type: Transform
- pos: -1.5,7.5
+ pos: -4.5,0.5
parent: 1
-- proto: CableHV
- entities:
- - uid: 1310
+ - uid: 515
components:
- type: Transform
- pos: 4.5,-0.5
+ pos: -5.5,0.5
parent: 1
- - uid: 1311
+ - uid: 516
components:
- type: Transform
- pos: 4.5,0.5
+ pos: -6.5,0.5
parent: 1
- - uid: 1312
+ - uid: 517
components:
- type: Transform
- pos: 4.5,1.5
+ pos: -7.5,0.5
parent: 1
- - uid: 1314
+ - uid: 523
components:
- type: Transform
- pos: 4.5,2.5
+ pos: 7.5,-5.5
parent: 1
- - uid: 1315
+ - uid: 524
components:
- type: Transform
- pos: 4.5,3.5
+ pos: 11.5,-1.5
parent: 1
- - uid: 1732
+ - uid: 553
components:
- type: Transform
- pos: 5.5,1.5
+ pos: 10.5,-1.5
parent: 1
- - uid: 1738
+ - uid: 554
components:
- type: Transform
- pos: 7.5,1.5
+ pos: 7.5,-6.5
parent: 1
- - uid: 1739
+ - uid: 579
components:
- type: Transform
- pos: 6.5,1.5
+ pos: 8.5,12.5
parent: 1
-- proto: CableMV
- entities:
- - uid: 1316
+ - uid: 580
components:
- type: Transform
- pos: 4.5,3.5
+ pos: 8.5,13.5
parent: 1
- - uid: 1317
+ - uid: 592
components:
- type: Transform
- pos: 4.5,2.5
+ pos: 9.5,2.5
parent: 1
- - uid: 1318
+ - uid: 612
components:
- type: Transform
- pos: 5.5,2.5
+ pos: -7.5,-0.5
parent: 1
- - uid: 1319
+ - uid: 613
components:
- type: Transform
- pos: 5.5,1.5
+ pos: -7.5,-1.5
parent: 1
- - uid: 1320
+ - uid: 614
components:
- type: Transform
- pos: 5.5,0.5
+ pos: -8.5,-1.5
parent: 1
- - uid: 1321
+ - uid: 615
components:
- type: Transform
- pos: 5.5,-0.5
+ pos: -7.5,-2.5
parent: 1
- - uid: 1322
+ - uid: 616
components:
- type: Transform
- pos: 5.5,-1.5
+ pos: -7.5,-3.5
parent: 1
- - uid: 1323
+ - uid: 618
components:
- type: Transform
- pos: 5.5,-2.5
+ pos: 8.5,0.5
parent: 1
- - uid: 1324
+ - uid: 619
components:
- type: Transform
- pos: 3.5,2.5
+ pos: 8.5,-0.5
parent: 1
- - uid: 1325
+ - uid: 620
components:
- type: Transform
- pos: 3.5,1.5
+ pos: 8.5,-1.5
parent: 1
- - uid: 1457
+ - uid: 621
components:
- type: Transform
- pos: 4.5,-2.5
+ pos: 8.5,-2.5
parent: 1
- - uid: 1458
+ - uid: 622
components:
- type: Transform
- pos: 4.5,-3.5
+ pos: 8.5,-3.5
parent: 1
- - uid: 1459
+ - uid: 624
components:
- type: Transform
- pos: 4.5,-4.5
+ pos: 9.5,-1.5
parent: 1
- - uid: 1460
+ - uid: 648
components:
- type: Transform
- pos: 4.5,-5.5
+ pos: -4.5,4.5
parent: 1
- - uid: 1461
+ - uid: 654
components:
- type: Transform
- pos: 4.5,-6.5
+ pos: 8.5,14.5
parent: 1
- - uid: 1462
+ - uid: 658
components:
- type: Transform
- pos: 4.5,-7.5
+ pos: 9.5,1.5
parent: 1
- - uid: 1463
+ - uid: 715
components:
- type: Transform
- pos: 4.5,-8.5
+ pos: 9.5,0.5
parent: 1
- - uid: 1464
+ - uid: 719
components:
- type: Transform
- pos: 4.5,-9.5
+ pos: -0.5,-3.5
parent: 1
- - uid: 1465
+ - uid: 733
components:
- type: Transform
- pos: 4.5,-10.5
+ pos: 7.5,-4.5
parent: 1
- - uid: 1466
+ - uid: 747
components:
- type: Transform
- pos: 4.5,-11.5
+ pos: 0.5,-3.5
parent: 1
- - uid: 1467
+ - uid: 796
components:
- type: Transform
- pos: 4.5,-12.5
+ pos: 5.5,-3.5
parent: 1
- - uid: 1468
+ - uid: 797
components:
- type: Transform
- pos: 4.5,-13.5
+ pos: 4.5,-3.5
parent: 1
- - uid: 1469
+ - uid: 798
components:
- type: Transform
- pos: 4.5,-14.5
+ pos: 7.5,-3.5
parent: 1
- - uid: 1470
+ - uid: 799
components:
- type: Transform
- pos: 4.5,-15.5
+ pos: 6.5,-3.5
parent: 1
- - uid: 1471
+ - uid: 812
components:
- type: Transform
- pos: 4.5,-16.5
+ pos: 7.5,14.5
parent: 1
- - uid: 1472
+ - uid: 835
components:
- type: Transform
- pos: 4.5,-17.5
+ pos: 2.5,-3.5
parent: 1
- - uid: 1473
+ - uid: 836
components:
- type: Transform
- pos: 4.5,-18.5
+ pos: -1.5,-3.5
parent: 1
- - uid: 1474
+ - uid: 837
components:
- type: Transform
- pos: 4.5,-19.5
+ pos: 1.5,-3.5
parent: 1
- - uid: 1475
+ - uid: 875
components:
- type: Transform
- pos: 4.5,-20.5
+ pos: -1.5,14.5
parent: 1
- - uid: 1476
+ - uid: 876
components:
- type: Transform
- pos: 3.5,-20.5
+ pos: -0.5,14.5
parent: 1
- - uid: 1477
+ - uid: 877
components:
- type: Transform
- pos: 2.5,-20.5
+ pos: -6.5,9.5
parent: 1
- - uid: 1478
+ - uid: 878
components:
- type: Transform
- pos: 2.5,-19.5
+ pos: -7.5,9.5
parent: 1
- - uid: 1479
+ - uid: 898
components:
- type: Transform
- pos: 2.5,-18.5
+ pos: 6.5,14.5
parent: 1
- - uid: 1480
- components:
- - type: Transform
- pos: 2.5,-17.5
- parent: 1
- - uid: 1481
+ - uid: 899
components:
- type: Transform
- pos: 2.5,-16.5
+ pos: 3.5,14.5
parent: 1
- - uid: 1482
+ - uid: 1004
components:
- type: Transform
- pos: 2.5,-15.5
+ pos: 6.5,9.5
parent: 1
- - uid: 1483
+ - uid: 1005
components:
- type: Transform
- pos: 2.5,-14.5
+ pos: 6.5,10.5
parent: 1
- - uid: 1484
+ - uid: 1006
components:
- type: Transform
- pos: 2.5,-13.5
+ pos: 6.5,11.5
parent: 1
- - uid: 1485
+ - uid: 1074
components:
- type: Transform
- pos: 2.5,-12.5
+ pos: 3.5,9.5
parent: 1
- - uid: 1486
+ - uid: 1075
components:
- type: Transform
- pos: 2.5,-11.5
+ pos: 3.5,10.5
parent: 1
- - uid: 1487
+ - uid: 1187
components:
- type: Transform
- pos: 2.5,-10.5
+ pos: -17.5,29.5
parent: 1
- - uid: 1488
+ - uid: 1238
components:
- type: Transform
- pos: 2.5,-9.5
+ pos: 14.5,32.5
parent: 1
- - uid: 1489
+ - uid: 1295
components:
- type: Transform
- pos: 2.5,-8.5
+ pos: 2.5,31.5
parent: 1
- - uid: 1490
+ - uid: 1305
components:
- type: Transform
- pos: 2.5,-7.5
+ pos: 11.5,28.5
parent: 1
- - uid: 1491
+ - uid: 1306
components:
- type: Transform
- pos: 2.5,-6.5
+ pos: 12.5,22.5
parent: 1
- - uid: 1492
+ - uid: 1417
components:
- type: Transform
- pos: 2.5,-5.5
+ pos: -15.5,32.5
parent: 1
- - uid: 1493
+ - uid: 1418
components:
- type: Transform
- pos: 2.5,-4.5
+ pos: -16.5,31.5
parent: 1
- uid: 1494
components:
- type: Transform
- pos: 1.5,-4.5
+ pos: 9.5,12.5
parent: 1
- uid: 1495
components:
- type: Transform
- pos: 0.5,-4.5
+ pos: 10.5,12.5
parent: 1
- uid: 1496
components:
- type: Transform
- pos: -0.5,-4.5
+ pos: 11.5,12.5
parent: 1
- uid: 1497
components:
- type: Transform
- pos: -1.5,-4.5
+ pos: 12.5,12.5
parent: 1
- uid: 1498
components:
- type: Transform
- pos: -2.5,-4.5
+ pos: 13.5,12.5
parent: 1
- uid: 1499
components:
- type: Transform
- pos: -3.5,-4.5
+ pos: 14.5,12.5
parent: 1
- uid: 1500
components:
- type: Transform
- pos: -4.5,-4.5
+ pos: 15.5,12.5
parent: 1
- uid: 1501
components:
- type: Transform
- pos: -5.5,-4.5
+ pos: 16.5,12.5
parent: 1
- uid: 1502
components:
- type: Transform
- pos: -6.5,-4.5
+ pos: 17.5,12.5
parent: 1
- uid: 1503
components:
- type: Transform
- pos: -7.5,-4.5
+ pos: 17.5,13.5
parent: 1
- uid: 1504
components:
- type: Transform
- pos: -7.5,-5.5
+ pos: 17.5,14.5
parent: 1
- uid: 1505
components:
- type: Transform
- pos: -8.5,-4.5
+ pos: 17.5,15.5
parent: 1
- uid: 1506
components:
- type: Transform
- pos: -9.5,-4.5
+ pos: 17.5,16.5
parent: 1
- uid: 1507
components:
- type: Transform
- pos: -10.5,-4.5
+ pos: 17.5,17.5
parent: 1
- uid: 1508
components:
- type: Transform
- pos: -11.5,-4.5
+ pos: 17.5,18.5
parent: 1
- uid: 1509
components:
- type: Transform
- pos: -12.5,-4.5
+ pos: 16.5,18.5
parent: 1
- uid: 1510
components:
- type: Transform
- pos: -13.5,-4.5
+ pos: 15.5,18.5
parent: 1
- uid: 1511
components:
- type: Transform
- pos: -14.5,-4.5
+ pos: 14.5,18.5
parent: 1
- uid: 1512
components:
- type: Transform
- pos: -15.5,-4.5
+ pos: 13.5,18.5
parent: 1
- uid: 1513
components:
- type: Transform
- pos: -16.5,-4.5
+ pos: 12.5,18.5
parent: 1
- uid: 1514
components:
- type: Transform
- pos: -17.5,-4.5
+ pos: 11.5,18.5
parent: 1
- uid: 1515
components:
- type: Transform
- pos: -18.5,-4.5
+ pos: 11.5,19.5
parent: 1
- uid: 1516
components:
- type: Transform
- pos: -19.5,-4.5
+ pos: 11.5,20.5
parent: 1
- uid: 1517
components:
- type: Transform
- pos: -19.5,-5.5
+ pos: 11.5,21.5
parent: 1
- uid: 1518
components:
- type: Transform
- pos: -19.5,-6.5
+ pos: 11.5,22.5
parent: 1
- uid: 1519
components:
- type: Transform
- pos: -20.5,-6.5
+ pos: 11.5,23.5
parent: 1
- uid: 1520
components:
- type: Transform
- pos: -21.5,-6.5
+ pos: 11.5,24.5
parent: 1
- uid: 1521
components:
- type: Transform
- pos: -22.5,-6.5
+ pos: 11.5,25.5
parent: 1
- uid: 1522
components:
- type: Transform
- pos: -23.5,-6.5
+ pos: 11.5,26.5
parent: 1
- uid: 1523
components:
- type: Transform
- pos: -24.5,-6.5
+ pos: 11.5,27.5
parent: 1
- uid: 1524
components:
- type: Transform
- pos: -25.5,-6.5
+ pos: 2.5,30.5
parent: 1
- - uid: 1525
+ - uid: 1527
components:
- type: Transform
- pos: -26.5,-6.5
+ pos: -17.5,30.5
parent: 1
- - uid: 1526
+ - uid: 1540
components:
- type: Transform
- pos: -27.5,-6.5
+ pos: 13.5,22.5
parent: 1
- - uid: 1527
+ - uid: 1541
components:
- type: Transform
- pos: -27.5,-5.5
+ pos: 14.5,22.5
parent: 1
- - uid: 1528
+ - uid: 1542
components:
- type: Transform
- pos: -27.5,-4.5
+ pos: 15.5,22.5
parent: 1
- - uid: 1529
+ - uid: 1543
components:
- type: Transform
- pos: -26.5,-4.5
+ pos: 16.5,22.5
parent: 1
- - uid: 1530
+ - uid: 1544
components:
- type: Transform
- pos: -25.5,-4.5
+ pos: 17.5,22.5
parent: 1
- - uid: 1531
+ - uid: 1545
components:
- type: Transform
- pos: -24.5,-4.5
+ pos: 18.5,22.5
parent: 1
- - uid: 1532
+ - uid: 1546
components:
- type: Transform
- pos: -23.5,-4.5
+ pos: 19.5,22.5
parent: 1
- - uid: 1533
+ - uid: 1547
components:
- type: Transform
- pos: -22.5,-4.5
+ pos: 20.5,22.5
parent: 1
- - uid: 1534
+ - uid: 1548
components:
- type: Transform
- pos: -21.5,-4.5
+ pos: 21.5,22.5
parent: 1
- - uid: 1535
+ - uid: 1549
components:
- type: Transform
- pos: -21.5,-3.5
+ pos: 22.5,22.5
parent: 1
- - uid: 1536
+ - uid: 1550
components:
- type: Transform
- pos: -21.5,-2.5
+ pos: 23.5,22.5
parent: 1
- - uid: 1537
+ - uid: 1551
components:
- type: Transform
- pos: -20.5,-2.5
+ pos: 24.5,22.5
parent: 1
- - uid: 1538
+ - uid: 1552
components:
- type: Transform
- pos: -19.5,-2.5
+ pos: 24.5,21.5
parent: 1
- - uid: 1539
+ - uid: 1553
components:
- type: Transform
- pos: -18.5,-2.5
+ pos: 24.5,23.5
parent: 1
- - uid: 1540
+ - uid: 1554
components:
- type: Transform
- pos: -17.5,-2.5
+ pos: -16.5,30.5
parent: 1
- - uid: 1541
+ - uid: 1625
components:
- type: Transform
- pos: -16.5,-2.5
+ pos: -16.5,32.5
parent: 1
- - uid: 1542
+ - uid: 1690
components:
- type: Transform
- pos: -15.5,-2.5
+ pos: 15.5,28.5
parent: 1
- - uid: 1543
+ - uid: 1691
components:
- type: Transform
- pos: -14.5,-2.5
+ pos: 15.5,31.5
parent: 1
- - uid: 1544
+ - uid: 1692
components:
- type: Transform
- pos: -13.5,-2.5
+ pos: 16.5,31.5
parent: 1
- - uid: 1545
+ - uid: 1693
components:
- type: Transform
- pos: -12.5,-2.5
+ pos: 13.5,28.5
parent: 1
- - uid: 1546
+ - uid: 1768
components:
- type: Transform
- pos: -11.5,-2.5
+ pos: 3.5,30.5
parent: 1
- - uid: 1547
+ - uid: 1769
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: 4.5,30.5
parent: 1
- - uid: 1548
+ - uid: 1770
components:
- type: Transform
- pos: -9.5,-2.5
+ pos: 5.5,30.5
parent: 1
- - uid: 1549
+ - uid: 1771
components:
- type: Transform
- pos: -8.5,-2.5
+ pos: 15.5,32.5
parent: 1
- - uid: 1550
+ - uid: 1772
components:
- type: Transform
- pos: -7.5,-2.5
+ pos: 16.5,29.5
parent: 1
- - uid: 1551
+ - uid: 1773
components:
- type: Transform
- pos: -6.5,-2.5
+ pos: 12.5,28.5
parent: 1
- - uid: 1552
+ - uid: 1774
components:
- type: Transform
- pos: -5.5,-2.5
+ pos: 16.5,28.5
parent: 1
- - uid: 1553
+ - uid: 1775
components:
- type: Transform
- pos: -4.5,-2.5
+ pos: 2.5,32.5
parent: 1
- - uid: 1554
+ - uid: 1776
components:
- type: Transform
- pos: -3.5,-2.5
+ pos: 1.5,32.5
parent: 1
- - uid: 1555
+ - uid: 1777
components:
- type: Transform
- pos: -2.5,-2.5
+ pos: 1.5,33.5
parent: 1
- - uid: 1556
+ - uid: 1778
components:
- type: Transform
- pos: -1.5,-2.5
+ pos: 0.5,33.5
parent: 1
- - uid: 1557
+ - uid: 1779
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: 0.5,34.5
parent: 1
- - uid: 1558
+ - uid: 1780
components:
- type: Transform
- pos: 0.5,-2.5
+ pos: 0.5,35.5
parent: 1
- - uid: 1559
+ - uid: 1781
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: 0.5,36.5
parent: 1
- - uid: 1560
+ - uid: 1782
components:
- type: Transform
- pos: 2.5,-2.5
+ pos: -0.5,36.5
parent: 1
- - uid: 1561
+ - uid: 1783
components:
- type: Transform
- pos: 3.5,-2.5
+ pos: -1.5,36.5
parent: 1
-- proto: CableTerminal
- entities:
- - uid: 1993
+ - uid: 1784
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,1.5
+ pos: -2.5,36.5
parent: 1
-- proto: CannonBall
- entities:
- - uid: 1671
+ - uid: 1785
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5590277,3.5358868
+ pos: -3.5,36.5
parent: 1
- - uid: 1998
+ - uid: 1786
components:
- type: Transform
- pos: -8.796216,-0.5835842
+ pos: -4.5,36.5
parent: 1
- - uid: 1999
+ - uid: 1787
components:
- type: Transform
- pos: -8.858716,-0.3492092
+ pos: -5.5,36.5
parent: 1
- - uid: 2000
+ - uid: 1788
components:
- type: Transform
- pos: -8.624341,-0.3804592
+ pos: -6.5,36.5
parent: 1
- - uid: 2005
+ - uid: 1789
components:
- type: Transform
- pos: -8.093091,-0.5835842
+ pos: -6.5,35.5
parent: 1
-- proto: CannonBallGlassshot
- entities:
- - uid: 2001
+ - uid: 1790
components:
- type: Transform
- pos: -8.358716,-0.5679592
+ pos: -6.5,34.5
parent: 1
- - uid: 2002
+ - uid: 1791
components:
- type: Transform
- pos: -8.155591,-0.2710842
+ pos: -6.5,33.5
parent: 1
-- proto: CannonBallGrapeshot
- entities:
- - uid: 2003
+ - uid: 1792
components:
- type: Transform
- pos: -8.624341,-0.17733419
+ pos: -7.5,33.5
parent: 1
- - uid: 2004
+ - uid: 1793
components:
- type: Transform
- pos: -8.889966,-0.4585842
+ pos: -8.5,33.5
parent: 1
-- proto: CarpetBlack
- entities:
- - uid: 1824
+ - uid: 1794
components:
- type: Transform
- pos: -5.5,-7.5
+ pos: -8.5,32.5
parent: 1
- - uid: 1825
+ - uid: 1795
components:
- type: Transform
- pos: -5.5,-8.5
+ pos: -9.5,32.5
parent: 1
- - uid: 1826
+ - uid: 1796
components:
- type: Transform
- pos: -5.5,-9.5
+ pos: -10.5,32.5
parent: 1
- - uid: 1827
+ - uid: 1797
components:
- type: Transform
- pos: -3.5,-7.5
+ pos: -11.5,32.5
parent: 1
- - uid: 1828
+ - uid: 1798
components:
- type: Transform
- pos: -3.5,-8.5
+ pos: -12.5,32.5
parent: 1
- - uid: 1829
+ - uid: 1799
+ components:
+ - type: Transform
+ pos: -13.5,32.5
+ parent: 1
+ - uid: 1800
+ components:
+ - type: Transform
+ pos: -14.5,32.5
+ parent: 1
+ - uid: 1803
+ components:
+ - type: Transform
+ pos: 16.5,30.5
+ parent: 1
+ - uid: 1806
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 1
+ - uid: 1876
+ components:
+ - type: Transform
+ pos: 13.5,32.5
+ parent: 1
+ - uid: 1881
+ components:
+ - type: Transform
+ pos: -17.5,28.5
+ parent: 1
+ - uid: 1882
components:
- type: Transform
- pos: -3.5,-9.5
+ pos: -17.5,27.5
parent: 1
- uid: 1883
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,0.5
+ pos: -17.5,26.5
parent: 1
- uid: 1884
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,1.5
+ pos: -17.5,25.5
parent: 1
- uid: 1885
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,0.5
+ pos: -17.5,24.5
parent: 1
- uid: 1886
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,1.5
+ pos: -17.5,23.5
parent: 1
- uid: 1887
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,0.5
+ pos: -17.5,22.5
parent: 1
- uid: 1888
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,1.5
+ pos: -17.5,21.5
parent: 1
- uid: 1889
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,3.5
+ pos: -17.5,20.5
parent: 1
- uid: 1890
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,3.5
+ pos: -17.5,19.5
parent: 1
- uid: 1891
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,1.5
+ pos: -17.5,18.5
parent: 1
- uid: 1892
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,0.5
+ pos: -17.5,17.5
parent: 1
- uid: 1893
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-0.5
+ pos: -17.5,16.5
parent: 1
- uid: 1894
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,1.5
+ pos: -17.5,15.5
parent: 1
- uid: 1895
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,0.5
+ pos: -17.5,14.5
parent: 1
- uid: 1896
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-0.5
+ pos: -17.5,13.5
parent: 1
-- proto: Catwalk
- entities:
- - uid: 1036
+ - uid: 1897
components:
- type: Transform
- pos: -26.5,-6.5
+ pos: -16.5,13.5
parent: 1
- - uid: 1037
+ - uid: 1898
components:
- type: Transform
- pos: -25.5,-6.5
+ pos: -16.5,12.5
parent: 1
- - uid: 1038
+ - uid: 1899
components:
- type: Transform
- pos: -24.5,-6.5
+ pos: -15.5,12.5
parent: 1
- - uid: 1039
+ - uid: 1900
components:
- type: Transform
- pos: -23.5,-6.5
+ pos: -14.5,12.5
parent: 1
- - uid: 1040
+ - uid: 1901
components:
- type: Transform
- pos: -22.5,-6.5
+ pos: -13.5,12.5
parent: 1
- - uid: 1041
+ - uid: 1902
components:
- type: Transform
- pos: -21.5,-6.5
+ pos: -12.5,12.5
parent: 1
- - uid: 1042
+ - uid: 1903
components:
- type: Transform
- pos: -20.5,-6.5
+ pos: -11.5,12.5
parent: 1
- - uid: 1043
+ - uid: 1904
components:
- type: Transform
- pos: -19.5,-6.5
+ pos: -10.5,12.5
parent: 1
- - uid: 1044
+ - uid: 2032
components:
- type: Transform
- pos: -19.5,-5.5
+ pos: 9.5,32.5
parent: 1
- - uid: 1045
+ - uid: 2033
components:
- type: Transform
- pos: -19.5,-4.5
+ pos: 12.5,32.5
parent: 1
- - uid: 1046
+ - uid: 2034
components:
- type: Transform
- pos: -18.5,-4.5
+ pos: 10.5,32.5
parent: 1
- - uid: 1047
+ - uid: 2036
components:
- type: Transform
- pos: -17.5,-4.5
+ pos: 11.5,32.5
parent: 1
- - uid: 1048
+ - uid: 2037
components:
- type: Transform
- pos: -16.5,-4.5
+ pos: 8.5,32.5
parent: 1
- - uid: 1049
+ - uid: 2038
components:
- type: Transform
- pos: -15.5,-4.5
+ pos: 7.5,32.5
parent: 1
- - uid: 1050
+ - uid: 2039
components:
- type: Transform
- pos: -14.5,-4.5
+ pos: 6.5,32.5
parent: 1
- - uid: 1051
+ - uid: 2040
components:
- type: Transform
- pos: -13.5,-4.5
+ pos: 5.5,32.5
parent: 1
- - uid: 1052
+ - uid: 2041
components:
- type: Transform
- pos: -12.5,-4.5
+ pos: 5.5,31.5
parent: 1
- - uid: 1053
+- proto: CableHV
+ entities:
+ - uid: 27
components:
- type: Transform
- pos: -11.5,-4.5
+ pos: -5.5,14.5
parent: 1
- - uid: 1054
+ - uid: 88
components:
- type: Transform
- pos: -10.5,-4.5
+ pos: -6.5,14.5
parent: 1
- - uid: 1056
+ - uid: 91
components:
- type: Transform
- pos: -8.5,-4.5
+ pos: -7.5,14.5
parent: 1
- - uid: 1057
+ - uid: 126
components:
- type: Transform
- pos: -7.5,-4.5
+ pos: -8.5,13.5
parent: 1
- - uid: 1058
+ - uid: 196
components:
- type: Transform
- pos: -6.5,-4.5
+ pos: -5.5,11.5
parent: 1
- - uid: 1059
+ - uid: 220
components:
- type: Transform
- pos: -5.5,-4.5
+ pos: -5.5,12.5
parent: 1
- - uid: 1060
+ - uid: 245
components:
- type: Transform
- pos: -4.5,-4.5
+ pos: -6.5,11.5
parent: 1
- - uid: 1061
+ - uid: 294
components:
- type: Transform
- pos: -3.5,-4.5
+ pos: -5.5,13.5
parent: 1
- - uid: 1062
+ - uid: 456
components:
- type: Transform
- pos: -2.5,-4.5
+ pos: -8.5,11.5
parent: 1
- - uid: 1063
+ - uid: 593
components:
- type: Transform
- pos: -1.5,-4.5
+ pos: -7.5,11.5
parent: 1
- - uid: 1064
+ - uid: 946
components:
- type: Transform
- pos: -0.5,-4.5
+ pos: -7.5,13.5
parent: 1
- - uid: 1065
+ - uid: 952
components:
- type: Transform
- pos: 0.5,-4.5
+ pos: -8.5,14.5
parent: 1
- - uid: 1066
+- proto: CableMV
+ entities:
+ - uid: 19
components:
- type: Transform
- pos: 1.5,-4.5
+ pos: -2.5,9.5
parent: 1
- - uid: 1067
+ - uid: 25
components:
- type: Transform
- pos: 2.5,-4.5
+ pos: 4.5,7.5
parent: 1
- - uid: 1068
+ - uid: 34
components:
- type: Transform
- pos: 2.5,-5.5
+ pos: -0.5,6.5
parent: 1
- - uid: 1069
+ - uid: 38
components:
- type: Transform
- pos: 2.5,-6.5
+ pos: -0.5,9.5
parent: 1
- - uid: 1070
+ - uid: 67
components:
- type: Transform
- pos: 2.5,-7.5
+ pos: -0.5,8.5
parent: 1
- - uid: 1071
+ - uid: 79
components:
- type: Transform
- pos: 2.5,-8.5
+ pos: -0.5,7.5
parent: 1
- - uid: 1072
+ - uid: 85
components:
- type: Transform
- pos: 2.5,-9.5
+ pos: -0.5,10.5
parent: 1
- - uid: 1073
+ - uid: 99
components:
- type: Transform
- pos: 2.5,-10.5
+ pos: -3.5,10.5
parent: 1
- - uid: 1074
+ - uid: 105
components:
- type: Transform
- pos: 2.5,-11.5
+ pos: 0.5,9.5
parent: 1
- - uid: 1075
+ - uid: 158
components:
- type: Transform
- pos: 2.5,-12.5
+ pos: 5.5,8.5
parent: 1
- - uid: 1076
+ - uid: 169
components:
- type: Transform
- pos: 2.5,-13.5
+ pos: -4.5,10.5
parent: 1
- - uid: 1077
+ - uid: 183
components:
- type: Transform
- pos: 2.5,-14.5
+ pos: -2.5,10.5
parent: 1
- - uid: 1078
+ - uid: 200
components:
- type: Transform
- pos: 2.5,-15.5
+ pos: 5.5,3.5
parent: 1
- - uid: 1079
+ - uid: 264
components:
- type: Transform
- pos: 2.5,-16.5
+ pos: -8.5,11.5
parent: 1
- - uid: 1080
+ - uid: 267
components:
- type: Transform
- pos: 2.5,-17.5
+ pos: -8.5,10.5
parent: 1
- - uid: 1081
+ - uid: 394
components:
- type: Transform
- pos: 2.5,-18.5
+ pos: -7.5,10.5
parent: 1
- - uid: 1082
+ - uid: 401
components:
- type: Transform
- pos: 2.5,-19.5
+ pos: 1.5,6.5
parent: 1
- - uid: 1083
+ - uid: 402
components:
- type: Transform
- pos: 4.5,-19.5
+ pos: 0.5,6.5
parent: 1
- - uid: 1084
+ - uid: 414
components:
- type: Transform
- pos: 4.5,-18.5
+ pos: 2.5,6.5
parent: 1
- - uid: 1085
+ - uid: 415
components:
- type: Transform
- pos: 4.5,-17.5
+ pos: 3.5,6.5
parent: 1
- - uid: 1086
+ - uid: 416
components:
- type: Transform
- pos: 4.5,-16.5
+ pos: 4.5,6.5
parent: 1
- - uid: 1087
+ - uid: 417
components:
- type: Transform
- pos: 4.5,-15.5
+ pos: 4.5,4.5
parent: 1
- - uid: 1088
+ - uid: 419
components:
- type: Transform
- pos: 4.5,-14.5
+ pos: 4.5,5.5
parent: 1
- - uid: 1089
+ - uid: 493
components:
- type: Transform
- pos: 4.5,-13.5
+ pos: 6.5,3.5
parent: 1
- - uid: 1090
+ - uid: 502
components:
- type: Transform
- pos: 4.5,-12.5
+ pos: 7.5,3.5
parent: 1
- - uid: 1091
+ - uid: 503
components:
- type: Transform
- pos: 4.5,-11.5
+ pos: 8.5,3.5
parent: 1
- - uid: 1092
+ - uid: 518
components:
- type: Transform
- pos: 4.5,-10.5
+ pos: 9.5,3.5
parent: 1
- - uid: 1093
+ - uid: 577
components:
- type: Transform
- pos: 4.5,-9.5
+ pos: 9.5,2.5
parent: 1
- - uid: 1094
+ - uid: 659
components:
- type: Transform
- pos: 4.5,-8.5
+ pos: 4.5,3.5
parent: 1
- - uid: 1095
+ - uid: 807
components:
- type: Transform
- pos: 4.5,-7.5
+ pos: -1.5,10.5
parent: 1
- - uid: 1096
+ - uid: 1029
components:
- type: Transform
- pos: 4.5,-6.5
+ pos: 4.5,8.5
parent: 1
- - uid: 1097
+ - uid: 1031
components:
- type: Transform
- pos: 4.5,-5.5
+ pos: -6.5,10.5
parent: 1
- - uid: 1098
+ - uid: 1032
components:
- type: Transform
- pos: 4.5,-4.5
+ pos: -5.5,10.5
parent: 1
- - uid: 1099
+ - uid: 1998
components:
- type: Transform
- pos: 4.5,-3.5
+ pos: 9.5,17.5
parent: 1
- - uid: 1100
+ - uid: 1999
components:
- type: Transform
- pos: 4.5,-2.5
+ pos: 9.5,16.5
parent: 1
- - uid: 1101
+ - uid: 2000
components:
- type: Transform
- pos: 3.5,-2.5
+ pos: 10.5,16.5
parent: 1
- - uid: 1102
+ - uid: 2001
components:
- type: Transform
- pos: 2.5,-2.5
+ pos: 10.5,15.5
parent: 1
- - uid: 1103
+ - uid: 2002
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: 10.5,14.5
parent: 1
- - uid: 1104
+- proto: CableTerminal
+ entities:
+ - uid: 965
components:
- type: Transform
- pos: 0.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,11.5
parent: 1
- - uid: 1105
+- proto: CannonBall
+ entities:
+ - uid: 643
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: -1.6551356,11.813257
parent: 1
- - uid: 1106
+ - uid: 677
components:
- type: Transform
- pos: -1.5,-2.5
+ pos: -1.6447191,11.55284
parent: 1
- - uid: 1107
+ - uid: 678
components:
- type: Transform
- pos: -2.5,-2.5
+ pos: -1.2801356,11.823674
parent: 1
- - uid: 1108
+ - uid: 679
components:
- type: Transform
- pos: -3.5,-2.5
+ pos: -1.457219,11.64659
parent: 1
- - uid: 1109
+ - uid: 680
components:
- type: Transform
- pos: -4.5,-2.5
+ pos: -1.269719,11.55284
parent: 1
- - uid: 1110
+ - uid: 2006
components:
- type: Transform
- pos: -5.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 22.340786,23.304857
parent: 1
- - uid: 1111
+ - uid: 2007
components:
- type: Transform
- pos: -6.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 22.48662,23.502775
parent: 1
- - uid: 1112
+ - uid: 2008
components:
- type: Transform
- pos: -7.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 22.61162,23.304857
parent: 1
- - uid: 1113
+- proto: CannonBallGlassshot
+ entities:
+ - uid: 681
components:
- type: Transform
- pos: -8.5,-2.5
+ pos: -2.3322191,11.64659
parent: 1
- - uid: 1114
+ - uid: 684
components:
- type: Transform
- pos: -9.5,-2.5
+ pos: -2.5926356,11.792424
parent: 1
- - uid: 1115
+- proto: CannonBallGrapeshot
+ entities:
+ - uid: 682
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: -3.3530524,11.698674
parent: 1
- - uid: 1116
+ - uid: 687
components:
- type: Transform
- pos: -11.5,-2.5
+ pos: -3.5926356,11.813257
parent: 1
- - uid: 1117
+- proto: CargoPallet
+ entities:
+ - uid: 201
components:
- type: Transform
- pos: -12.5,-2.5
+ pos: 5.5,-2.5
parent: 1
- - uid: 1118
+ - uid: 209
components:
- type: Transform
- pos: -13.5,-2.5
+ pos: 5.5,-1.5
parent: 1
- - uid: 1119
+ - uid: 229
components:
- type: Transform
- pos: -14.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-2.5
parent: 1
- - uid: 1120
+ - uid: 230
components:
- type: Transform
- pos: -15.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-2.5
parent: 1
- - uid: 1121
+ - uid: 231
components:
- type: Transform
- pos: -16.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-1.5
parent: 1
- - uid: 1122
+ - uid: 237
components:
- type: Transform
- pos: -17.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-2.5
parent: 1
- - uid: 1123
+ - uid: 247
components:
- type: Transform
- pos: -18.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-1.5
parent: 1
- - uid: 1124
+ - uid: 258
components:
- type: Transform
- pos: -19.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-1.5
parent: 1
- - uid: 1125
+ - uid: 265
components:
- type: Transform
- pos: -20.5,-2.5
+ pos: 6.5,-1.5
parent: 1
- - uid: 1126
+ - uid: 563
components:
- type: Transform
- pos: -21.5,-2.5
+ pos: 7.5,-2.5
parent: 1
- - uid: 1128
+ - uid: 603
components:
- type: Transform
- pos: -21.5,-3.5
+ pos: 6.5,-2.5
parent: 1
- - uid: 1129
+ - uid: 626
components:
- type: Transform
- pos: -21.5,-4.5
+ pos: 7.5,-1.5
parent: 1
- - uid: 1130
+- proto: CarpetBlack
+ entities:
+ - uid: 1845
components:
- type: Transform
- pos: -22.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,34.5
parent: 1
- - uid: 1131
+ - uid: 1846
components:
- type: Transform
- pos: -23.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,34.5
parent: 1
- - uid: 1132
+ - uid: 1849
components:
- type: Transform
- pos: -24.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,35.5
parent: 1
- - uid: 1133
+ - uid: 1857
components:
- type: Transform
- pos: -25.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,36.5
parent: 1
- - uid: 1134
+ - uid: 1860
components:
- type: Transform
- pos: -26.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,37.5
parent: 1
- - uid: 1279
+ - uid: 1865
components:
- type: Transform
- pos: -9.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,35.5
parent: 1
- - uid: 1282
+ - uid: 1866
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,-2.5
+ pos: -2.5,36.5
parent: 1
- - uid: 1292
+ - uid: 1867
components:
- type: Transform
- pos: 8.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,37.5
parent: 1
- - uid: 1293
+- proto: Catwalk
+ entities:
+ - uid: 6
components:
- type: Transform
- pos: 8.5,-4.5
+ pos: -5.5,13.5
parent: 1
- - uid: 1294
+ - uid: 115
components:
- type: Transform
- pos: 10.5,-3.5
+ pos: -5.5,12.5
parent: 1
- - uid: 1295
+ - uid: 124
components:
- type: Transform
- pos: 10.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,11.5
parent: 1
- - uid: 1298
+ - uid: 197
components:
- type: Transform
- pos: 5.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,11.5
parent: 1
- - uid: 1299
+ - uid: 215
components:
- type: Transform
- pos: 5.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,11.5
parent: 1
- - uid: 1300
+ - uid: 269
components:
- type: Transform
- pos: 5.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,13.5
parent: 1
- - uid: 1301
+ - uid: 324
components:
- type: Transform
- pos: 5.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,9.5
parent: 1
-- proto: ChairOfficeDark
- entities:
- - uid: 1881
+ - uid: 441
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,1.5
+ pos: -8.5,23.5
parent: 1
- - uid: 1882
+ - uid: 465
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,2.5
+ pos: -6.5,7.5
parent: 1
-- proto: ChairWood
- entities:
- - uid: 1768
+ - uid: 466
components:
- type: Transform
- pos: -5.5,-7.5
+ pos: -5.5,7.5
parent: 1
- - uid: 1769
+ - uid: 520
components:
- type: Transform
- pos: -5.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,12.5
parent: 1
- - uid: 1770
+ - uid: 604
components:
- type: Transform
- pos: -3.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,11.5
parent: 1
- - uid: 1771
+ - uid: 627
components:
- type: Transform
- pos: -3.5,-9.5
+ pos: -7.5,24.5
parent: 1
- - uid: 1917
+ - uid: 629
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.323788,7.7902884
+ pos: -5.5,6.5
parent: 1
-- proto: ClosetChefFilled
- entities:
- - uid: 1699
+ - uid: 636
components:
- type: Transform
- pos: -9.5,-6.5
+ pos: -2.5,20.5
parent: 1
-- proto: ClothingEyesEyepatch
- entities:
- - uid: 1898
+ - uid: 638
components:
- type: Transform
- pos: -0.6632185,1.4343771
+ pos: -9.5,23.5
parent: 1
- - uid: 1899
+ - uid: 642
components:
- type: Transform
- pos: -5.5918703,-9.232764
+ pos: 1.5,23.5
parent: 1
- - uid: 1900
+ - uid: 700
components:
- type: Transform
- pos: -2.2637453,-11.560889
+ pos: 1.5,22.5
parent: 1
-- proto: ClothingHeadHatPirate
- entities:
- - uid: 1664
+ - uid: 701
components:
- type: Transform
- pos: 2.7715876,0.39065337
+ pos: 2.5,22.5
parent: 1
-- proto: ClothingHeadHatPirateTricord
- entities:
- - uid: 1663
+ - uid: 704
components:
- type: Transform
- pos: 2.1622126,1.1406534
+ pos: -1.5,17.5
parent: 1
-- proto: ClothingOuterCoatPirate
- entities:
- - uid: 1901
+ - uid: 705
components:
- type: Transform
- pos: -2.3400846,1.1901393
+ pos: -2.5,29.5
parent: 1
-- proto: ClothingUniformJumpsuitPirate
- entities:
- - uid: 1665
+ - uid: 708
components:
- type: Transform
- pos: 2.1622126,0.41409087
+ pos: -1.5,19.5
parent: 1
-- proto: ComputerBlackMarketBankATM
- entities:
- - uid: 1909
+ - uid: 710
components:
- type: Transform
- pos: -6.5,-0.5
+ pos: 2.5,23.5
parent: 1
- - type: ContainerContainer
- containers:
- bank-ATM-cashSlot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- board: !type:Container
- showEnts: False
- occludes: True
- ents: []
-- proto: ComputerBroken
- entities:
- - uid: 574
+ - uid: 743
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,2.5
+ pos: -9.5,24.5
parent: 1
-- proto: ComputerPowerMonitoring
- entities:
- - uid: 570
+ - uid: 744
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,1.5
+ pos: -2.5,30.5
parent: 1
-- proto: ComputerShipyardBlackMarket
- entities:
- - uid: 855
+ - uid: 760
components:
- type: Transform
- pos: -7.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,11.5
parent: 1
- - type: ContainerContainer
- containers:
- ShipyardConsole-targetId: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- board: !type:Container
- showEnts: False
- occludes: True
- ents: []
-- proto: CrateFunPirate
- entities:
- - uid: 1680
+ - uid: 764
components:
- type: Transform
- pos: 0.5,3.5
+ pos: -8.5,24.5
parent: 1
-- proto: CrateHydroponicsSeeds
- entities:
- - uid: 1800
+ - uid: 775
components:
- type: Transform
- pos: -15.5,-7.5
+ pos: -7.5,23.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14923
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CratePirateChest
- entities:
- - uid: 1658
+ - uid: 777
components:
- type: Transform
- pos: -4.5,0.5
+ pos: -6.5,24.5
parent: 1
-- proto: CratePirateChestCaptain
- entities:
- - uid: 1657
+ - uid: 813
components:
- type: Transform
- pos: -4.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,14.5
parent: 1
-- proto: CrateStoneGrave
- entities:
- - uid: 1017
+ - uid: 820
components:
- type: Transform
- pos: 4.5,7.5
+ pos: -8.5,8.5
parent: 1
-- proto: CrateWoodenGrave
- entities:
- - uid: 1136
+ - uid: 821
components:
- type: Transform
- pos: -14.5,2.5
+ pos: -8.5,7.5
parent: 1
-- proto: DisposalUnit
- entities:
- - uid: 576
+ - uid: 822
components:
- type: Transform
- pos: 7.5,-0.5
+ pos: -8.5,6.5
parent: 1
- - uid: 581
+ - uid: 823
components:
- type: Transform
- pos: -1.5,-6.5
+ pos: -8.5,5.5
parent: 1
- - uid: 1803
+ - uid: 824
components:
- type: Transform
- pos: -0.5,3.5
+ pos: -8.5,4.5
parent: 1
-- proto: DogBed
- entities:
- - uid: 1667
+ - uid: 825
components:
- type: Transform
- pos: -7.5,-13.5
+ pos: -8.5,3.5
parent: 1
-- proto: Dresser
- entities:
- - uid: 519
+ - uid: 843
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 4.5,23.5
parent: 1
-- proto: DrinkBottleAle
- entities:
- - uid: 1807
+ - uid: 845
components:
- type: Transform
- pos: -2.6220737,-10.996063
+ pos: -2.5,19.5
parent: 1
- - uid: 1808
+ - uid: 848
components:
- type: Transform
- pos: -5.6533237,-8.167938
+ pos: 4.5,22.5
parent: 1
-- proto: DrinkBottleBeer
- entities:
- - uid: 1809
+ - uid: 849
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.7001987,-10.777313
+ pos: 5.5,23.5
parent: 1
-- proto: DrinkBottleRum
- entities:
- - uid: 1814
+ - uid: 852
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.1845737,-11.324188
+ pos: -1.5,18.5
parent: 1
-- proto: DrinkBottleTequila
- entities:
- - uid: 1815
+ - uid: 854
components:
- type: Transform
- pos: -1.5751987,-11.402313
+ pos: -2.5,18.5
parent: 1
-- proto: DrinkChampagneBottleFull
- entities:
- - uid: 1810
+ - uid: 861
components:
- type: Transform
- pos: -5.5751987,-12.027313
+ pos: -1.5,20.5
parent: 1
-- proto: DrinkCognacBottleFull
- entities:
- - uid: 1811
+ - uid: 862
components:
- type: Transform
- pos: -5.2939487,-8.214813
+ pos: -2.5,27.5
parent: 1
-- proto: DrinkMilkCarton
- entities:
- - uid: 1758
+ - uid: 864
components:
- type: Transform
- pos: -12.53306,-6.968975
+ pos: -5.5,14.5
parent: 1
-- proto: DrinkRumBottleFull
- entities:
- - uid: 1805
+ - uid: 867
components:
- type: Transform
- pos: -4.7001987,-11.011688
+ rot: 1.5707963267948966 rad
+ pos: -8.5,11.5
parent: 1
- - uid: 1806
+ - uid: 868
components:
- type: Transform
- pos: -3.5126987,-11.324188
+ rot: 1.5707963267948966 rad
+ pos: -8.5,10.5
parent: 1
-- proto: DrinkShotGlass
- entities:
- - uid: 1816
+ - uid: 869
components:
- type: Transform
- pos: -5.3251987,-11.699188
+ rot: 1.5707963267948966 rad
+ pos: -7.5,10.5
parent: 1
- - uid: 1817
+ - uid: 870
components:
- type: Transform
- pos: -4.0126987,-11.449188
+ rot: 1.5707963267948966 rad
+ pos: -6.5,10.5
parent: 1
- - uid: 1818
+ - uid: 871
components:
- type: Transform
- pos: -2.0439487,-11.417938
+ rot: 1.5707963267948966 rad
+ pos: -5.5,10.5
parent: 1
- - uid: 1819
+ - uid: 879
components:
- type: Transform
- pos: -3.2034483,-8.129922
+ pos: -6.5,6.5
parent: 1
- - uid: 1820
+ - uid: 880
components:
- type: Transform
- pos: -3.5315733,-8.442422
+ pos: -6.5,5.5
parent: 1
- - uid: 1821
+ - uid: 895
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.2190733,-8.942422
+ pos: -6.5,23.5
parent: 1
-- proto: FaxMachineShipAntag
- entities:
- - uid: 1916
+ - uid: 896
components:
- type: Transform
- pos: -0.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,14.5
parent: 1
-- proto: FirelockEdge
- entities:
- - uid: 1784
+ - uid: 897
components:
- type: Transform
- pos: -12.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,14.5
parent: 1
- - uid: 1785
+ - uid: 900
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,3.5
parent: 1
- - uid: 1786
+ - uid: 902
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-8.5
+ pos: -5.5,24.5
parent: 1
- - uid: 1787
+ - uid: 1003
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-7.5
+ pos: -2.5,28.5
parent: 1
- - uid: 1788
+ - uid: 1007
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-6.5
+ pos: 5.5,22.5
parent: 1
-- proto: FirelockGlass
- entities:
- - uid: 1789
+ - uid: 1011
components:
- type: Transform
- pos: -0.5,-7.5
+ pos: -5.5,23.5
parent: 1
- - uid: 1790
+ - uid: 1015
components:
- type: Transform
- pos: -0.5,-8.5
+ pos: -5.5,5.5
parent: 1
- - uid: 1791
+ - uid: 1017
components:
- type: Transform
- pos: -1.5,-1.5
+ pos: -3.5,7.5
parent: 1
- - uid: 1792
+ - uid: 1018
components:
- type: Transform
- pos: -0.5,-1.5
+ pos: -3.5,8.5
parent: 1
- - uid: 1793
+ - uid: 1019
components:
- type: Transform
- pos: -5.5,2.5
+ pos: -3.5,9.5
parent: 1
- - uid: 1794
+ - uid: 1020
components:
- type: Transform
- pos: 5.5,-1.5
+ pos: -3.5,11.5
parent: 1
- - uid: 1795
+ - uid: 1021
components:
- type: Transform
- pos: 2.5,-20.5
+ pos: -2.5,11.5
parent: 1
- - uid: 1796
+ - uid: 1022
components:
- type: Transform
- pos: 4.5,-20.5
+ pos: -1.5,11.5
parent: 1
- - uid: 1797
+ - uid: 1024
components:
- type: Transform
- pos: -27.5,-6.5
+ pos: 0.5,10.5
parent: 1
- - uid: 1799
+ - uid: 1025
components:
- type: Transform
- pos: -27.5,-4.5
+ pos: -1.5,13.5
parent: 1
-- proto: FloorDrain
- entities:
- - uid: 1669
+ - uid: 1026
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,1.5
+ pos: -2.5,13.5
parent: 1
- - type: Fixtures
- fixtures: {}
-- proto: FloorWaterEntity
- entities:
- - uid: 1673
+ - uid: 1027
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,2.5
+ pos: -3.5,13.5
parent: 1
- - uid: 1674
+ - uid: 1030
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,1.5
+ pos: 3.5,23.5
parent: 1
- - uid: 1675
+ - uid: 1100
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,21.5
parent: 1
- - uid: 1676
+ - uid: 1102
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,2.5
+ pos: 3.5,22.5
parent: 1
- - uid: 1677
+ - uid: 1167
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,1.5
+ pos: -2.5,31.5
parent: 1
- - uid: 1678
+ - uid: 1258
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,23.5
parent: 1
- - uid: 1679
+ - uid: 1259
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,24.5
parent: 1
-- proto: FoodBowlBig
- entities:
- - uid: 1753
+ - uid: 1265
components:
- type: Transform
- pos: -12.276115,-6.295364
+ pos: -2.5,17.5
parent: 1
-- proto: FoodCondimentBottleEnzyme
- entities:
- - uid: 1757
+ - uid: 1279
components:
- type: Transform
- pos: -12.387227,-6.7606416
+ rot: -1.5707963267948966 rad
+ pos: 23.5,24.5
parent: 1
-- proto: FoodCondimentBottleHotsauce
- entities:
- - uid: 1812
+ - uid: 1280
components:
- type: Transform
- pos: -8.637699,-7.558563
+ rot: -1.5707963267948966 rad
+ pos: 23.5,25.5
parent: 1
-- proto: FoodCondimentBottleKetchup
- entities:
- - uid: 1813
+ - uid: 1300
components:
- type: Transform
- pos: -8.481449,-7.589813
+ rot: -1.5707963267948966 rad
+ pos: 23.5,20.5
parent: 1
-- proto: FoodCondimentPacketSalt
- entities:
- - uid: 1756
+ - uid: 1301
components:
- type: Transform
- pos: -12.546949,-6.6495304
+ rot: -1.5707963267948966 rad
+ pos: 24.5,21.5
parent: 1
-- proto: FoodContainerEgg
- entities:
- - uid: 1759
+ - uid: 1304
components:
- type: Transform
- pos: -12.34556,-7.045364
+ rot: -1.5707963267948966 rad
+ pos: 24.5,22.5
parent: 1
-- proto: FoodKebabSkewer
- entities:
- - uid: 1755
+ - uid: 1314
components:
- type: Transform
- pos: -12.165005,-6.4342527
+ rot: -1.5707963267948966 rad
+ pos: 22.5,25.5
parent: 1
-- proto: FoodPlate
- entities:
- - uid: 1751
+ - uid: 1318
components:
- type: Transform
- pos: -12.269171,-6.3370304
+ rot: -1.5707963267948966 rad
+ pos: 23.5,23.5
parent: 1
-- proto: FoodPlateSmall
- entities:
- - uid: 1752
+ - uid: 1352
components:
- type: Transform
- pos: -12.296949,-6.392586
+ rot: -1.5707963267948966 rad
+ pos: 13.5,24.5
parent: 1
-- proto: FoodPlateTin
- entities:
- - uid: 1754
+ - uid: 1363
components:
- type: Transform
- pos: -12.269171,-6.281475
+ rot: -1.5707963267948966 rad
+ pos: 24.5,25.5
parent: 1
-- proto: GasMixer
- entities:
- - uid: 1277
+ - uid: 1370
components:
- type: Transform
- pos: 9.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,22.5
parent: 1
- - type: GasMixer
- inletTwoConcentration: 0.22000003
- inletOneConcentration: 0.78
-- proto: GasPipeBend
- entities:
- - uid: 1280
+ - uid: 1371
components:
- type: Transform
- pos: 10.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,24.5
parent: 1
- - uid: 1286
+ - uid: 1372
components:
- type: Transform
- pos: 10.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,23.5
parent: 1
-- proto: GasPipeTJunction
- entities:
- - uid: 1278
+ - uid: 1377
components:
- type: Transform
- pos: 8.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,22.5
parent: 1
- - uid: 1284
+ - uid: 1378
components:
- type: Transform
- pos: 8.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,22.5
parent: 1
-- proto: GasPort
- entities:
- - uid: 1023
+ - uid: 1383
components:
- type: Transform
- pos: 10.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,22.5
parent: 1
- - uid: 1024
+ - uid: 1384
components:
- type: Transform
- pos: 9.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,22.5
parent: 1
- - uid: 1025
+ - uid: 1385
components:
- type: Transform
- pos: 8.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,22.5
parent: 1
- - uid: 1283
+ - uid: 1387
components:
- type: Transform
- pos: 8.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,22.5
parent: 1
- - uid: 1287
+ - uid: 1388
components:
- type: Transform
- pos: 10.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,21.5
parent: 1
-- proto: GasVentPump
- entities:
- - uid: 1055
+ - uid: 1390
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,22.5
parent: 1
-- proto: GasVentScrubber
- entities:
- - uid: 1281
+ - uid: 1391
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,22.5
parent: 1
-- proto: GasVolumePump
- entities:
- - uid: 1285
+ - uid: 1392
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,22.5
parent: 1
-- proto: GeneratorBasic15kW
- entities:
- - uid: 1302
+ - uid: 1393
components:
- type: Transform
- pos: 4.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,22.5
parent: 1
- - uid: 1303
+ - uid: 1394
components:
- type: Transform
- pos: 4.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,23.5
parent: 1
- - uid: 1313
+ - uid: 1395
components:
- type: Transform
- pos: 4.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,19.5
parent: 1
-- proto: GravityGeneratorMini
- entities:
- - uid: 1880
+ - uid: 1396
components:
- type: Transform
- pos: 5.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,20.5
parent: 1
-- proto: Grille
- entities:
- - uid: 992
+ - uid: 1397
components:
- type: Transform
- pos: -5.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,19.5
parent: 1
- - uid: 993
+ - uid: 1398
components:
- type: Transform
- pos: -6.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,21.5
parent: 1
- - uid: 994
+ - uid: 1399
components:
- type: Transform
- pos: -7.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,20.5
parent: 1
- - uid: 995
+ - uid: 1400
components:
- type: Transform
- pos: -8.5,-13.5
- parent: 1
- - uid: 996
- components:
- - type: Transform
- pos: -8.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,19.5
parent: 1
- - uid: 997
+ - uid: 1848
components:
- type: Transform
- pos: -8.5,-11.5
+ pos: -13.5,14.5
parent: 1
- - uid: 998
+ - uid: 1870
components:
- type: Transform
- pos: -9.5,-10.5
+ pos: -12.5,14.5
parent: 1
- - uid: 999
+ - uid: 1906
components:
- type: Transform
- pos: -10.5,-10.5
+ pos: -14.5,14.5
parent: 1
- - uid: 1000
+- proto: ChairFolding
+ entities:
+ - uid: 1062
components:
- type: Transform
- pos: -11.5,-10.5
+ pos: -1.4638193,25.545057
parent: 1
- - uid: 1001
+ - uid: 1065
components:
- type: Transform
- pos: -13.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5888193,24.6145
parent: 1
- - uid: 1002
+ - uid: 1117
components:
- type: Transform
- pos: -14.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 23.533894,21.609812
parent: 1
- - uid: 1003
+ - uid: 1401
components:
- type: Transform
- pos: -15.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 23.565144,23.719187
parent: 1
- - uid: 1004
+- proto: ChairOfficeDark
+ entities:
+ - uid: 213
components:
- type: Transform
- pos: -28.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,9.5
parent: 1
- - uid: 1005
+ - uid: 596
components:
- type: Transform
- pos: -29.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,9.5
parent: 1
- - uid: 1006
+- proto: ChairWood
+ entities:
+ - uid: 177
components:
- type: Transform
- pos: -31.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-0.5
parent: 1
- - uid: 1007
+ - uid: 189
components:
- type: Transform
- pos: -32.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-1.5
parent: 1
- - uid: 1008
+ - uid: 210
components:
- type: Transform
- pos: -32.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
parent: 1
- - uid: 1009
+ - uid: 236
components:
- type: Transform
- pos: -31.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-0.5
parent: 1
- - uid: 1010
+ - uid: 244
components:
- type: Transform
- pos: -29.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-1.5
parent: 1
- - uid: 1011
+ - uid: 273
components:
- type: Transform
- pos: -28.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-1.5
parent: 1
- - uid: 1016
+ - uid: 601
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-0.5
parent: 1
- - uid: 1018
+ - uid: 602
components:
- type: Transform
- pos: -7.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-1.5
parent: 1
- - uid: 1019
+ - uid: 1815
components:
- type: Transform
- pos: -6.5,4.5
+ pos: -2.5,37.5
parent: 1
- - uid: 1020
+ - uid: 1816
components:
- type: Transform
- pos: 8.5,2.5
+ pos: -3.5,37.5
parent: 1
- - uid: 1021
+ - uid: 1817
components:
- type: Transform
- pos: 8.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,34.5
parent: 1
- - uid: 1022
+ - uid: 1818
components:
- type: Transform
- pos: 8.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,34.5
parent: 1
- - uid: 1026
+ - uid: 2051
components:
- type: Transform
- pos: -0.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 8.650677,-4.36273
parent: 1
- - uid: 1027
+- proto: Cigar
+ entities:
+ - uid: 190
components:
- type: Transform
- pos: -0.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -6.05544,7.263118
parent: 1
- - uid: 1028
+ - uid: 828
components:
- type: Transform
- pos: -0.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -6.0137734,7.440201
parent: 1
- - uid: 1029
+ - uid: 1133
components:
- type: Transform
- pos: -11.5,-5.5
+ pos: 2.4062622,4.659444
parent: 1
- - uid: 1030
+ - uid: 1134
components:
- type: Transform
- pos: -10.5,-5.5
+ pos: 2.6770954,4.7011104
parent: 1
- - uid: 1031
+ - uid: 1135
components:
- type: Transform
- pos: -9.5,-5.5
+ pos: 2.729179,4.503194
parent: 1
- - uid: 1032
+- proto: ClothingBeltPlantFilled
+ entities:
+ - uid: 765
components:
- type: Transform
- pos: -4.5,-5.5
+ pos: -5.496167,6.580707
parent: 1
- - uid: 1033
+- proto: ClothingBeltUtilityEngineering
+ entities:
+ - uid: 192
components:
- type: Transform
- pos: -3.5,-5.5
+ pos: -5.791832,6.7702737
parent: 1
- - uid: 1034
+- proto: ClothingEyesEyepatch
+ entities:
+ - uid: 1830
components:
- type: Transform
- pos: -2.5,-5.5
+ pos: -3.073276,36.033367
parent: 1
- - uid: 1659
+- proto: ClothingHandsGlovesCombat
+ entities:
+ - uid: 1421
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,4.5
+ pos: -5.518818,7.0506287
parent: 1
- - uid: 1715
+- proto: ClothingHeadHatPirate
+ entities:
+ - uid: 28
components:
- type: Transform
- pos: 1.5,-21.5
+ pos: 4.2899175,2.596978
parent: 1
- - uid: 1716
+ - uid: 31
components:
- type: Transform
- pos: 1.5,-22.5
+ pos: 4.0399175,2.7323947
parent: 1
- - uid: 1717
+ - uid: 48
components:
- type: Transform
- pos: 1.5,-24.5
+ pos: 4.5399175,2.7323947
parent: 1
- - uid: 1718
+ - uid: 49
components:
- type: Transform
- pos: 1.5,-25.5
+ pos: 4.050334,2.440728
parent: 1
- - uid: 1719
+ - uid: 50
components:
- type: Transform
- pos: 5.5,-25.5
+ pos: 4.5399175,2.4303112
parent: 1
- - uid: 1720
+- proto: ComputerPalletConsoleNFLowMarket
+ entities:
+ - uid: 559
components:
- type: Transform
- pos: 5.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-4.5
parent: 1
- - uid: 1721
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ ents: []
+ - uid: 560
components:
- type: Transform
- pos: 5.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-4.5
parent: 1
- - uid: 1722
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ ents: []
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 76
components:
- type: Transform
- pos: 5.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,14.5
parent: 1
-- proto: HighSecDoor
+- proto: ComputerShipyardBlackMarket
entities:
- - uid: 1844
+ - uid: 1956
components:
- type: Transform
- pos: -33.5,-4.5
+ pos: -0.5,16.5
parent: 1
- - uid: 1845
+ - type: ContainerContainer
+ containers:
+ ShipyardConsole-targetId: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - uid: 1959
components:
- type: Transform
- pos: -33.5,-6.5
+ pos: -3.5,16.5
parent: 1
- - uid: 1846
+ - type: ContainerContainer
+ containers:
+ ShipyardConsole-targetId: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+- proto: ComputerTabletopComputerIFFPOI
+ entities:
+ - uid: 1920
components:
- type: Transform
- pos: -27.5,-6.5
+ pos: -6.5,10.5
parent: 1
- - uid: 1847
+- proto: ComputerTabletopRadar
+ entities:
+ - uid: 51
components:
- type: Transform
- pos: -27.5,-4.5
+ pos: -8.5,1.5
parent: 1
- - uid: 1848
+- proto: ComputerTabletopSurveillanceCameraMonitor
+ entities:
+ - uid: 1082
components:
- type: Transform
- pos: 2.5,-26.5
+ pos: -7.5,10.5
parent: 1
- - uid: 1849
+- proto: ComputerWallmountBlackMarketBankATM
+ entities:
+ - uid: 61
components:
- type: Transform
- pos: 4.5,-26.5
+ pos: 5.5,2.5
parent: 1
- - uid: 1850
+ - type: ContainerContainer
+ containers:
+ bank-ATM-cashSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - type: Physics
+ canCollide: False
+- proto: CrateFreezer
+ entities:
+ - uid: 858
components:
- type: Transform
- pos: 2.5,-20.5
+ pos: 4.5,11.5
parent: 1
- - uid: 1851
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 234.99934
+ moles:
+ - 1.8968438
+ - 7.1357465
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 252
+ - 283
+ - 287
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrateFunParty
+ entities:
+ - uid: 125
components:
- type: Transform
- pos: 4.5,-20.5
+ pos: 4.5,10.5
parent: 1
-- proto: HospitalCurtains
+- proto: CrateFunPirate
entities:
- - uid: 1777
+ - uid: 827
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: -8.5,6.5
parent: 1
- - uid: 1778
+ - uid: 1678
components:
- type: Transform
- pos: 2.5,1.5
+ pos: 3.5,36.5
parent: 1
- - uid: 1780
+- proto: CrateHydroponicsSeeds
+ entities:
+ - uid: 1000
components:
- type: Transform
- pos: 2.5,3.5
+ pos: -8.5,3.5
parent: 1
-- proto: HospitalCurtainsOpen
+- proto: CrateHydroponicsSeedsExotic
entities:
- - uid: 1672
+ - uid: 1615
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,1.5
- parent: 1
- - uid: 1779
- components:
- - type: Transform
- pos: 2.5,0.5
+ pos: -8.5,4.5
parent: 1
-- proto: hydroponicsSoil
+- proto: CrateHydroponicsSeedsMedicinal
entities:
- - uid: 1632
+ - uid: 2021
components:
- type: Transform
- pos: -13.5,-9.5
- parent: 1
- - uid: 1633
- components:
- - type: Transform
- pos: -14.5,-9.5
+ pos: -8.5,5.5
parent: 1
- - uid: 1634
+- proto: CrateMedicalSurgery
+ entities:
+ - uid: 1221
components:
- type: Transform
- pos: -15.5,-9.5
+ pos: -12.5,14.5
parent: 1
-- proto: HydroponicsToolClippers
+- proto: CratePirateChest
entities:
- - uid: 1710
+ - uid: 834
components:
- type: Transform
- pos: -14.471659,-6.4601746
+ pos: -8.5,7.5
parent: 1
-- proto: HydroponicsToolHatchet
+- proto: CratePirateChestCaptain
entities:
- - uid: 1708
+ - uid: 2020
components:
- type: Transform
- pos: -14.502909,-6.4132996
+ pos: -8.5,8.5
parent: 1
-- proto: HydroponicsToolMiniHoe
+- proto: CrateStoneGrave
entities:
- - uid: 1709
+ - uid: 841
components:
- type: Transform
- pos: -14.627909,-6.4601746
+ pos: 15.5,15.5
parent: 1
-- proto: HydroponicsToolScythe
+- proto: CrateWoodenGrave
entities:
- - uid: 1711
+ - uid: 1125
components:
- type: Transform
- pos: -14.471659,-6.5070496
+ pos: -0.5,22.5
parent: 1
-- proto: HydroponicsToolSpade
+- proto: CurtainsBlack
entities:
- - uid: 1712
+ - uid: 1755
components:
- type: Transform
- pos: -14.409159,-6.4289246
+ pos: -0.5,36.5
parent: 1
-- proto: IntercomService
- entities:
- - uid: 1783
+ - uid: 1756
components:
- type: Transform
- pos: -6.5,-5.5
+ pos: -0.5,34.5
parent: 1
-- proto: KitchenMicrowave
- entities:
- - uid: 1703
+ - uid: 1757
components:
- type: Transform
- pos: -10.5,-6.5
+ pos: -5.5,35.5
parent: 1
-- proto: KitchenReagentGrinder
+- proto: d6Dice
entities:
- - uid: 1702
+ - uid: 1819
components:
- type: Transform
- pos: -11.5,-6.5
+ pos: -2.9908204,36.84169
parent: 1
-- proto: LampGold
- entities:
- - uid: 1918
+ - uid: 1820
components:
- type: Transform
- pos: -2.6423488,8.902393
+ pos: -3.6531801,35.643955
parent: 1
- - type: HandheldLight
- toggleActionEntity: 1919
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- actions: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1919
- - type: Physics
- canCollide: True
- - type: ActionsContainer
-- proto: LargeBeaker
+- proto: Defibrillator
entities:
- - uid: 1762
+ - uid: 1561
components:
- type: Transform
- pos: -11.915005,-6.2745304
+ pos: -13.51858,14.77089
parent: 1
- - uid: 1763
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 184
components:
- type: Transform
- pos: -12.102505,-6.4273086
+ rot: -1.5707963267948966 rad
+ pos: 8.5,2.5
parent: 1
-- proto: LockerBotanistFilled
+- proto: DeskBell
entities:
- - uid: 1700
+ - uid: 754
components:
- type: Transform
- pos: -13.5,-6.5
+ pos: -6.5961885,7.2103014
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14923
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1701
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LuxuryPen
+- proto: DisposalBend
entities:
- - uid: 1913
+ - uid: 331
components:
- type: Transform
- pos: -2.1631823,8.53781
+ rot: 3.141592653589793 rad
+ pos: -3.5,6.5
parent: 1
- - type: Stamp
- stampedName: Ryan Fiscina
-- proto: MachineCryoSleepPod
- entities:
- - uid: 571
+ - uid: 336
components:
- type: Transform
- pos: 7.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,5.5
parent: 1
-- proto: Mirror
- entities:
- - uid: 1897
+ - uid: 339
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,8.5
parent: 1
-- proto: MopBucketFull
- entities:
- - uid: 1767
+ - uid: 714
components:
- type: Transform
- pos: -6.484191,1.4599226
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
parent: 1
-- proto: MopItem
+- proto: DisposalJunction
entities:
- - uid: 1766
+ - uid: 272
components:
- type: Transform
- pos: -6.595302,1.4182558
+ pos: -1.5,6.5
parent: 1
-- proto: NitrogenCanister
- entities:
- - uid: 1291
+ - uid: 291
components:
- type: Transform
- anchored: True
- pos: 10.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,8.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: OxygenCanister
- entities:
- - uid: 1290
+ - uid: 749
components:
- type: Transform
- anchored: True
- pos: 9.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,5.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: Paper
+- proto: DisposalJunctionFlipped
entities:
- - uid: 1914
+ - uid: 275
components:
- type: Transform
- pos: -2.3194323,8.60031
+ rot: 3.141592653589793 rad
+ pos: 7.5,6.5
parent: 1
- - uid: 1915
+ - uid: 376
components:
- type: Transform
- pos: -2.1006823,8.652393
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
parent: 1
-- proto: PortableScrubber
+- proto: DisposalPipe
entities:
- - uid: 1288
+ - uid: 78
components:
- type: Transform
- anchored: True
- pos: 8.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,5.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: Poweredlight
- entities:
- - uid: 1741
+ - uid: 97
components:
- type: Transform
- pos: -12.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,8.5
parent: 1
-- proto: PoweredLightPostSmall
- entities:
- - uid: 1682
+ - uid: 219
components:
- type: Transform
- pos: -22.5,-1.5
+ pos: 7.5,9.5
parent: 1
- - uid: 1683
+ - uid: 251
components:
- type: Transform
- pos: 5.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,7.5
parent: 1
- - uid: 1684
+ - uid: 253
components:
- type: Transform
- pos: -11.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,7.5
parent: 1
- - uid: 1685
+ - uid: 254
components:
- type: Transform
- pos: 5.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,10.5
parent: 1
- - uid: 1921
+ - uid: 260
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,5.5
+ pos: 7.5,3.5
parent: 1
-- proto: PoweredSmallLight
- entities:
- - uid: 1686
+ - uid: 274
components:
- type: Transform
- pos: 3.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,1.5
parent: 1
- - uid: 1687
+ - uid: 280
components:
- type: Transform
- pos: 3.5,-25.5
+ pos: 7.5,11.5
parent: 1
- - uid: 1688
+ - uid: 281
components:
- type: Transform
- pos: -28.5,-5.5
+ pos: 7.5,12.5
parent: 1
- - uid: 1689
+ - uid: 282
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-5.5
+ pos: 7.5,13.5
parent: 1
- - uid: 1690
+ - uid: 286
components:
- type: Transform
- pos: -3.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,4.5
parent: 1
- - uid: 1691
+ - uid: 305
components:
- type: Transform
- pos: -1.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,7.5
parent: 1
- - uid: 1692
+ - uid: 310
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 7.5,2.5
parent: 1
- - uid: 1693
+ - uid: 370
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,1.5
+ pos: -1.5,5.5
parent: 1
- - uid: 1694
+ - uid: 371
components:
- type: Transform
- pos: 5.5,3.5
+ pos: -1.5,4.5
parent: 1
- - uid: 1695
+ - uid: 372
components:
- type: Transform
- pos: 10.5,-3.5
+ pos: -1.5,3.5
parent: 1
- - uid: 1696
+ - uid: 373
components:
- type: Transform
- pos: -6.5,3.5
+ pos: -1.5,2.5
parent: 1
-- proto: Rack
- entities:
- - uid: 2006
+ - uid: 374
components:
- type: Transform
- pos: -8.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,1.5
parent: 1
-- proto: Railing
- entities:
- - uid: 1733
+ - uid: 375
components:
- type: Transform
- pos: 0.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
parent: 1
- - uid: 1734
+ - uid: 377
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-11.5
+ pos: -0.5,1.5
parent: 1
- - uid: 1735
+ - uid: 378
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-10.5
+ pos: 0.5,1.5
parent: 1
- - uid: 1736
+ - uid: 379
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-9.5
+ pos: 1.5,1.5
parent: 1
- - uid: 1737
+ - uid: 380
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-6.5
+ pos: 2.5,1.5
parent: 1
- - uid: 1832
+ - uid: 381
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,1.5
parent: 1
-- proto: RailingCorner
- entities:
- - uid: 1731
+ - uid: 382
components:
- type: Transform
- pos: 1.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,1.5
parent: 1
- - uid: 1740
+ - uid: 383
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-5.5
+ pos: 5.5,1.5
parent: 1
- - uid: 1746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-13.5
- parent: 1
-- proto: RandomSpawner
- entities:
- - uid: 1837
+ - uid: 933
components:
- type: Transform
- pos: -11.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,8.5
parent: 1
-- proto: ReagentContainerFlour
- entities:
- - uid: 1760
+ - uid: 991
components:
- type: Transform
- pos: -12.47056,-7.3231416
+ rot: -1.5707963267948966 rad
+ pos: -2.5,6.5
parent: 1
-- proto: ReagentContainerRice
+- proto: DisposalTrunk
entities:
- - uid: 1761
+ - uid: 248
components:
- type: Transform
- pos: -12.262227,-7.4481416
+ rot: -1.5707963267948966 rad
+ pos: 8.5,1.5
parent: 1
-- proto: ReagentContainerSugar
- entities:
- - uid: 1764
+ - uid: 303
components:
- type: Transform
- pos: -12.498338,-7.485883
+ pos: 9.5,9.5
parent: 1
-- proto: ReinforcedPlasmaWindow
- entities:
- - uid: 14
+ - uid: 366
components:
- type: Transform
- pos: 5.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,1.5
parent: 1
- - uid: 15
+ - uid: 367
components:
- type: Transform
- pos: 5.5,-24.5
+ pos: -1.5,8.5
parent: 1
- - uid: 16
+ - uid: 716
components:
- type: Transform
- pos: 5.5,-21.5
+ pos: 9.5,6.5
parent: 1
- - uid: 17
+ - uid: 887
components:
- type: Transform
- pos: 5.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,5.5
parent: 1
- - uid: 18
+ - uid: 934
components:
- type: Transform
- pos: 1.5,-22.5
+ pos: -3.5,9.5
parent: 1
- - uid: 19
+- proto: DisposalUnit
+ entities:
+ - uid: 142
components:
- type: Transform
- pos: 1.5,-21.5
+ pos: -1.5,8.5
parent: 1
- - uid: 20
+ - uid: 292
components:
- type: Transform
- pos: 1.5,-24.5
+ pos: -4.5,1.5
parent: 1
- - uid: 21
+ - uid: 540
components:
- type: Transform
- pos: 1.5,-25.5
+ pos: 8.5,1.5
parent: 1
- - uid: 1723
+ - uid: 930
components:
- type: Transform
- pos: -29.5,-7.5
+ pos: -3.5,9.5
parent: 1
- - uid: 1724
+ - uid: 931
components:
- type: Transform
- pos: -28.5,-7.5
+ pos: 6.5,5.5
parent: 1
- - uid: 1725
+- proto: DisposalYJunction
+ entities:
+ - uid: 333
components:
- type: Transform
- pos: -29.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,1.5
parent: 1
- - uid: 1726
+- proto: DogBed
+ entities:
+ - uid: 844
components:
- type: Transform
- pos: -28.5,-3.5
+ pos: -3.5,5.5
parent: 1
- - uid: 1727
+- proto: DoubleEmergencyAirTankFilled
+ entities:
+ - uid: 2060
components:
- type: Transform
- pos: -32.5,-3.5
+ pos: 10.402694,21.702908
parent: 1
- - uid: 1728
+ - uid: 2061
components:
- type: Transform
- pos: -31.5,-3.5
+ pos: 10.652694,21.650824
parent: 1
- - uid: 1729
+- proto: Dresser
+ entities:
+ - uid: 1697
components:
- type: Transform
- pos: -32.5,-7.5
+ pos: -5.5,34.5
parent: 1
- - uid: 1730
+ - uid: 1710
components:
- type: Transform
- pos: -31.5,-7.5
+ pos: -0.5,35.5
parent: 1
-- proto: Shovel
+- proto: DrinkAleBottleFull
entities:
- - uid: 1681
+ - uid: 193
components:
- type: Transform
- pos: -14.099554,2.0229537
+ pos: -1.3561413,0.19765961
parent: 1
- - uid: 1906
+ - uid: 203
components:
- type: Transform
- pos: 0.57554865,13.388299
+ pos: 2.3565233,0.16640961
parent: 1
-- proto: SignalButtonDirectional
+- proto: DrinkBeerBottleFull
entities:
- - uid: 1858
+ - uid: 240
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-3.5
+ pos: -5.5940914,1.8435847
parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 1855:
- - Pressed: Toggle
- 1856:
- - Pressed: Toggle
- 1857:
- - Pressed: Toggle
- - uid: 1859
+ - uid: 600
components:
- type: Transform
- pos: 5.5,-20.5
+ pos: -5.260758,1.8540014
parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 1852:
- - Pressed: Toggle
- 1853:
- - Pressed: Toggle
- 1854:
- - Pressed: Toggle
-- proto: Sink
- entities:
- - uid: 1697
+ - uid: 1228
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,2.5
+ pos: 12.692219,31.463152
parent: 1
- - uid: 1698
+ - uid: 1229
components:
- type: Transform
- pos: -12.5,-9.5
+ pos: 12.535969,31.640234
parent: 1
-- proto: SMESBasic
- entities:
- - uid: 1304
+ - uid: 1928
components:
- type: Transform
- pos: 4.5,2.5
+ pos: 12.806802,31.640234
parent: 1
-- proto: SpawnMobCatClarpy
+- proto: DrinkBeerCan
entities:
- - uid: 1015
+ - uid: 689
components:
- type: Transform
- pos: -7.5,-13.5
+ pos: -2.0219421,-4.3052683
parent: 1
-- proto: SpawnPointPirate
- entities:
- - uid: 1833
+ - uid: 2027
components:
- type: Transform
- pos: -3.5,-9.5
+ pos: 22.550758,25.65144
parent: 1
-- proto: SpawnPointPirateCaptain
- entities:
- - uid: 1994
+ - uid: 2029
components:
- type: Transform
- pos: -3.5,-7.5
+ pos: 22.415342,25.234774
parent: 1
-- proto: SpawnPointPirateFirstMate
- entities:
- - uid: 1995
+ - uid: 2030
components:
- type: Transform
- pos: -5.5,-7.5
+ pos: 22.696592,25.234774
parent: 1
-- proto: SpesosTreeSeeds
+- proto: DrinkBottleCognac
entities:
- - uid: 1701
+ - uid: 1128
components:
- type: Transform
- parent: 1700
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: StoolBar
+ pos: -2.9453502,22.326792
+ parent: 1
+- proto: DrinkBottleRum
entities:
- - uid: 1772
+ - uid: 1111
components:
- type: Transform
- pos: -1.5,-10.5
+ pos: -3.1325707,24.551054
parent: 1
- - uid: 1773
+- proto: DrinkKegWood
+ entities:
+ - uid: 1112
components:
- type: Transform
- pos: -2.5,-10.5
+ pos: -3.015983,26.135101
parent: 1
- - uid: 1774
+ - uid: 1113
components:
- type: Transform
- pos: -3.5,-10.5
+ pos: -3.3076496,25.978851
parent: 1
- - uid: 1775
+ - uid: 1116
components:
- type: Transform
- pos: -4.5,-10.5
+ pos: 2.508083,11.4275875
parent: 1
- - uid: 1776
+- proto: DrinkRootBeerJug
+ entities:
+ - uid: 2031
components:
- type: Transform
- pos: -5.5,-10.5
+ pos: -0.9567741,25.242569
parent: 1
-- proto: StorageCanister
+- proto: DrinkRumBottleFull
entities:
- - uid: 1296
+ - uid: 191
components:
- type: Transform
- pos: 9.5,-5.5
+ pos: 2.61694,0.18724298
parent: 1
- - uid: 1297
+ - uid: 206
components:
- type: Transform
- pos: 10.5,-5.5
+ pos: -1.6686413,0.20807624
parent: 1
-- proto: SubstationBasic
- entities:
- - uid: 1305
+ - uid: 278
components:
- type: Transform
- pos: 4.5,3.5
+ pos: -5.529629,2.1210914
parent: 1
-- proto: SuitStorageEVAPirate
- entities:
- - uid: 1138
+ - uid: 598
components:
- type: Transform
- pos: -3.5,3.5
+ pos: -5.2587957,2.1210914
parent: 1
- - uid: 1660
+- proto: DrinkShotGlass
+ entities:
+ - uid: 178
components:
- type: Transform
- pos: -2.5,3.5
+ pos: -7.253187,1.8635483
parent: 1
- - uid: 1661
+ - uid: 180
components:
- type: Transform
- pos: -1.5,3.5
+ pos: -7.55527,1.8739649
parent: 1
-- proto: SuitStoragePirateCap
- entities:
- - uid: 1662
+ - uid: 181
components:
- type: Transform
- pos: -4.5,3.5
+ pos: -7.857353,1.8843815
parent: 1
-- proto: Table
- entities:
- - uid: 575
+ - uid: 232
components:
- type: Transform
- pos: 7.5,0.5
+ pos: -7.732353,1.6552149
parent: 1
- - uid: 1638
+ - uid: 255
components:
- type: Transform
- pos: -12.5,-7.5
+ pos: -7.409437,1.6447983
parent: 1
- - uid: 1639
+ - uid: 1130
components:
- type: Transform
- pos: -12.5,-6.5
+ pos: 1.3630393,4.7888126
parent: 1
- - uid: 1640
+ - uid: 1131
components:
- type: Transform
- pos: -11.5,-6.5
+ pos: 1.7224143,4.7888126
parent: 1
- - uid: 1641
+ - uid: 1132
components:
- type: Transform
- pos: -10.5,-6.5
+ pos: 1.5505393,4.5544376
parent: 1
- - uid: 1648
+- proto: DrinkWaterJug
+ entities:
+ - uid: 2026
components:
- type: Transform
- pos: -1.5,-13.5
+ pos: 15.045713,14.422518
parent: 1
- - uid: 1649
+- proto: DrinkWineBottleFull
+ entities:
+ - uid: 599
components:
- type: Transform
- pos: -2.5,-13.5
+ pos: -5.404629,1.9856746
parent: 1
-- proto: TableReinforced
+- proto: EmergencyLight
entities:
- - uid: 1635
+ - uid: 226
components:
- type: Transform
- pos: -8.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,11.5
parent: 1
- - uid: 1636
+ - uid: 325
components:
- type: Transform
- pos: -8.5,-7.5
+ pos: -2.5,1.5
parent: 1
- - uid: 1637
+ - uid: 326
components:
- type: Transform
- pos: -8.5,-8.5
+ pos: 1.5,8.5
parent: 1
-- proto: TableWood
- entities:
- - uid: 518
+ - uid: 338
components:
- type: Transform
- pos: -0.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,8.5
parent: 1
- - uid: 1705
+ - uid: 363
components:
- type: Transform
- pos: -5.5,-8.5
+ pos: 5.5,1.5
parent: 1
- - uid: 1706
+ - uid: 396
components:
- type: Transform
- pos: -3.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,5.5
parent: 1
- - uid: 1707
+ - uid: 425
components:
- type: Transform
- pos: -14.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,11.5
parent: 1
- - uid: 1911
+ - uid: 426
components:
- type: Transform
- pos: -1.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,10.5
parent: 1
- - uid: 1912
+ - uid: 980
components:
- type: Transform
- pos: -2.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-7.5
parent: 1
-- proto: TableWoodReinforced
- entities:
- - uid: 1642
+ - uid: 982
components:
- type: Transform
- pos: -1.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-7.5
parent: 1
- - uid: 1643
+ - uid: 983
components:
- type: Transform
- pos: -2.5,-11.5
+ pos: 12.5,-0.5
parent: 1
- - uid: 1644
+ - uid: 984
components:
- type: Transform
- pos: -3.5,-11.5
+ pos: -11.5,-0.5
parent: 1
- - uid: 1645
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 223
components:
- type: Transform
- pos: -4.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
parent: 1
- - uid: 1646
+ - uid: 392
components:
- type: Transform
- pos: -5.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,11.5
parent: 1
- - uid: 1647
+ - uid: 473
components:
- type: Transform
- pos: -5.5,-12.5
+ pos: 1.5,9.5
parent: 1
-- proto: ToiletDirtyWater
- entities:
- - uid: 1670
+ - uid: 888
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,11.5
parent: 1
-- proto: ToyFigurineFootsoldier
+- proto: FaxMachineShipAntag
entities:
- - uid: 1782
+ - uid: 63
components:
- type: Transform
- pos: -3.6954622,-8.408158
+ pos: -8.5,10.5
parent: 1
-- proto: VariantCubeBox
+- proto: FenceMetalGate
entities:
- - uid: 1765
+ - uid: 1598
components:
- type: Transform
- pos: -12.315859,-7.418098
+ rot: -1.5707963267948966 rad
+ pos: 10.5,15.5
parent: 1
-- proto: VendingMachineBooze
+- proto: FenceMetalStraight
entities:
- - uid: 1650
+ - uid: 1996
components:
- type: Transform
- pos: -3.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,16.5
parent: 1
-- proto: WallPlastitanium
- entities:
- - uid: 2
+ - uid: 1997
components:
- type: Transform
- pos: -27.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,14.5
parent: 1
- - uid: 6
+- proto: FenceWoodHighGate
+ entities:
+ - uid: 1612
components:
- type: Transform
- pos: 1.5,-26.5
+ pos: -2.5,30.5
parent: 1
- - uid: 7
+ - uid: 1923
components:
- type: Transform
- pos: 5.5,-26.5
+ pos: 7.5,28.5
parent: 1
- - uid: 8
+ - type: Door
+ secondsUntilStateChange: -2234.199
+ state: Opening
+- proto: FenceWoodSmallCorner
+ entities:
+ - uid: 1763
components:
- type: Transform
- pos: 3.5,-26.5
+ pos: -9.5,27.5
parent: 1
- - uid: 9
+- proto: FenceWoodSmallGate
+ entities:
+ - uid: 26
components:
- type: Transform
- pos: 1.5,-23.5
+ pos: -0.5,9.5
parent: 1
- - uid: 10
+ - uid: 35
components:
- type: Transform
- pos: 5.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,4.5
parent: 1
- - uid: 11
+- proto: FenceWoodSmallStraight
+ entities:
+ - uid: 1602
components:
- type: Transform
- pos: 1.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,27.5
parent: 1
- - uid: 12
+ - uid: 1764
components:
- type: Transform
- pos: 5.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,27.5
parent: 1
- - uid: 13
+ - uid: 1765
components:
- type: Transform
- pos: 3.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,27.5
parent: 1
- - uid: 25
+- proto: FireAlarm
+ entities:
+ - uid: 154
components:
- type: Transform
- pos: -33.5,-7.5
+ pos: 2.5,9.5
parent: 1
- - uid: 26
+ - type: DeviceList
+ devices:
+ - 39
+ - 70
+ - 646
+ - 966
+ - 972
+ - 971
+ - 970
+ - 969
+ - 968
+ - 967
+ - 471
+- proto: Firelock
+ entities:
+ - uid: 2
components:
- type: Transform
- pos: -33.5,-3.5
+ pos: 1.5,12.5
parent: 1
- - uid: 27
+ - uid: 39
components:
- type: Transform
- pos: -33.5,-5.5
+ pos: 3.5,9.5
parent: 1
- - uid: 28
+ - uid: 70
components:
- type: Transform
- pos: -30.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,3.5
parent: 1
- - uid: 29
+ - uid: 171
components:
- type: Transform
- pos: -30.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
parent: 1
- - uid: 30
+ - uid: 857
components:
- type: Transform
- pos: -27.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,9.5
parent: 1
- - uid: 31
+- proto: FirelockEdge
+ entities:
+ - uid: 966
components:
- type: Transform
- pos: -27.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,1.5
parent: 1
- - uid: 32
+ - uid: 967
components:
- type: Transform
- pos: -27.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,1.5
parent: 1
- - uid: 33
+ - uid: 968
components:
- type: Transform
- pos: -27.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,1.5
parent: 1
- - uid: 34
+ - uid: 969
components:
- type: Transform
- pos: -27.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,1.5
parent: 1
- - uid: 35
+ - uid: 970
components:
- type: Transform
- pos: -26.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,1.5
parent: 1
- - uid: 36
+ - uid: 971
components:
- type: Transform
- pos: -25.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,1.5
parent: 1
- - uid: 37
+ - uid: 972
components:
- type: Transform
- pos: -24.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,1.5
parent: 1
- - uid: 38
+ - uid: 974
components:
- type: Transform
- pos: -23.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,6.5
parent: 1
- - uid: 39
+- proto: FirelockGlass
+ entities:
+ - uid: 57
components:
- type: Transform
- pos: -22.5,-10.5
+ pos: 8.5,5.5
parent: 1
- - uid: 40
+ - uid: 340
components:
- type: Transform
- pos: -22.5,-11.5
+ pos: 8.5,8.5
parent: 1
- - uid: 41
+ - uid: 635
components:
- type: Transform
- pos: -22.5,-12.5
+ pos: 7.5,4.5
parent: 1
- - uid: 42
+- proto: FlippoLighter
+ entities:
+ - uid: 262
components:
- type: Transform
- pos: -22.5,-13.5
+ pos: -1.498384,-0.11484039
parent: 1
- - uid: 44
+ - uid: 263
components:
- type: Transform
- pos: -21.5,-13.5
+ pos: 2.493622,-0.16692376
parent: 1
- - uid: 45
+ - uid: 756
components:
- type: Transform
- pos: -20.5,-13.5
+ pos: -5.899738,7.826929
parent: 1
- - uid: 46
+- proto: FloorDrain
+ entities:
+ - uid: 157
components:
- type: Transform
- pos: -19.5,-13.5
+ pos: 3.5,10.5
parent: 1
- - uid: 47
+ - type: Fixtures
+ fixtures: {}
+- proto: FloorWaterDecorativeEntity
+ entities:
+ - uid: 81
components:
- type: Transform
- pos: -18.5,-13.5
+ pos: -2.5,27.5
parent: 1
- - uid: 48
+ - uid: 187
components:
- type: Transform
- pos: -17.5,-13.5
+ pos: -1.5,17.5
parent: 1
- - uid: 49
+ - uid: 188
components:
- type: Transform
- pos: -17.5,-14.5
+ pos: -2.5,28.5
parent: 1
- - uid: 50
+ - uid: 204
components:
- type: Transform
- pos: -17.5,-15.5
+ pos: 1.5,22.5
parent: 1
- - uid: 51
+ - uid: 405
components:
- type: Transform
- pos: -17.5,-16.5
+ pos: 2.5,23.5
parent: 1
- - uid: 52
+ - uid: 412
components:
- type: Transform
- pos: -17.5,-17.5
+ pos: -2.5,29.5
parent: 1
- - uid: 53
+ - uid: 457
components:
- type: Transform
- pos: -16.5,-17.5
+ pos: 2.5,22.5
parent: 1
- - uid: 54
+ - uid: 475
components:
- type: Transform
- pos: -15.5,-17.5
+ pos: -2.5,30.5
parent: 1
- - uid: 55
+ - uid: 519
components:
- type: Transform
- pos: -14.5,-17.5
+ pos: 3.5,23.5
parent: 1
- - uid: 56
+ - uid: 696
components:
- type: Transform
- pos: -13.5,-17.5
+ pos: -1.5,19.5
parent: 1
- - uid: 57
+ - uid: 725
components:
- type: Transform
- pos: -12.5,-17.5
+ pos: -1.5,18.5
parent: 1
- - uid: 58
+ - uid: 739
components:
- type: Transform
- pos: -11.5,-17.5
+ pos: 1.5,23.5
parent: 1
- - uid: 59
+ - uid: 786
components:
- type: Transform
- pos: -10.5,-17.5
+ pos: -5.5,23.5
parent: 1
- - uid: 60
+ - uid: 795
components:
- type: Transform
- pos: -9.5,-17.5
+ pos: -7.5,23.5
parent: 1
- - uid: 61
+ - uid: 808
components:
- type: Transform
- pos: -9.5,-18.5
+ pos: -5.5,24.5
parent: 1
- - uid: 62
+ - uid: 809
components:
- type: Transform
- pos: -9.5,-19.5
+ pos: -9.5,23.5
parent: 1
- - uid: 63
+ - uid: 811
components:
- type: Transform
- pos: -9.5,-20.5
+ pos: -8.5,23.5
parent: 1
- - uid: 64
+ - uid: 842
components:
- type: Transform
- pos: -8.5,-20.5
+ pos: -8.5,24.5
parent: 1
- - uid: 65
+ - uid: 850
components:
- type: Transform
- pos: -7.5,-20.5
+ pos: 4.5,23.5
parent: 1
- - uid: 66
+ - uid: 873
components:
- type: Transform
- pos: -6.5,-20.5
+ pos: 5.5,22.5
parent: 1
- - uid: 67
+ - uid: 883
components:
- type: Transform
- pos: -5.5,-20.5
+ pos: 4.5,22.5
parent: 1
- - uid: 68
+ - uid: 890
components:
- type: Transform
- pos: -4.5,-20.5
+ pos: 5.5,23.5
parent: 1
- - uid: 69
+ - uid: 893
components:
- type: Transform
- pos: -3.5,-20.5
+ pos: 3.5,22.5
parent: 1
- - uid: 70
+ - uid: 894
components:
- type: Transform
- pos: -2.5,-20.5
+ pos: -2.5,20.5
parent: 1
- - uid: 71
+ - uid: 923
components:
- type: Transform
- pos: -1.5,-20.5
+ pos: -2.5,31.5
parent: 1
- - uid: 72
+ - uid: 939
components:
- type: Transform
- pos: -0.5,-20.5
+ pos: -2.5,19.5
parent: 1
- - uid: 73
+ - uid: 941
components:
- type: Transform
- pos: 0.5,-20.5
+ pos: -2.5,18.5
parent: 1
- - uid: 74
+ - uid: 977
components:
- type: Transform
- pos: 6.5,-20.5
+ pos: -1.5,20.5
parent: 1
- - uid: 75
+ - uid: 987
components:
- type: Transform
- pos: 7.5,-20.5
+ pos: -2.5,17.5
parent: 1
- - uid: 76
+ - uid: 1166
components:
- type: Transform
- pos: 8.5,-20.5
+ pos: -6.5,23.5
parent: 1
- - uid: 77
+ - uid: 1267
components:
- type: Transform
- pos: 9.5,-20.5
+ pos: -6.5,24.5
parent: 1
- - uid: 78
+ - uid: 1574
components:
- type: Transform
- pos: 10.5,-20.5
+ pos: -7.5,24.5
parent: 1
- - uid: 79
+ - uid: 1613
components:
- type: Transform
- pos: 11.5,-20.5
+ pos: -9.5,24.5
parent: 1
- - uid: 80
+- proto: FloorWaterEntity
+ entities:
+ - uid: 4
components:
- type: Transform
- pos: 11.5,-19.5
+ pos: 3.5,26.5
parent: 1
- - uid: 81
+ - uid: 198
components:
- type: Transform
- pos: 11.5,-18.5
+ pos: -3.5,19.5
parent: 1
- - uid: 82
+ - uid: 205
components:
- type: Transform
- pos: 11.5,-17.5
+ pos: 4.5,25.5
parent: 1
- - uid: 83
+ - uid: 221
components:
- type: Transform
- pos: 12.5,-17.5
+ pos: 0.5,28.5
parent: 1
- - uid: 84
+ - uid: 222
components:
- type: Transform
- pos: 13.5,-17.5
+ pos: 4.5,26.5
parent: 1
- - uid: 85
+ - uid: 347
components:
- type: Transform
- pos: 14.5,-17.5
+ pos: -5.5,21.5
parent: 1
- - uid: 86
+ - uid: 398
components:
- type: Transform
- pos: 15.5,-17.5
+ pos: -0.5,17.5
parent: 1
- - uid: 87
+ - uid: 432
components:
- type: Transform
- pos: 15.5,-16.5
+ pos: -1.5,31.5
parent: 1
- - uid: 88
+ - uid: 437
components:
- type: Transform
- pos: 15.5,-15.5
+ pos: 2.5,25.5
parent: 1
- - uid: 89
+ - uid: 536
components:
- type: Transform
- pos: 15.5,-14.5
+ pos: -0.5,19.5
parent: 1
- - uid: 90
+ - uid: 571
components:
- type: Transform
- pos: 15.5,-13.5
+ pos: 0.5,19.5
parent: 1
- - uid: 91
+ - uid: 606
components:
- type: Transform
- pos: 15.5,-12.5
+ pos: 5.5,21.5
parent: 1
- - uid: 92
+ - uid: 631
components:
- type: Transform
- pos: 15.5,-11.5
+ pos: -8.5,22.5
parent: 1
- - uid: 93
+ - uid: 633
components:
- type: Transform
- pos: 15.5,-10.5
+ pos: 1.5,17.5
parent: 1
- - uid: 272
+ - uid: 641
components:
- type: Transform
- pos: -27.5,-2.5
+ pos: 5.5,20.5
parent: 1
- - uid: 273
+ - uid: 690
components:
- type: Transform
- pos: -27.5,-1.5
+ pos: 2.5,20.5
parent: 1
- - uid: 274
+ - uid: 691
components:
- type: Transform
- pos: -27.5,-0.5
+ pos: 2.5,21.5
parent: 1
- - uid: 275
+ - uid: 693
components:
- type: Transform
- pos: -27.5,0.5
+ pos: 2.5,24.5
parent: 1
- - uid: 276
+ - uid: 695
components:
- type: Transform
- pos: -26.5,0.5
+ pos: 3.5,27.5
parent: 1
- - uid: 277
+ - uid: 697
components:
- type: Transform
- pos: -25.5,0.5
+ pos: 2.5,26.5
parent: 1
- - uid: 278
+ - uid: 698
components:
- type: Transform
- pos: -25.5,1.5
+ pos: 2.5,27.5
parent: 1
- - uid: 279
+ - uid: 699
components:
- type: Transform
- pos: -25.5,2.5
+ pos: 3.5,20.5
parent: 1
- - uid: 280
+ - uid: 706
components:
- type: Transform
- pos: -25.5,3.5
+ pos: 4.5,21.5
parent: 1
- - uid: 337
+ - uid: 707
components:
- type: Transform
- pos: 16.5,-10.5
+ pos: 4.5,20.5
parent: 1
- - uid: 338
+ - uid: 711
components:
- type: Transform
- pos: 17.5,-10.5
+ pos: -5.5,20.5
parent: 1
- - uid: 339
+ - uid: 713
components:
- type: Transform
- pos: 18.5,-10.5
+ pos: -9.5,25.5
parent: 1
- - uid: 340
+ - uid: 729
components:
- type: Transform
- pos: 18.5,-9.5
+ pos: 3.5,21.5
parent: 1
- - uid: 341
+ - uid: 738
components:
- type: Transform
- pos: 18.5,-8.5
+ pos: 3.5,24.5
parent: 1
- - uid: 342
+ - uid: 740
components:
- type: Transform
- pos: 18.5,-7.5
+ pos: 5.5,24.5
parent: 1
- - uid: 343
+ - uid: 741
components:
- type: Transform
- pos: 18.5,-6.5
+ pos: 5.5,25.5
parent: 1
- - uid: 344
+ - uid: 745
components:
- type: Transform
- pos: 18.5,-5.5
+ pos: -6.5,28.5
parent: 1
- - uid: 345
+ - uid: 748
components:
- type: Transform
- pos: 18.5,-4.5
+ pos: -7.5,19.5
parent: 1
- - uid: 346
+ - uid: 753
components:
- type: Transform
- pos: 18.5,-3.5
+ pos: -6.5,25.5
parent: 1
- - uid: 347
+ - uid: 755
components:
- type: Transform
- pos: 18.5,-2.5
+ pos: -6.5,19.5
parent: 1
- - uid: 348
+ - uid: 758
components:
- type: Transform
- pos: 18.5,-1.5
+ pos: -6.5,27.5
parent: 1
- - uid: 349
+ - uid: 759
components:
- type: Transform
- pos: 18.5,-0.5
+ pos: -6.5,21.5
parent: 1
- - uid: 350
+ - uid: 763
components:
- type: Transform
- pos: 18.5,0.5
+ pos: -6.5,26.5
parent: 1
- - uid: 351
+ - uid: 768
components:
- type: Transform
- pos: 18.5,1.5
+ pos: -7.5,27.5
parent: 1
- - uid: 352
+ - uid: 769
components:
- type: Transform
- pos: 17.5,1.5
+ pos: -6.5,22.5
parent: 1
- - uid: 353
+ - uid: 771
components:
- type: Transform
- pos: 17.5,2.5
+ pos: -6.5,20.5
parent: 1
- - uid: 354
+ - uid: 772
components:
- type: Transform
- pos: 17.5,3.5
+ pos: -7.5,26.5
parent: 1
- - uid: 355
+ - uid: 773
components:
- type: Transform
- pos: 17.5,4.5
+ pos: -7.5,21.5
parent: 1
- - uid: 356
+ - uid: 776
components:
- type: Transform
- pos: 16.5,4.5
+ pos: -7.5,25.5
parent: 1
- - uid: 357
+ - uid: 778
components:
- type: Transform
- pos: 16.5,5.5
+ pos: -7.5,22.5
parent: 1
- - uid: 358
+ - uid: 780
components:
- type: Transform
- pos: 16.5,6.5
+ pos: -1.5,28.5
parent: 1
- - uid: 359
+ - uid: 782
components:
- type: Transform
- pos: 16.5,7.5
+ pos: -0.5,20.5
parent: 1
- - uid: 360
+ - uid: 783
components:
- type: Transform
- pos: 16.5,8.5
+ pos: -4.5,21.5
parent: 1
- - uid: 361
+ - uid: 785
components:
- type: Transform
- pos: 15.5,8.5
+ pos: -5.5,27.5
parent: 1
- - uid: 362
+ - uid: 787
components:
- type: Transform
- pos: 14.5,8.5
+ pos: -4.5,27.5
parent: 1
- - uid: 363
+ - uid: 788
components:
- type: Transform
- pos: 13.5,8.5
+ pos: -5.5,28.5
parent: 1
- - uid: 364
+ - uid: 790
components:
- type: Transform
- pos: 12.5,8.5
+ pos: 4.5,19.5
parent: 1
- - uid: 365
+ - uid: 792
components:
- type: Transform
- pos: 11.5,8.5
+ pos: -4.5,28.5
parent: 1
- - uid: 366
+ - uid: 793
components:
- type: Transform
- pos: 10.5,8.5
+ pos: -4.5,20.5
parent: 1
- - uid: 367
+ - uid: 794
components:
- type: Transform
- pos: 10.5,9.5
+ pos: -4.5,18.5
parent: 1
- - uid: 368
+ - uid: 800
components:
- type: Transform
- pos: 10.5,10.5
+ pos: -4.5,26.5
parent: 1
- - uid: 369
+ - uid: 801
components:
- type: Transform
- pos: 10.5,11.5
+ pos: -4.5,19.5
parent: 1
- - uid: 370
+ - uid: 802
components:
- type: Transform
- pos: 9.5,11.5
+ pos: -3.5,20.5
parent: 1
- - uid: 371
+ - uid: 803
components:
- type: Transform
- pos: 8.5,11.5
+ pos: 2.5,19.5
parent: 1
- - uid: 372
+ - uid: 804
components:
- type: Transform
- pos: 7.5,11.5
+ pos: 4.5,24.5
parent: 1
- - uid: 373
+ - uid: 805
components:
- type: Transform
- pos: 6.5,11.5
+ pos: 3.5,19.5
parent: 1
- - uid: 374
+ - uid: 806
components:
- type: Transform
- pos: 5.5,11.5
+ pos: -3.5,17.5
parent: 1
- - uid: 375
+ - uid: 815
components:
- type: Transform
- pos: 4.5,11.5
+ pos: -3.5,18.5
parent: 1
- - uid: 376
+ - uid: 817
components:
- type: Transform
- pos: 4.5,12.5
+ pos: -7.5,18.5
parent: 1
- - uid: 377
+ - uid: 818
components:
- type: Transform
- pos: 4.5,13.5
+ pos: -5.5,19.5
parent: 1
- - uid: 378
+ - uid: 826
components:
- type: Transform
- pos: 4.5,14.5
+ pos: -3.5,27.5
parent: 1
- - uid: 379
+ - uid: 829
components:
- type: Transform
- pos: 4.5,15.5
+ pos: -6.5,18.5
parent: 1
- - uid: 380
+ - uid: 830
components:
- type: Transform
- pos: 3.5,15.5
+ pos: 2.5,18.5
parent: 1
- - uid: 381
+ - uid: 839
components:
- type: Transform
- pos: 1.5,15.5
+ pos: -8.5,21.5
parent: 1
- - uid: 382
+ - uid: 846
components:
- type: Transform
- pos: 2.5,15.5
+ pos: 1.5,20.5
parent: 1
- - uid: 383
+ - uid: 847
components:
- type: Transform
- pos: 0.5,15.5
+ pos: 0.5,18.5
parent: 1
- - uid: 384
+ - uid: 851
components:
- type: Transform
- pos: -0.5,15.5
+ pos: -0.5,26.5
parent: 1
- - uid: 385
+ - uid: 853
components:
- type: Transform
- pos: -1.5,15.5
+ pos: -0.5,18.5
parent: 1
- - uid: 386
+ - uid: 855
components:
- type: Transform
- pos: -2.5,15.5
+ pos: 0.5,20.5
parent: 1
- - uid: 387
+ - uid: 856
components:
- type: Transform
- pos: -2.5,14.5
+ pos: 1.5,21.5
parent: 1
- - uid: 388
+ - uid: 860
components:
- type: Transform
- pos: -2.5,13.5
+ pos: -0.5,28.5
parent: 1
- - uid: 389
+ - uid: 863
components:
- type: Transform
- pos: -2.5,12.5
+ pos: 1.5,27.5
parent: 1
- - uid: 390
+ - uid: 881
components:
- type: Transform
- pos: -2.5,11.5
+ pos: 1.5,19.5
parent: 1
- - uid: 391
+ - uid: 882
components:
- type: Transform
- pos: -3.5,11.5
+ pos: 0.5,17.5
parent: 1
- - uid: 392
+ - uid: 885
components:
- type: Transform
- pos: -4.5,11.5
+ pos: -5.5,22.5
parent: 1
- - uid: 393
+ - uid: 889
components:
- type: Transform
- pos: -5.5,11.5
+ pos: -5.5,25.5
parent: 1
- - uid: 394
+ - uid: 891
components:
- type: Transform
- pos: -6.5,11.5
+ pos: -5.5,26.5
parent: 1
- - uid: 395
+ - uid: 892
components:
- type: Transform
- pos: -7.5,11.5
+ pos: -3.5,28.5
parent: 1
- - uid: 396
+ - uid: 927
components:
- type: Transform
- pos: -8.5,11.5
+ pos: -7.5,20.5
parent: 1
- - uid: 397
+ - uid: 936
components:
- type: Transform
- pos: -9.5,11.5
+ pos: -8.5,25.5
parent: 1
- - uid: 398
+ - uid: 937
components:
- type: Transform
- pos: -10.5,11.5
+ pos: -8.5,26.5
parent: 1
- - uid: 399
+ - uid: 938
components:
- type: Transform
- pos: -11.5,11.5
+ pos: 0.5,25.5
parent: 1
- - uid: 400
+ - uid: 940
components:
- type: Transform
- pos: -12.5,11.5
+ pos: 5.5,26.5
parent: 1
- - uid: 401
+ - uid: 942
components:
- type: Transform
- pos: -13.5,11.5
+ pos: 3.5,25.5
parent: 1
- - uid: 402
+ - uid: 943
components:
- type: Transform
- pos: -14.5,11.5
+ pos: 1.5,26.5
parent: 1
- - uid: 403
+ - uid: 961
components:
- type: Transform
- pos: -15.5,11.5
+ pos: 1.5,24.5
parent: 1
- - uid: 404
+ - uid: 962
components:
- type: Transform
- pos: -15.5,10.5
+ pos: -1.5,27.5
parent: 1
- - uid: 405
+ - uid: 975
components:
- type: Transform
- pos: -15.5,9.5
+ pos: -0.5,27.5
parent: 1
- - uid: 406
+ - uid: 976
components:
- type: Transform
- pos: -15.5,8.5
+ pos: 0.5,27.5
parent: 1
- - uid: 407
+ - uid: 985
components:
- type: Transform
- pos: -16.5,8.5
+ pos: 1.5,28.5
parent: 1
- - uid: 408
+ - uid: 986
components:
- type: Transform
- pos: -17.5,8.5
+ pos: 1.5,18.5
parent: 1
- - uid: 409
+ - uid: 1012
components:
- type: Transform
- pos: -18.5,8.5
+ pos: -9.5,22.5
parent: 1
- - uid: 410
+ - uid: 1013
components:
- type: Transform
- pos: -19.5,8.5
+ pos: 1.5,25.5
parent: 1
- - uid: 411
+ - uid: 1101
components:
- type: Transform
- pos: -20.5,8.5
+ pos: -3.5,29.5
parent: 1
- - uid: 412
+ - uid: 1103
components:
- type: Transform
- pos: -20.5,7.5
+ pos: -1.5,29.5
parent: 1
- - uid: 413
+ - uid: 1104
components:
- type: Transform
- pos: -21.5,7.5
+ pos: -0.5,29.5
parent: 1
- - uid: 414
+ - uid: 1105
components:
- type: Transform
- pos: -22.5,7.5
+ pos: 0.5,29.5
parent: 1
- - uid: 415
+ - uid: 1149
components:
- type: Transform
- pos: -23.5,7.5
+ pos: 0.5,26.5
parent: 1
- - uid: 416
+ - uid: 1163
components:
- type: Transform
- pos: -24.5,7.5
+ pos: -0.5,32.5
parent: 1
- - uid: 417
+ - uid: 1164
components:
- type: Transform
- pos: -25.5,7.5
+ pos: -0.5,31.5
parent: 1
- - uid: 418
+ - uid: 1165
components:
- type: Transform
- pos: -25.5,6.5
+ pos: -3.5,31.5
parent: 1
- - uid: 419
+ - uid: 1169
components:
- type: Transform
- pos: -25.5,5.5
+ pos: -5.5,32.5
parent: 1
- - uid: 420
+ - uid: 1179
components:
- type: Transform
- pos: -25.5,4.5
+ pos: -5.5,31.5
parent: 1
-- proto: WallRock
- entities:
- - uid: 43
+ - uid: 1181
components:
- type: Transform
- pos: 0.5,-27.5
+ pos: -4.5,31.5
parent: 1
- - uid: 94
+ - uid: 1182
components:
- type: Transform
- pos: 0.5,-25.5
+ pos: -1.5,32.5
parent: 1
- - uid: 95
+ - uid: 1183
components:
- type: Transform
- pos: 0.5,-26.5
+ pos: -4.5,32.5
parent: 1
- - uid: 96
+ - uid: 1184
components:
- type: Transform
- pos: 0.5,-23.5
+ pos: -3.5,32.5
parent: 1
- - uid: 97
+- proto: FloraGreyStalagmite1
+ entities:
+ - uid: 1072
components:
- type: Transform
- pos: 0.5,-24.5
+ pos: 0.119210005,17.985949
parent: 1
- - uid: 98
+ - uid: 1076
components:
- type: Transform
- pos: 0.5,-21.5
+ pos: 0.9212934,20.225533
parent: 1
- - uid: 99
+ - uid: 1090
components:
- type: Transform
- pos: 0.5,-22.5
+ pos: 3.8974686,21.029644
parent: 1
- - uid: 100
+- proto: FloraGreyStalagmite2
+ entities:
+ - uid: 1080
components:
- type: Transform
- pos: -0.5,-26.5
+ pos: 4.3766356,24.915062
parent: 1
- - uid: 101
+ - uid: 1081
components:
- type: Transform
- pos: -0.5,-25.5
+ pos: -6.217115,27.456728
parent: 1
- - uid: 102
+ - uid: 1083
components:
- type: Transform
- pos: -0.5,-24.5
+ pos: 2.0016356,18.998394
parent: 1
- - uid: 103
+- proto: FloraGreyStalagmite3
+ entities:
+ - uid: 1069
components:
- type: Transform
- pos: -0.5,-23.5
+ pos: -6.9159393,20.173449
parent: 1
- - uid: 104
+- proto: FloraGreyStalagmite4
+ entities:
+ - uid: 1068
components:
- type: Transform
- pos: -0.5,-22.5
+ pos: -4.4263554,19.527615
parent: 1
- - uid: 105
+ - uid: 1078
components:
- type: Transform
- pos: -0.5,-21.5
+ pos: 0.72998214,26.831728
parent: 1
- - uid: 106
+ - uid: 1079
components:
- type: Transform
- pos: 1.5,-27.5
+ pos: -7.731412,21.873394
parent: 1
- - uid: 107
+ - uid: 1091
components:
- type: Transform
- pos: 1.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -4.0983005,28.205011
parent: 1
- - uid: 108
+ - uid: 1092
components:
- type: Transform
- pos: 0.5,-28.5
+ pos: -0.071281314,28.560894
parent: 1
- - uid: 109
+- proto: FloraGreyStalagmite5
+ entities:
+ - uid: 1071
components:
- type: Transform
- pos: -0.5,-27.5
+ pos: -6.0930223,21.808865
parent: 1
- - uid: 110
+ - uid: 1084
components:
- type: Transform
- pos: -0.5,-27.5
+ pos: -7.6025314,26.165062
parent: 1
- - uid: 111
+ - uid: 1085
components:
- type: Transform
- pos: -15.5,-18.5
+ pos: 2.0953856,25.206728
parent: 1
- - uid: 112
+ - uid: 1086
components:
- type: Transform
- pos: -1.5,-26.5
+ pos: 5.3974686,26.508812
parent: 1
- - uid: 113
+ - uid: 1087
components:
- type: Transform
- pos: -1.5,-25.5
+ pos: -5.685865,27.196312
parent: 1
- - uid: 114
+ - uid: 1724
components:
- type: Transform
- pos: -2.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -1.269352,29.13705
parent: 1
- - uid: 115
+- proto: FloraGreyStalagmite6
+ entities:
+ - uid: 1077
components:
- type: Transform
- pos: -2.5,-24.5
+ pos: 4.1087933,20.256783
parent: 1
- - uid: 116
+ - uid: 1088
components:
- type: Transform
- pos: -2.5,-23.5
+ pos: -4.1129484,19.883812
parent: 1
- - uid: 117
+ - uid: 1089
components:
- type: Transform
- pos: -2.5,-22.5
+ pos: 1.293302,20.373394
parent: 1
- - uid: 118
+- proto: FloraRockSolid01
+ entities:
+ - uid: 1382
components:
- type: Transform
- pos: -2.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 16.276434,25.658834
parent: 1
- - uid: 119
+- proto: FloraRockSolid02
+ entities:
+ - uid: 1564
components:
- type: Transform
- pos: -3.5,-25.5
+ pos: -14.30686,30.469576
parent: 1
- - uid: 120
+- proto: FoamCrossbow
+ entities:
+ - uid: 1752
components:
- type: Transform
- pos: -3.5,-24.5
+ pos: 23.069695,19.9217
parent: 1
- - uid: 121
+- proto: FoodCondimentBottleEnzyme
+ entities:
+ - uid: 2018
components:
- type: Transform
- pos: -3.5,-23.5
+ pos: 4.68371,7.916847
parent: 1
- - uid: 122
+- proto: FoodKebabSkewer
+ entities:
+ - uid: 1108
components:
- type: Transform
- pos: -3.5,-22.5
+ pos: -2.5469892,25.23837
parent: 1
- - uid: 123
+ - uid: 1110
components:
- type: Transform
- pos: -3.5,-21.5
+ pos: -2.401156,25.481426
parent: 1
- - uid: 124
+- proto: FoodMeatHuman
+ entities:
+ - uid: 252
components:
- type: Transform
- pos: -4.5,-25.5
- parent: 1
- - uid: 125
+ parent: 858
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 283
components:
- type: Transform
- pos: -4.5,-24.5
- parent: 1
- - uid: 126
+ parent: 858
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 287
components:
- type: Transform
- pos: -4.5,-23.5
- parent: 1
- - uid: 127
+ parent: 858
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatRatdoubleKebab
+ entities:
+ - uid: 1109
components:
- type: Transform
- pos: -4.5,-22.5
+ pos: -1.5400448,24.477612
parent: 1
- - uid: 128
+- proto: FoodPlate
+ entities:
+ - uid: 212
components:
- type: Transform
- pos: -4.5,-21.5
+ pos: -6.312971,1.7044246
parent: 1
- - uid: 129
+ - uid: 218
components:
- type: Transform
- pos: -5.5,-25.5
+ pos: 9.509022,1.7281315
parent: 1
- - uid: 130
+- proto: FoodSaladCaesar
+ entities:
+ - uid: 1600
components:
- type: Transform
- pos: -5.5,-24.5
+ pos: 2.4884746,-4.2928896
parent: 1
- - uid: 131
+- proto: GasPassiveVent
+ entities:
+ - uid: 1285
components:
- type: Transform
- pos: -5.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,9.5
parent: 1
- - uid: 132
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 359
components:
- type: Transform
- pos: -5.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,8.5
parent: 1
- - uid: 133
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 468
components:
- type: Transform
- pos: -5.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,10.5
parent: 1
- - uid: 134
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeFourway
+ entities:
+ - uid: 354
components:
- type: Transform
- pos: -1.5,-24.5
+ pos: 6.5,11.5
parent: 1
- - uid: 135
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 385
components:
- type: Transform
- pos: -1.5,-23.5
+ pos: 6.5,5.5
parent: 1
- - uid: 136
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 47
components:
- type: Transform
- pos: -1.5,-22.5
+ pos: 5.5,11.5
parent: 1
- - uid: 137
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 266
components:
- type: Transform
- pos: -1.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,11.5
parent: 1
- - uid: 138
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 355
components:
- type: Transform
- pos: -6.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,8.5
parent: 1
- - uid: 139
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 360
components:
- type: Transform
- pos: -6.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,8.5
parent: 1
- - uid: 140
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 406
components:
- type: Transform
- pos: -6.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,9.5
parent: 1
- - uid: 141
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 452
components:
- type: Transform
- pos: -6.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,12.5
parent: 1
- - uid: 142
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 484
components:
- type: Transform
- pos: -7.5,-23.5
+ pos: 6.5,4.5
parent: 1
- - uid: 143
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 485
components:
- type: Transform
- pos: -7.5,-22.5
+ pos: 6.5,9.5
parent: 1
- - uid: 144
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 486
components:
- type: Transform
- pos: -8.5,-22.5
+ pos: 6.5,10.5
parent: 1
- - uid: 145
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 487
components:
- type: Transform
- pos: -8.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,11.5
parent: 1
- - uid: 146
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 488
components:
- type: Transform
- pos: -7.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,9.5
parent: 1
- - uid: 147
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 489
components:
- type: Transform
- pos: -9.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,8.5
parent: 1
- - uid: 148
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 490
components:
- type: Transform
- pos: -9.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,8.5
parent: 1
- - uid: 149
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 499
components:
- type: Transform
- pos: -10.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,8.5
parent: 1
- - uid: 150
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 532
components:
- type: Transform
- pos: -10.5,-21.5
+ pos: 7.5,5.5
parent: 1
- - uid: 151
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 543
components:
- type: Transform
- pos: -11.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,7.5
parent: 1
- - uid: 152
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 573
components:
- type: Transform
- pos: -11.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,9.5
parent: 1
- - uid: 153
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 632
components:
- type: Transform
- pos: -11.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,7.5
parent: 1
- - uid: 154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 645
components:
- type: Transform
- pos: -11.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,6.5
parent: 1
- - uid: 155
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 647
components:
- type: Transform
- pos: -11.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,9.5
parent: 1
- - uid: 156
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 652
components:
- type: Transform
- pos: -10.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,5.5
parent: 1
- - uid: 157
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 653
components:
- type: Transform
- pos: -10.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,8.5
parent: 1
- - uid: 158
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 660
components:
- type: Transform
- pos: -10.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,11.5
parent: 1
- - uid: 159
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 661
components:
- type: Transform
- pos: -15.5,-19.5
+ pos: 6.5,6.5
parent: 1
- - uid: 160
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 663
components:
- type: Transform
- pos: -14.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
parent: 1
- - uid: 161
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 673
components:
- type: Transform
- pos: -14.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,5.5
parent: 1
- - uid: 162
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 674
components:
- type: Transform
- pos: -13.5,-18.5
+ pos: 7.5,4.5
parent: 1
- - uid: 163
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 832
components:
- type: Transform
- pos: -13.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,12.5
parent: 1
- - uid: 164
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 865
components:
- type: Transform
- pos: -12.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,11.5
parent: 1
- - uid: 165
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 944
components:
- type: Transform
- pos: -12.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,11.5
parent: 1
- - uid: 166
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 945
components:
- type: Transform
- pos: -13.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,12.5
parent: 1
- - uid: 167
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1009
components:
- type: Transform
- pos: -13.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,5.5
parent: 1
- - uid: 168
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1320
components:
- type: Transform
- pos: -12.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,10.5
parent: 1
- - uid: 169
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1321
components:
- type: Transform
- pos: -12.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,11.5
parent: 1
- - uid: 170
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 46
components:
- type: Transform
- pos: -20.5,-15.5
+ pos: 5.5,12.5
parent: 1
- - uid: 171
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 357
components:
- type: Transform
- pos: -16.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,6.5
parent: 1
- - uid: 172
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 387
components:
- type: Transform
- pos: -17.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,12.5
parent: 1
- - uid: 173
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 389
components:
- type: Transform
- pos: -18.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,8.5
parent: 1
- - uid: 174
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 410
components:
- type: Transform
- pos: -18.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,8.5
parent: 1
- - uid: 175
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 470
components:
- type: Transform
- pos: -18.5,-16.5
+ pos: 1.5,11.5
parent: 1
- - uid: 176
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 530
components:
- type: Transform
- pos: -18.5,-15.5
+ pos: 7.5,6.5
parent: 1
- - uid: 177
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 630
components:
- type: Transform
- pos: -19.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,9.5
parent: 1
- - uid: 178
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 662
components:
- type: Transform
- pos: -19.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,10.5
parent: 1
- - uid: 179
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPort
+ entities:
+ - uid: 436
components:
- type: Transform
- pos: -19.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,12.5
parent: 1
- - uid: 180
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 717
components:
- type: Transform
- pos: -20.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,11.5
parent: 1
- - uid: 181
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentPump
+ entities:
+ - uid: 356
components:
- type: Transform
- pos: -21.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,10.5
parent: 1
- - uid: 182
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 361
components:
- type: Transform
- pos: -21.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,8.5
parent: 1
- - uid: 183
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 407
components:
- type: Transform
- pos: -22.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,11.5
parent: 1
- - uid: 184
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 471
components:
- type: Transform
- pos: -22.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,5.5
parent: 1
- - uid: 185
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 657
components:
- type: Transform
- pos: -23.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,3.5
parent: 1
- - uid: 186
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 928
components:
- type: Transform
- pos: -23.5,-14.5
+ pos: 6.5,12.5
parent: 1
- - uid: 187
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1010
components:
- type: Transform
- pos: -24.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,5.5
parent: 1
- - uid: 188
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 12
components:
- type: Transform
- pos: -24.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,9.5
parent: 1
- - uid: 189
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 353
components:
- type: Transform
- pos: -23.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,6.5
parent: 1
- - uid: 190
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 541
components:
- type: Transform
- pos: -18.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,3.5
parent: 1
- - uid: 191
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 646
components:
- type: Transform
- pos: -19.5,-14.5
+ pos: 0.5,10.5
parent: 1
- - uid: 192
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 650
components:
- type: Transform
- pos: -23.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,6.5
parent: 1
- - uid: 193
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 666
components:
- type: Transform
- pos: -23.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,10.5
parent: 1
- - uid: 194
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 886
components:
- type: Transform
- pos: -24.5,-13.5
+ pos: 6.5,13.5
parent: 1
- - uid: 195
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 953
components:
- type: Transform
- pos: -24.5,-12.5
+ pos: -7.5,13.5
parent: 1
- - uid: 196
+ - uid: 996
components:
- type: Transform
- pos: -24.5,-11.5
+ pos: -8.5,13.5
parent: 1
- - uid: 197
+ - uid: 999
components:
- type: Transform
- pos: -25.5,-13.5
+ pos: -8.5,14.5
parent: 1
- - uid: 198
+- proto: Girder
+ entities:
+ - uid: 1218
components:
- type: Transform
- pos: -25.5,-12.5
+ pos: -9.5,14.5
parent: 1
- - uid: 199
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 951
components:
- type: Transform
- pos: -25.5,-11.5
+ pos: -7.5,12.5
parent: 1
- - uid: 200
+- proto: Grille
+ entities:
+ - uid: 72
components:
- type: Transform
- pos: -25.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-7.5
parent: 1
- - uid: 201
+ - uid: 311
components:
- type: Transform
- pos: -26.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,9.5
parent: 1
- - uid: 202
+ - uid: 314
components:
- type: Transform
- pos: -27.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,5.5
parent: 1
- - uid: 203
+ - uid: 413
components:
- type: Transform
- pos: -28.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-7.5
parent: 1
- - uid: 204
+ - uid: 422
components:
- type: Transform
- pos: -28.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-3.5
parent: 1
- - uid: 205
+ - uid: 564
components:
- type: Transform
- pos: -28.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-5.5
parent: 1
- - uid: 206
+ - uid: 565
components:
- type: Transform
- pos: -28.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
parent: 1
- - uid: 207
+ - uid: 566
components:
- type: Transform
- pos: -29.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-5.5
parent: 1
- - uid: 208
+ - uid: 567
components:
- type: Transform
- pos: -29.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-5.5
parent: 1
- - uid: 209
+ - uid: 568
components:
- type: Transform
- pos: -30.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
parent: 1
- - uid: 210
+ - uid: 569
components:
- type: Transform
- pos: -30.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-5.5
parent: 1
- - uid: 211
+ - uid: 570
components:
- type: Transform
- pos: -31.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
parent: 1
- - uid: 212
+ - uid: 751
components:
- type: Transform
- pos: -31.5,-9.5
+ pos: 10.5,8.5
parent: 1
- - uid: 213
+ - uid: 757
components:
- type: Transform
- pos: -32.5,-8.5
+ pos: 10.5,6.5
parent: 1
- - uid: 214
+ - uid: 904
components:
- type: Transform
- pos: -32.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,0.5
parent: 1
- - uid: 215
+ - uid: 911
components:
- type: Transform
- pos: -33.5,-8.5
+ pos: -4.5,-7.5
parent: 1
- - uid: 216
+ - uid: 912
components:
- type: Transform
- pos: -33.5,-9.5
+ pos: -8.5,-7.5
parent: 1
- - uid: 217
+ - uid: 913
components:
- type: Transform
- pos: -34.5,-8.5
+ pos: -11.5,-3.5
parent: 1
- - uid: 218
+ - uid: 914
components:
- type: Transform
- pos: -34.5,-7.5
+ pos: -11.5,0.5
parent: 1
- - uid: 219
+ - uid: 988
components:
- type: Transform
- pos: -35.5,-7.5
+ pos: 3.5,13.5
parent: 1
- - uid: 220
+ - uid: 1696
components:
- type: Transform
- pos: -35.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,39.5
parent: 1
- - uid: 221
+ - uid: 1833
components:
- type: Transform
- pos: -34.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,39.5
parent: 1
- - uid: 222
+ - uid: 1834
components:
- type: Transform
- pos: -24.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,39.5
parent: 1
- - uid: 223
+ - uid: 1835
components:
- type: Transform
- pos: -31.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,39.5
parent: 1
- - uid: 224
+- proto: hydroponicsSoil
+ entities:
+ - uid: 838
components:
- type: Transform
- pos: -31.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,16.5
parent: 1
- - uid: 225
+ - uid: 2024
components:
- type: Transform
- pos: -30.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,16.5
parent: 1
- - uid: 226
+ - uid: 2025
components:
- type: Transform
- pos: -30.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,16.5
parent: 1
- - uid: 227
+- proto: HydroponicsToolClippers
+ entities:
+ - uid: 2022
components:
- type: Transform
- pos: -29.5,-10.5
+ pos: 12.097572,14.813533
parent: 1
- - uid: 228
+- proto: HydroponicsToolSpade
+ entities:
+ - uid: 816
components:
- type: Transform
- pos: -29.5,-11.5
+ pos: 12.691322,14.646866
parent: 1
- - uid: 229
+- proto: hydroponicsTrayAnchored
+ entities:
+ - uid: 62
components:
- type: Transform
- pos: -29.5,-12.5
+ pos: -4.5,3.5
parent: 1
- - uid: 230
+ - uid: 165
components:
- type: Transform
- pos: -28.5,-12.5
+ pos: -7.5,3.5
parent: 1
- - uid: 231
+ - uid: 166
components:
- type: Transform
- pos: -27.5,-12.5
+ pos: -5.5,3.5
parent: 1
- - uid: 232
+ - uid: 167
components:
- type: Transform
- pos: 0.5,-19.5
+ pos: -6.5,3.5
parent: 1
- - uid: 233
+- proto: IngotGold1
+ entities:
+ - uid: 1825
components:
- type: Transform
- pos: -0.5,-19.5
+ pos: -3.4656801,36.65958
parent: 1
- - uid: 234
+ - uid: 1826
components:
- type: Transform
- pos: -1.5,-19.5
+ pos: -2.6063051,36.72208
parent: 1
- - uid: 235
+ - uid: 1827
components:
- type: Transform
- pos: -2.5,-19.5
+ pos: -2.4031801,35.59708
parent: 1
- - uid: 236
+ - uid: 1828
components:
- type: Transform
- pos: -3.5,-19.5
+ pos: -3.1844301,35.56583
parent: 1
- - uid: 237
+- proto: JanitorialTrolley
+ entities:
+ - uid: 202
components:
- type: Transform
- pos: -4.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,3.5
parent: 1
- - uid: 238
+- proto: JugWeldingFuel
+ entities:
+ - uid: 686
components:
- type: Transform
- pos: -5.5,-19.5
+ pos: -0.27437842,13.09
parent: 1
- - uid: 239
+ - uid: 1008
components:
- type: Transform
- pos: -6.5,-19.5
+ pos: -0.73063827,13.09
parent: 1
- - uid: 240
+- proto: KitchenDeepFryer
+ entities:
+ - uid: 334
components:
- type: Transform
- pos: -7.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,5.5
parent: 1
- - uid: 241
+- proto: KitchenElectricGrill
+ entities:
+ - uid: 774
components:
- type: Transform
- pos: -8.5,-19.5
+ pos: 0.5,7.5
parent: 1
- - uid: 242
+- proto: KitchenKnife
+ entities:
+ - uid: 234
components:
- type: Transform
- pos: -8.5,-18.5
+ pos: 1.4792413,5.5648255
parent: 1
- - uid: 243
+- proto: KitchenMicrowave
+ entities:
+ - uid: 149
components:
- type: Transform
- pos: -8.5,-17.5
+ pos: 2.5,7.5
parent: 1
- - uid: 244
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 346
components:
- type: Transform
- pos: -8.5,-16.5
+ pos: 4.5,6.5
parent: 1
- - uid: 245
+- proto: KitchenSpike
+ entities:
+ - uid: 156
components:
- type: Transform
- pos: -9.5,-16.5
+ pos: 3.5,12.5
parent: 1
- - uid: 246
+- proto: LessLethalVendingMachine
+ entities:
+ - uid: 2056
components:
- type: Transform
- pos: -10.5,-16.5
+ pos: -14.5,23.5
parent: 1
- - uid: 247
+- proto: LuxuryPen
+ entities:
+ - uid: 955
components:
- type: Transform
- pos: -11.5,-16.5
+ pos: -8.4360895,9.877812
parent: 1
- - uid: 248
+- proto: MachineCryoSleepPod
+ entities:
+ - uid: 1114
components:
- type: Transform
- pos: -12.5,-16.5
+ pos: 2.5,10.5
parent: 1
- - uid: 249
+- proto: Mattress
+ entities:
+ - uid: 2023
components:
- type: Transform
- pos: -13.5,-16.5
+ pos: 13.5,14.5
parent: 1
- - uid: 250
+- proto: MedkitAdvancedFilled
+ entities:
+ - uid: 1871
components:
- type: Transform
- pos: -14.5,-16.5
+ pos: -14.551509,14.690411
parent: 1
- - uid: 251
+- proto: MedkitFilled
+ entities:
+ - uid: 1872
components:
- type: Transform
- pos: -15.5,-16.5
+ pos: -13.997746,14.697974
parent: 1
- - uid: 252
+- proto: MedkitToxinFilled
+ entities:
+ - uid: 1873
components:
- type: Transform
- pos: -16.5,-16.5
+ pos: -14.247746,14.875057
parent: 1
- - uid: 253
+- proto: Mirror
+ entities:
+ - uid: 989
components:
- type: Transform
- pos: -16.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,6.5
parent: 1
- - uid: 254
+ - uid: 990
components:
- type: Transform
- pos: -16.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,7.5
parent: 1
- - uid: 255
+- proto: MopItem
+ entities:
+ - uid: 1689
components:
- type: Transform
- pos: -16.5,-13.5
+ pos: 9.467162,3.4911292
parent: 1
- - uid: 256
+- proto: NetworkConfigurator
+ entities:
+ - uid: 2010
components:
- type: Transform
- pos: -16.5,-12.5
+ pos: 24.276703,21.523607
parent: 1
- - uid: 257
+- proto: NFAshtray
+ entities:
+ - uid: 781
components:
- type: Transform
- pos: -17.5,-12.5
+ pos: -6.2673426,6.940201
parent: 1
- - uid: 258
+ - uid: 978
components:
- type: Transform
- pos: -18.5,-12.5
+ pos: -1.4999875,-0.99535155
parent: 1
- - uid: 259
+ - uid: 979
components:
- type: Transform
- pos: -19.5,-12.5
+ pos: 2.5104294,-0.96410155
parent: 1
- - uid: 260
+- proto: NoticeBoardNF
+ entities:
+ - uid: 872
components:
- type: Transform
- pos: -20.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,9.5
parent: 1
- - uid: 261
+- proto: OilJarGhee
+ entities:
+ - uid: 45
components:
- type: Transform
- pos: -21.5,-12.5
+ pos: 4.7203918,4.6294155
parent: 1
- - uid: 262
+ - uid: 160
components:
- type: Transform
- pos: -21.5,-11.5
+ pos: 4.3766418,4.868999
parent: 1
- - uid: 263
+ - uid: 162
components:
- type: Transform
- pos: -21.5,-10.5
+ pos: 4.6995583,4.8585825
parent: 1
- - uid: 264
+ - uid: 172
components:
- type: Transform
- pos: -21.5,-9.5
+ pos: 4.3558083,4.650249
parent: 1
- - uid: 265
+- proto: OrganHumanEyes
+ entities:
+ - uid: 1829
components:
- type: Transform
- pos: -22.5,-9.5
+ pos: -2.9656801,36.081455
parent: 1
- - uid: 266
+- proto: Paper
+ entities:
+ - uid: 5
components:
- type: Transform
- pos: -23.5,-9.5
+ pos: -8.4048395,9.523646
parent: 1
- - uid: 267
+ - uid: 7
components:
- type: Transform
- pos: -24.5,-9.5
+ pos: -8.6548395,9.638229
parent: 1
- - uid: 268
+- proto: PianoInstrument
+ entities:
+ - uid: 276
components:
- type: Transform
- pos: -25.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-4.5
parent: 1
- - uid: 269
+- proto: PinpointerUniversal
+ entities:
+ - uid: 2062
components:
- type: Transform
- pos: -26.5,-9.5
+ pos: -0.5275769,-4.42351
parent: 1
- - uid: 270
+- proto: PirateFlag
+ entities:
+ - uid: 498
components:
- type: Transform
- pos: -26.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,0.5
parent: 1
- - uid: 271
+ - uid: 528
components:
- type: Transform
- pos: -26.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,0.5
parent: 1
- - uid: 281
+ - uid: 529
components:
- type: Transform
- pos: -26.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-6.5
parent: 1
- - uid: 282
+ - uid: 531
components:
- type: Transform
- pos: -26.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-6.5
parent: 1
- - uid: 283
+ - uid: 534
components:
- type: Transform
- pos: -25.5,-1.5
+ pos: -2.5,5.5
parent: 1
- - uid: 284
+ - uid: 537
components:
- type: Transform
- pos: -25.5,-0.5
+ pos: 7.5,9.5
parent: 1
- - uid: 285
+ - uid: 556
components:
- type: Transform
- pos: -24.5,-0.5
+ pos: -1.5,9.5
parent: 1
- - uid: 286
+ - uid: 558
components:
- type: Transform
- pos: -24.5,0.5
+ pos: 6.5,4.5
parent: 1
- - uid: 287
+ - uid: 957
components:
- type: Transform
- pos: -24.5,1.5
+ pos: -4.5,2.5
parent: 1
- - uid: 288
+ - uid: 1758
components:
- type: Transform
- pos: -24.5,2.5
+ pos: 0.5,35.5
parent: 1
- - uid: 289
+ - uid: 1868
components:
- type: Transform
- pos: -15.5,-15.5
+ pos: 13.5,32.5
parent: 1
- - uid: 290
+ - uid: 1990
components:
- type: Transform
- pos: -15.5,-14.5
+ pos: 9.5,19.5
parent: 1
- - uid: 291
+ - uid: 1991
components:
- type: Transform
- pos: -14.5,-15.5
+ pos: -15.5,21.5
parent: 1
- - uid: 292
+- proto: PirateHandyFlag
+ entities:
+ - uid: 1759
components:
- type: Transform
- pos: -13.5,-15.5
+ pos: 13.875859,9.969445
parent: 1
- - uid: 293
+- proto: PlushieCarp
+ entities:
+ - uid: 1434
components:
- type: Transform
- pos: -11.5,-15.5
+ pos: 15.417093,25.484812
parent: 1
- - uid: 294
+- proto: PortableGeneratorPacman
+ entities:
+ - uid: 1910
components:
- type: Transform
- pos: -12.5,-15.5
+ pos: 9.5,17.5
parent: 1
- - uid: 295
+ - type: MaterialStorage
+ storage:
+ Plasma: 1500
+ - type: InsertingMaterialStorage
+- proto: PortableScrubber
+ entities:
+ - uid: 9
components:
- type: Transform
- pos: -10.5,-15.5
+ anchored: True
+ pos: 4.5,12.5
parent: 1
- - uid: 296
+ - type: Physics
+ bodyType: Static
+- proto: PosterContrabandSpaceUp
+ entities:
+ - uid: 742
components:
- type: Transform
- pos: -12.5,-14.5
+ pos: -8.5,2.5
parent: 1
- - uid: 297
+- proto: PowerCellRecharger
+ entities:
+ - uid: 767
components:
- type: Transform
- pos: -13.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,6.5
parent: 1
- - uid: 298
+ - uid: 1560
components:
- type: Transform
- pos: -14.5,-14.5
+ pos: -14.5,17.5
parent: 1
- - uid: 299
+- proto: PoweredLEDLightPostSmall
+ entities:
+ - uid: 1002
components:
- type: Transform
- pos: -15.5,-13.5
+ pos: -15.5,15.5
parent: 1
- - uid: 300
+ - uid: 1368
components:
- type: Transform
- pos: -14.5,-13.5
+ pos: 19.5,24.5
parent: 1
- - uid: 301
+ - uid: 1425
components:
- type: Transform
- pos: -17.5,-11.5
+ pos: 9.5,27.5
parent: 1
- - uid: 302
+ - uid: 1539
components:
- type: Transform
- pos: -18.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,19.5
parent: 1
- - uid: 303
+ - uid: 1766
components:
- type: Transform
- pos: -19.5,-11.5
+ pos: -15.5,28.5
parent: 1
- - uid: 304
+ - uid: 1767
components:
- type: Transform
- pos: -20.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,30.5
parent: 1
- - uid: 305
+ - uid: 1858
components:
- type: Transform
- pos: -20.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,14.5
parent: 1
- - uid: 306
+ - uid: 1927
components:
- type: Transform
- pos: -25.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,31.5
parent: 1
- - uid: 307
+- proto: Poweredlight
+ entities:
+ - uid: 33
components:
- type: Transform
- pos: -24.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,3.5
parent: 1
- - uid: 308
+ - uid: 110
components:
- type: Transform
- pos: -23.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,10.5
parent: 1
- - uid: 309
+ - uid: 207
components:
- type: Transform
- pos: -7.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,12.5
parent: 1
- - uid: 310
+ - uid: 288
components:
- type: Transform
- pos: -6.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,2.5
parent: 1
- - uid: 311
+ - uid: 397
components:
- type: Transform
- pos: -1.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,8.5
parent: 1
- - uid: 312
+ - uid: 720
components:
- type: Transform
- pos: -0.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,8.5
parent: 1
- - uid: 313
+ - uid: 721
components:
- type: Transform
- pos: -2.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,2.5
parent: 1
- - uid: 314
+ - uid: 722
components:
- type: Transform
- pos: -3.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,8.5
parent: 1
- - uid: 315
+ - uid: 746
components:
- type: Transform
- pos: -4.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,3.5
parent: 1
- - uid: 316
+ - uid: 959
components:
- type: Transform
- pos: -1.5,-17.5
+ pos: 4.5,12.5
parent: 1
- - uid: 318
+ - uid: 1954
components:
- type: Transform
- pos: -7.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,13.5
parent: 1
- - uid: 319
+- proto: PoweredlightColoredBlack
+ entities:
+ - uid: 227
components:
- type: Transform
- pos: 6.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,7.5
parent: 1
- - uid: 320
+ - uid: 256
components:
- type: Transform
- pos: 7.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,8.5
parent: 1
- - uid: 321
+ - uid: 298
components:
- type: Transform
- pos: 8.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,1.5
parent: 1
- - uid: 322
+ - uid: 299
components:
- type: Transform
- pos: 9.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,1.5
parent: 1
- - uid: 323
+ - uid: 300
components:
- type: Transform
- pos: 10.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-4.5
parent: 1
- - uid: 324
+ - uid: 301
components:
- type: Transform
- pos: 10.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-4.5
parent: 1
- - uid: 325
+ - uid: 302
components:
- type: Transform
- pos: 10.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-7.5
parent: 1
- - uid: 326
+ - uid: 304
components:
- type: Transform
- pos: 10.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-2.5
parent: 1
- - uid: 327
+ - uid: 309
components:
- type: Transform
- pos: 11.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-7.5
parent: 1
- - uid: 328
+ - uid: 312
components:
- type: Transform
- pos: 12.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-2.5
parent: 1
- - uid: 329
+ - uid: 445
components:
- type: Transform
- pos: 13.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,5.5
parent: 1
- - uid: 330
+- proto: PoweredSmallLight
+ entities:
+ - uid: 1192
components:
- type: Transform
- pos: 14.5,-16.5
+ pos: 10.5,23.5
parent: 1
- - uid: 331
+ - uid: 1641
components:
- type: Transform
- pos: 14.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,19.5
parent: 1
- - uid: 332
+ - uid: 1854
components:
- type: Transform
- pos: 14.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,33.5
parent: 1
- - uid: 333
+ - uid: 1861
components:
- type: Transform
- pos: 14.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,38.5
parent: 1
- - uid: 334
+ - uid: 1924
components:
- type: Transform
- pos: 14.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,23.5
parent: 1
- - uid: 335
+- proto: Rack
+ entities:
+ - uid: 23
components:
- type: Transform
- pos: 14.5,-11.5
+ pos: -5.5,5.5
parent: 1
- - uid: 336
+ - uid: 64
components:
- type: Transform
- pos: 14.5,-10.5
+ pos: 0.5,4.5
parent: 1
- - uid: 421
+ - uid: 87
components:
- type: Transform
- pos: -24.5,3.5
+ pos: -2.5,13.5
parent: 1
- - uid: 422
+ - uid: 96
components:
- type: Transform
- pos: -24.5,4.5
+ pos: -3.5,13.5
parent: 1
- - uid: 423
+ - uid: 98
components:
- type: Transform
- pos: -24.5,5.5
+ pos: -3.5,11.5
parent: 1
- - uid: 424
+ - uid: 111
components:
- type: Transform
- pos: -24.5,6.5
+ pos: -2.5,11.5
parent: 1
- - uid: 425
+ - uid: 112
components:
- type: Transform
- pos: -23.5,6.5
+ pos: -3.5,8.5
parent: 1
- - uid: 426
+ - uid: 144
components:
- type: Transform
- pos: -22.5,6.5
+ pos: 2.5,4.5
parent: 1
- - uid: 427
+ - uid: 145
components:
- type: Transform
- pos: -21.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,3.5
parent: 1
- - uid: 428
+ - uid: 152
components:
- type: Transform
- pos: -20.5,6.5
+ pos: -1.5,11.5
parent: 1
- - uid: 429
+ - uid: 179
components:
- type: Transform
- pos: -19.5,6.5
+ pos: 1.5,4.5
parent: 1
- - uid: 430
+ - uid: 182
components:
- type: Transform
- pos: -19.5,7.5
+ pos: 4.5,4.5
parent: 1
- - uid: 431
+ - uid: 884
components:
- type: Transform
- pos: -18.5,7.5
+ pos: -1.5,13.5
parent: 1
- - uid: 432
+ - uid: 2059
components:
- type: Transform
- pos: -17.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,21.5
parent: 1
- - uid: 433
+- proto: Railing
+ entities:
+ - uid: 3
components:
- type: Transform
- pos: -16.5,7.5
+ pos: 4.5,24.5
parent: 1
- - uid: 434
+ - uid: 831
components:
- type: Transform
- pos: -15.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,17.5
parent: 1
- - uid: 435
+ - uid: 840
components:
- type: Transform
- pos: -14.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,19.5
parent: 1
- - uid: 436
+ - uid: 925
components:
- type: Transform
- pos: -14.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,18.5
parent: 1
- - uid: 437
+ - uid: 935
components:
- type: Transform
- pos: -14.5,9.5
- parent: 1
- - uid: 438
- components:
- - type: Transform
- pos: -14.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,17.5
parent: 1
- - uid: 439
+ - uid: 992
components:
- type: Transform
- pos: -13.5,10.5
+ pos: 0.5,25.5
parent: 1
- - uid: 440
+ - uid: 1033
components:
- type: Transform
- pos: -12.5,10.5
+ pos: 3.5,24.5
parent: 1
- - uid: 441
+ - uid: 1039
components:
- type: Transform
- pos: -11.5,10.5
+ pos: 5.5,24.5
parent: 1
- - uid: 442
+ - uid: 1040
components:
- type: Transform
- pos: -10.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,21.5
parent: 1
- - uid: 443
+ - uid: 1041
components:
- type: Transform
- pos: -9.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,21.5
parent: 1
- - uid: 444
+ - uid: 1042
components:
- type: Transform
- pos: -8.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,21.5
parent: 1
- - uid: 445
+ - uid: 1043
components:
- type: Transform
- pos: -7.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,21.5
parent: 1
- - uid: 446
+ - uid: 1045
components:
- type: Transform
- pos: -6.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,22.5
parent: 1
- - uid: 447
+ - uid: 1046
components:
- type: Transform
- pos: -5.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,22.5
parent: 1
- - uid: 448
+ - uid: 1048
components:
- type: Transform
- pos: -4.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,22.5
parent: 1
- - uid: 449
+ - uid: 1049
components:
- type: Transform
- pos: -3.5,10.5
+ pos: -9.5,25.5
parent: 1
- - uid: 450
+ - uid: 1050
components:
- type: Transform
- pos: -2.5,10.5
+ pos: -8.5,25.5
parent: 1
- - uid: 451
+ - uid: 1055
components:
- type: Transform
- pos: -1.5,10.5
+ pos: -7.5,25.5
parent: 1
- - uid: 452
+ - uid: 1094
components:
- type: Transform
- pos: -1.5,11.5
+ pos: -4.5,33.5
parent: 1
- - uid: 453
+ - uid: 1106
components:
- type: Transform
- pos: -1.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,28.5
parent: 1
- - uid: 454
+ - uid: 1123
components:
- type: Transform
- pos: -1.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,21.5
parent: 1
- - uid: 455
+ - uid: 1404
components:
- type: Transform
- pos: -1.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,25.5
parent: 1
- - uid: 456
+ - uid: 1405
components:
- type: Transform
- pos: -0.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,25.5
parent: 1
- - uid: 457
+ - uid: 1407
components:
- type: Transform
- pos: 0.5,14.5
+ pos: 22.5,19.5
parent: 1
- - uid: 458
+ - uid: 1408
components:
- type: Transform
- pos: 1.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,23.5
parent: 1
- - uid: 459
+ - uid: 1409
components:
- type: Transform
- pos: 2.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,22.5
parent: 1
- - uid: 460
+ - uid: 1410
components:
- type: Transform
- pos: 3.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,21.5
parent: 1
- - uid: 461
+ - uid: 1607
components:
- type: Transform
- pos: 3.5,13.5
+ pos: -1.5,33.5
parent: 1
- - uid: 462
+ - uid: 1623
components:
- type: Transform
- pos: 3.5,12.5
+ pos: -5.5,33.5
parent: 1
- - uid: 463
+ - uid: 1647
components:
- type: Transform
- pos: 3.5,11.5
+ pos: -3.5,33.5
parent: 1
- - uid: 464
+ - uid: 1725
components:
- type: Transform
- pos: 3.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,29.5
parent: 1
- - uid: 465
+ - uid: 1726
components:
- type: Transform
- pos: 4.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,28.5
parent: 1
- - uid: 466
+ - uid: 1727
components:
- type: Transform
- pos: 5.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,29.5
parent: 1
- - uid: 467
+ - uid: 1728
components:
- type: Transform
- pos: 6.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,31.5
parent: 1
- - uid: 468
+ - uid: 1729
components:
- type: Transform
- pos: 7.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,31.5
parent: 1
- - uid: 469
+- proto: RailingCorner
+ entities:
+ - uid: 128
components:
- type: Transform
- pos: 8.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,26.5
parent: 1
- - uid: 470
+ - uid: 228
components:
- type: Transform
- pos: 9.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,10.5
parent: 1
- - uid: 471
+ - uid: 233
components:
- type: Transform
- pos: 9.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,27.5
parent: 1
- - uid: 472
+ - uid: 789
components:
- type: Transform
- pos: 9.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,21.5
parent: 1
- - uid: 473
+ - uid: 819
components:
- type: Transform
- pos: 9.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,24.5
parent: 1
- - uid: 474
+ - uid: 924
components:
- type: Transform
- pos: 10.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,20.5
parent: 1
- - uid: 475
+ - uid: 929
components:
- type: Transform
- pos: 11.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,20.5
parent: 1
- - uid: 476
+ - uid: 1044
components:
- type: Transform
- pos: 12.5,7.5
+ pos: -5.5,25.5
parent: 1
- - uid: 477
+ - uid: 1060
components:
- type: Transform
- pos: 13.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,22.5
parent: 1
- - uid: 478
+ - uid: 1115
components:
- type: Transform
- pos: 14.5,7.5
+ pos: -3.5,27.5
parent: 1
- - uid: 479
+ - uid: 1402
components:
- type: Transform
- pos: 15.5,7.5
+ pos: 24.5,19.5
parent: 1
- - uid: 480
+ - uid: 1403
components:
- type: Transform
- pos: 15.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,25.5
parent: 1
- - uid: 481
+- proto: RailingCornerSmall
+ entities:
+ - uid: 83
components:
- type: Transform
- pos: 15.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,27.5
parent: 1
- - uid: 482
+ - uid: 129
components:
- type: Transform
- pos: 15.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,26.5
parent: 1
- - uid: 483
+ - uid: 141
components:
- type: Transform
- pos: 15.5,3.5
+ pos: 0.5,20.5
parent: 1
- - uid: 484
+ - uid: 164
components:
- type: Transform
- pos: 16.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,26.5
parent: 1
- - uid: 485
+ - uid: 315
components:
- type: Transform
- pos: 16.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,25.5
parent: 1
- - uid: 486
+ - uid: 628
components:
- type: Transform
- pos: 16.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,19.5
parent: 1
- - uid: 487
+ - uid: 784
components:
- type: Transform
- pos: 16.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,24.5
parent: 1
- - uid: 488
+ - uid: 833
components:
- type: Transform
- pos: 17.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,24.5
parent: 1
- - uid: 489
+ - uid: 926
components:
- type: Transform
- pos: 17.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,18.5
parent: 1
- - uid: 490
+ - uid: 954
components:
- type: Transform
- pos: 17.5,-1.5
+ pos: 1.5,20.5
parent: 1
- - uid: 491
+ - uid: 1047
components:
- type: Transform
- pos: 17.5,-2.5
+ pos: -8.5,22.5
parent: 1
- - uid: 492
+ - uid: 1059
components:
- type: Transform
- pos: 17.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,25.5
parent: 1
- - uid: 493
+ - uid: 1061
components:
- type: Transform
- pos: 17.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,19.5
parent: 1
- - uid: 494
+ - uid: 1118
components:
- type: Transform
- pos: 17.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,27.5
parent: 1
- - uid: 495
+ - uid: 1119
components:
- type: Transform
- pos: 17.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,26.5
parent: 1
- - uid: 496
+ - uid: 1120
components:
- type: Transform
- pos: 17.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,26.5
parent: 1
- - uid: 497
+ - uid: 1121
components:
- type: Transform
- pos: 17.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,25.5
parent: 1
- - uid: 498
+ - uid: 1122
components:
- type: Transform
- pos: 17.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,21.5
parent: 1
- - uid: 499
+ - uid: 1124
components:
- type: Transform
- pos: 15.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,20.5
parent: 1
- - uid: 500
+ - uid: 1406
components:
- type: Transform
- pos: 14.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,19.5
parent: 1
- - uid: 501
+ - uid: 1411
components:
- type: Transform
- pos: 16.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,24.5
parent: 1
- - uid: 502
+ - uid: 1730
components:
- type: Transform
- pos: 16.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,32.5
parent: 1
- - uid: 503
+ - uid: 1731
components:
- type: Transform
- pos: 16.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,32.5
parent: 1
- - uid: 504
+- proto: RandomDrinkBottle
+ entities:
+ - uid: 1129
components:
- type: Transform
- pos: 16.5,-2.5
+ pos: -1.5,26.5
parent: 1
- - uid: 505
+- proto: RandomStalagmiteOrCrystal
+ entities:
+ - uid: 1066
components:
- type: Transform
- pos: 16.5,-3.5
+ pos: -13.5,21.5
parent: 1
- - uid: 506
+ - uid: 1067
components:
- type: Transform
- pos: 16.5,-4.5
+ pos: 4.5,16.5
parent: 1
- - uid: 507
+ - uid: 1093
components:
- type: Transform
- pos: 16.5,-5.5
+ pos: -9.5,16.5
parent: 1
- - uid: 508
+ - uid: 1095
components:
- type: Transform
- pos: 16.5,-6.5
+ pos: -12.5,19.5
parent: 1
- - uid: 509
+ - uid: 1096
components:
- type: Transform
- pos: 16.5,-7.5
+ pos: -10.5,18.5
parent: 1
- - uid: 511
+ - uid: 1097
components:
- type: Transform
- pos: 15.5,-0.5
+ pos: -9.5,21.5
parent: 1
- - uid: 512
+ - uid: 1286
components:
- type: Transform
- pos: 15.5,-1.5
+ pos: 9.5,13.5
parent: 1
- - uid: 513
+ - uid: 1296
components:
- type: Transform
- pos: 15.5,-2.5
+ pos: -5.5,18.5
parent: 1
- - uid: 515
+ - uid: 1562
components:
- type: Transform
- pos: 15.5,-4.5
+ pos: 9.5,26.5
parent: 1
- - uid: 516
+ - uid: 1597
components:
- type: Transform
- pos: -16.5,-8.5
+ pos: 6.5,17.5
parent: 1
- - uid: 517
+ - uid: 1804
components:
- type: Transform
- pos: 15.5,-6.5
+ pos: 6.5,31.5
parent: 1
- - uid: 520
+ - uid: 1908
components:
- type: Transform
- pos: 15.5,0.5
+ pos: -15.5,26.5
parent: 1
- - uid: 521
+ - uid: 1915
components:
- type: Transform
- pos: 15.5,1.5
+ pos: -10.5,25.5
parent: 1
- - uid: 522
+ - uid: 2005
components:
- type: Transform
- pos: 15.5,2.5
+ pos: 3.5,18.5
parent: 1
- - uid: 523
+- proto: ReagentContainerFlour
+ entities:
+ - uid: 2015
components:
- type: Transform
- pos: 14.5,6.5
+ pos: 4.381627,8.771014
parent: 1
- - uid: 524
+ - uid: 2016
components:
- type: Transform
- pos: 14.5,5.5
+ pos: 4.600377,8.666847
parent: 1
- - uid: 525
+- proto: ReagentContainerPepper
+ entities:
+ - uid: 2014
components:
- type: Transform
- pos: 13.5,6.5
+ pos: 0.834986,5.730723
parent: 1
- - uid: 526
+- proto: ReagentContainerRaisin
+ entities:
+ - uid: 2017
components:
- type: Transform
- pos: -10.5,2.5
+ pos: 4.3920436,8.500181
parent: 1
- - uid: 527
+- proto: ReagentContainerRice
+ entities:
+ - uid: 2019
components:
- type: Transform
- pos: 12.5,6.5
+ pos: 4.569127,8.302263
parent: 1
- - uid: 528
+- proto: ReagentContainerSalt
+ entities:
+ - uid: 2013
components:
- type: Transform
- pos: 12.5,5.5
+ pos: 0.5641525,5.668223
parent: 1
- - uid: 529
+- proto: ReinforcedWindow
+ entities:
+ - uid: 582
components:
- type: Transform
- pos: 14.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
parent: 1
- - uid: 530
+ - uid: 583
components:
- type: Transform
- pos: 14.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-5.5
parent: 1
- - uid: 531
+ - uid: 584
components:
- type: Transform
- pos: 14.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
parent: 1
- - uid: 534
+ - uid: 585
components:
- type: Transform
- pos: 14.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-5.5
parent: 1
- - uid: 535
+ - uid: 586
components:
- type: Transform
- pos: 14.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-5.5
parent: 1
- - uid: 536
+ - uid: 587
components:
- type: Transform
- pos: 14.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
parent: 1
- - uid: 537
+ - uid: 588
components:
- type: Transform
- pos: -10.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-5.5
parent: 1
- - uid: 538
+ - uid: 694
components:
- type: Transform
- pos: 11.5,6.5
+ pos: 10.5,5.5
parent: 1
- - uid: 539
+ - uid: 752
components:
- type: Transform
pos: 10.5,6.5
parent: 1
- - uid: 540
+ - uid: 915
components:
- type: Transform
- pos: 8.5,8.5
+ pos: 12.5,0.5
parent: 1
- - uid: 541
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 12.5,-3.5
+ parent: 1
+ - uid: 917
+ components:
+ - type: Transform
+ pos: 5.5,-7.5
+ parent: 1
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 9.5,-7.5
+ parent: 1
+ - uid: 919
+ components:
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 1
+ - uid: 920
+ components:
+ - type: Transform
+ pos: -8.5,-7.5
+ parent: 1
+ - uid: 921
+ components:
+ - type: Transform
+ pos: -11.5,-3.5
+ parent: 1
+ - uid: 922
+ components:
+ - type: Transform
+ pos: -11.5,0.5
+ parent: 1
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1
+ - uid: 1675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,39.5
+ parent: 1
+ - uid: 1735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,39.5
+ parent: 1
+ - uid: 1836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,39.5
+ parent: 1
+ - uid: 1837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,39.5
+ parent: 1
+- proto: RemoteSignaller
+ entities:
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: 24.568369,21.388191
+ parent: 1
+- proto: Retractor
+ entities:
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: -14.526924,19.46004
+ parent: 1
+- proto: Saw
+ entities:
+ - uid: 1869
+ components:
+ - type: Transform
+ pos: -14.50255,19.370592
+ parent: 1
+- proto: SawElectric
+ entities:
+ - uid: 1855
+ components:
+ - type: Transform
+ pos: -14.476463,19.648453
+ parent: 1
+- proto: SeedExtractor
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ pos: -6.5,5.5
+ parent: 1
+- proto: SheetPlasma
+ entities:
+ - uid: 668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.610289,13.663282
+ parent: 1
+ - uid: 669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.3394558,13.652866
+ parent: 1
+ - uid: 2053
+ components:
+ - type: Transform
+ pos: 9.503929,17.419426
+ parent: 1
+ - type: Stack
+ count: 15
+- proto: SheetUranium
+ entities:
+ - uid: 670
+ components:
+ - type: Transform
+ pos: -1.7080126,13.6587715
+ parent: 1
+ - uid: 672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.2977891,13.652866
+ parent: 1
+- proto: Shovel
+ entities:
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: -0.03910017,21.951792
+ parent: 1
+ - uid: 1842
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.814949,35.75033
+ parent: 1
+- proto: ShuttleGunPirateCannon
+ entities:
+ - uid: 2004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,22.5
+ parent: 1
+- proto: SignalButton
+ entities:
+ - uid: 173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 318:
+ - Pressed: Toggle
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 330:
+ - Pressed: Toggle
+ 438:
+ - Pressed: Toggle
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 433:
+ - Pressed: Toggle
+ 313:
+ - Pressed: Toggle
+ - uid: 730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,4.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 365:
+ - Pressed: Toggle
+ - uid: 770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-5.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 386:
+ - Pressed: Toggle
+ 368:
+ - Pressed: Toggle
+ 390:
+ - Pressed: Toggle
+ 403:
+ - Pressed: Toggle
+ 428:
+ - Pressed: Toggle
+ 429:
+ - Pressed: Toggle
+ 329:
+ - Pressed: Toggle
+ - uid: 859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 344:
+ - Pressed: Toggle
+ 341:
+ - Pressed: Toggle
+ 349:
+ - Pressed: Toggle
+ 350:
+ - Pressed: Toggle
+ 351:
+ - Pressed: Toggle
+ 352:
+ - Pressed: Toggle
+ 364:
+ - Pressed: Toggle
+ - uid: 947
+ components:
+ - type: Transform
+ pos: -8.5,-5.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 442:
+ - Pressed: Toggle
+ 439:
+ - Pressed: Toggle
+ - uid: 948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-3.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 449:
+ - Pressed: Toggle
+ 444:
+ - Pressed: Toggle
+ - uid: 949
components:
- type: Transform
+ pos: 9.5,-5.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 454:
+ - Pressed: Toggle
+ 455:
+ - Pressed: Toggle
+ - uid: 950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-3.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 640:
+ - Pressed: Toggle
+ 639:
+ - Pressed: Toggle
+ 89: []
+ 60: []
+- proto: SignalButtonDirectional
+ entities:
+ - uid: 362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 8.5,9.5
parent: 1
- - uid: 542
+ - type: DeviceLinkSource
+ linkedPorts:
+ 431:
+ - Pressed: Toggle
+ - uid: 750
components:
- type: Transform
- pos: 7.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,6.5
parent: 1
- - uid: 543
+ - type: DeviceLinkSource
+ linkedPorts:
+ 337:
+ - Pressed: Toggle
+ - uid: 1640
components:
- type: Transform
- pos: 7.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,38.5
parent: 1
- - uid: 544
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1677:
+ - Pressed: Toggle
+ 1672:
+ - Pressed: Toggle
+ 1734:
+ - Pressed: Toggle
+ 1838:
+ - Pressed: Toggle
+- proto: SignCargo
+ entities:
+ - uid: 474
components:
- type: Transform
- pos: 6.5,8.5
+ pos: 1.5,10.5
parent: 1
- - uid: 545
+- proto: SignElectricalMed
+ entities:
+ - uid: 1427
components:
- type: Transform
- pos: 6.5,9.5
+ pos: 10.5,13.5
parent: 1
- - uid: 546
+ - uid: 1533
components:
- type: Transform
- pos: 5.5,9.5
+ pos: 10.5,17.5
+ parent: 1
+- proto: SinkStemlessWater
+ entities:
+ - uid: 791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.4667277,6.32853
+ parent: 1
+ - uid: 1036
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.4771442,7.3422375
+ parent: 1
+- proto: SinkWide
+ entities:
+ - uid: 981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,7.5
+ parent: 1
+- proto: SMESBasic
+ entities:
+ - uid: 271
+ components:
+ - type: Transform
+ pos: -7.5,11.5
+ parent: 1
+- proto: SodaDispenserEmpty
+ entities:
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+- proto: SpaceCash10
+ entities:
+ - uid: 1821
+ components:
+ - type: Transform
+ pos: -3.4031801,35.737705
+ parent: 1
+ - uid: 1822
+ components:
+ - type: Transform
+ pos: -3.4969301,36.53458
+ parent: 1
+ - uid: 1823
+ components:
+ - type: Transform
+ pos: -2.4052827,36.700047
+ parent: 1
+ - uid: 1824
+ components:
+ - type: Transform
+ pos: -2.4656801,35.75333
+ parent: 1
+- proto: SpaceVillainArcadeFilled
+ entities:
+ - uid: 268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-4.5
+ parent: 1
+ - type: SpamEmitSound
+ enabled: False
+- proto: SpawnMobCatClarpy
+ entities:
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1
+- proto: SpawnMobParrot
+ entities:
+ - uid: 2035
+ components:
+ - type: Transform
+ pos: 15.5,29.5
+ parent: 1
+- proto: SpawnPointPirate
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+- proto: SpawnPointPirateCaptain
+ entities:
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+- proto: SpawnPointPirateFirstMate
+ entities:
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+- proto: StairStageWood
+ entities:
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: -2.5,32.5
+ parent: 1
+- proto: StoolBar
+ entities:
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 533
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
parent: 1
- uid: 547
components:
- type: Transform
- pos: 4.5,9.5
+ pos: 2.5,-3.5
parent: 1
- - uid: 548
+ - uid: 557
components:
- type: Transform
- pos: -2.5,9.5
+ pos: 3.5,-3.5
parent: 1
- - uid: 549
+- proto: SubstationBasic
+ entities:
+ - uid: 289
components:
- type: Transform
- pos: -3.5,9.5
+ pos: -8.5,11.5
parent: 1
- - uid: 550
+- proto: SuitStorageWallmountEVAPirate
+ entities:
+ - uid: 1194
components:
- type: Transform
- pos: -4.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,24.5
parent: 1
- - uid: 551
+ - type: Physics
+ canCollide: False
+ - uid: 1604
components:
- type: Transform
- pos: -5.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,21.5
parent: 1
- - uid: 552
+ - type: Physics
+ canCollide: False
+ - uid: 2058
components:
- type: Transform
- pos: -6.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,23.5
parent: 1
- - uid: 553
+ - type: Physics
+ canCollide: False
+- proto: SuitStorageWallmountPirateCap
+ entities:
+ - uid: 702
components:
- type: Transform
- pos: -7.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,20.5
parent: 1
- - uid: 554
+ - type: Physics
+ canCollide: False
+- proto: SurveillanceCameraRouterSupply
+ entities:
+ - uid: 308
components:
- type: Transform
- pos: -8.5,9.5
+ pos: -6.5,11.5
parent: 1
- - uid: 555
+- proto: SurveillanceCameraSupply
+ entities:
+ - uid: 225
components:
- type: Transform
- pos: -8.5,8.5
+ pos: -2.5,10.5
parent: 1
- - uid: 556
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Storage 2
+ - uid: 393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,5.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Storage 1
+ - uid: 724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,12.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Freezer
+ - uid: 726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,1.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Food Court 1
+ - uid: 727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,1.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Food Court 2
+ - uid: 728
components:
- type: Transform
- pos: -9.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,8.5
parent: 1
- - uid: 557
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Kitchen
+- proto: SurvivalKnife
+ entities:
+ - uid: 1831
components:
- type: Transform
- pos: -9.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -2.4595704,36.201065
parent: 1
- - uid: 558
+- proto: SyringeStimulants
+ entities:
+ - uid: 2011
components:
- type: Transform
- pos: -10.5,9.5
+ pos: 6.487763,7.417817
parent: 1
- - uid: 559
+ - uid: 2012
components:
- type: Transform
- pos: -10.5,8.5
+ pos: 6.487763,7.0949006
parent: 1
- - uid: 560
+- proto: TableCounterWood
+ entities:
+ - uid: 100
components:
- type: Transform
- pos: -11.5,9.5
+ pos: 3.5,2.5
parent: 1
- - uid: 561
+ - uid: 102
components:
- type: Transform
- pos: -11.5,8.5
+ pos: 4.5,2.5
parent: 1
- - uid: 562
+ - uid: 106
components:
- type: Transform
- pos: -12.5,9.5
+ pos: 2.5,2.5
parent: 1
- - uid: 563
+ - uid: 107
components:
- type: Transform
- pos: -12.5,8.5
+ pos: 1.5,2.5
parent: 1
- - uid: 564
+ - uid: 108
components:
- type: Transform
- pos: -13.5,9.5
+ pos: 0.5,2.5
parent: 1
- - uid: 565
+ - uid: 109
components:
- type: Transform
- pos: -13.5,8.5
+ pos: -0.5,2.5
parent: 1
- - uid: 566
+ - uid: 113
components:
- type: Transform
- pos: -0.5,13.5
+ pos: -1.5,2.5
parent: 1
- - uid: 567
+- proto: TableReinforced
+ entities:
+ - uid: 121
components:
- type: Transform
- pos: -0.5,12.5
+ pos: -5.5,6.5
parent: 1
- - uid: 568
+ - uid: 139
components:
- type: Transform
- pos: -0.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,6.5
parent: 1
- - uid: 569
+ - uid: 194
components:
- type: Transform
- pos: -0.5,10.5
+ pos: -8.5,9.5
parent: 1
- - uid: 572
+ - uid: 249
components:
- type: Transform
- pos: 0.5,11.5
+ pos: -6.5,10.5
parent: 1
- - uid: 573
+ - uid: 277
components:
- type: Transform
- pos: -9.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,6.5
parent: 1
- - uid: 577
+ - uid: 307
components:
- type: Transform
- pos: -9.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
parent: 1
- - uid: 578
+ - uid: 343
components:
- type: Transform
- pos: 2.5,13.5
+ pos: -7.5,10.5
parent: 1
- - uid: 579
+ - uid: 399
components:
- type: Transform
- pos: 2.5,12.5
+ pos: -8.5,10.5
parent: 1
- - uid: 580
+ - uid: 400
components:
- type: Transform
- pos: 2.5,11.5
+ pos: -5.5,7.5
parent: 1
- - uid: 582
+ - uid: 450
components:
- type: Transform
- pos: -3.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,7.5
parent: 1
- - uid: 583
+ - uid: 555
components:
- type: Transform
- pos: -3.5,13.5
+ pos: -6.5,7.5
parent: 1
- - uid: 584
+ - uid: 576
components:
- type: Transform
- pos: -3.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,7.5
parent: 1
- - uid: 585
+ - uid: 581
components:
- type: Transform
- pos: -4.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,5.5
parent: 1
- - uid: 586
+ - uid: 608
components:
- type: Transform
- pos: -4.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,5.5
parent: 1
- - uid: 587
+ - uid: 649
components:
- type: Transform
- pos: -4.5,14.5
+ pos: -6.5,6.5
parent: 1
- - uid: 588
+ - uid: 675
components:
- type: Transform
- pos: -5.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,7.5
parent: 1
- - uid: 589
+ - uid: 683
components:
- type: Transform
- pos: -5.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,5.5
parent: 1
- - uid: 590
+ - uid: 692
components:
- type: Transform
- pos: -5.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,7.5
parent: 1
- - uid: 591
+ - uid: 723
components:
- type: Transform
- pos: -6.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,5.5
parent: 1
- - uid: 592
+ - uid: 995
components:
- type: Transform
- pos: -6.5,13.5
+ pos: 4.5,8.5
parent: 1
- - uid: 593
+ - uid: 997
components:
- type: Transform
- pos: -6.5,14.5
+ pos: 4.5,7.5
parent: 1
- - uid: 594
+- proto: TableWood
+ entities:
+ - uid: 11
components:
- type: Transform
- pos: -7.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-4.5
parent: 1
- - uid: 595
+ - uid: 15
components:
- type: Transform
- pos: -7.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-4.5
parent: 1
- - uid: 596
+ - uid: 18
components:
- type: Transform
- pos: -7.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-4.5
parent: 1
- - uid: 597
+ - uid: 75
components:
- type: Transform
- pos: -7.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-4.5
parent: 1
- - uid: 598
+ - uid: 84
components:
- type: Transform
- pos: 5.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
parent: 1
- - uid: 599
+ - uid: 119
components:
- type: Transform
- pos: 5.5,13.5
+ pos: 9.5,1.5
parent: 1
- - uid: 600
+ - uid: 241
components:
- type: Transform
- pos: 5.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-4.5
parent: 1
- - uid: 601
+ - uid: 242
components:
- type: Transform
- pos: 6.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-0.5
parent: 1
- - uid: 602
+ - uid: 243
components:
- type: Transform
- pos: 6.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-0.5
parent: 1
- - uid: 603
+ - uid: 246
components:
- type: Transform
- pos: 6.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-1.5
parent: 1
- - uid: 604
+ - uid: 538
components:
- type: Transform
- pos: 7.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
parent: 1
- - uid: 605
+ - uid: 539
components:
- type: Transform
- pos: 7.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
parent: 1
- - uid: 606
+ - uid: 575
components:
- type: Transform
- pos: 7.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,1.5
parent: 1
- - uid: 607
+ - uid: 591
components:
- type: Transform
- pos: 8.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,1.5
parent: 1
- - uid: 608
+ - uid: 594
components:
- type: Transform
- pos: 8.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,1.5
parent: 1
- - uid: 609
+ - uid: 597
components:
- type: Transform
- pos: 8.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,1.5
parent: 1
- - uid: 610
+ - uid: 1555
components:
- type: Transform
- pos: 9.5,12.5
+ pos: -14.5,17.5
parent: 1
- - uid: 611
+ - uid: 1556
components:
- type: Transform
- pos: 9.5,13.5
+ pos: -14.5,19.5
parent: 1
- - uid: 612
+ - uid: 1558
components:
- type: Transform
- pos: 9.5,14.5
+ pos: -14.5,18.5
parent: 1
- - uid: 613
+ - uid: 1663
components:
- type: Transform
- pos: 11.5,9.5
+ pos: -14.5,24.5
parent: 1
- - uid: 614
+ - uid: 1811
components:
- type: Transform
- pos: 11.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,35.5
parent: 1
- - uid: 615
+ - uid: 1812
components:
- type: Transform
- pos: 11.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,36.5
parent: 1
- - uid: 616
+ - uid: 1813
components:
- type: Transform
- pos: 12.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,36.5
parent: 1
- - uid: 617
+ - uid: 1814
components:
- type: Transform
- pos: 12.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,35.5
parent: 1
- - uid: 618
+- proto: TableWoodReinforced
+ entities:
+ - uid: 1428
components:
- type: Transform
- pos: 12.5,11.5
+ pos: -13.5,14.5
parent: 1
- - uid: 619
+ - uid: 1429
components:
- type: Transform
- pos: 13.5,9.5
+ pos: -14.5,14.5
parent: 1
- - uid: 620
+- proto: TargetClown
+ entities:
+ - uid: 1992
components:
- type: Transform
- pos: 13.5,10.5
+ pos: -10.5,28.5
parent: 1
- - uid: 621
+- proto: TargetDarts
+ entities:
+ - uid: 1750
components:
- type: Transform
- pos: 13.5,11.5
+ pos: -12.5,30.5
parent: 1
- - uid: 622
+- proto: TelecomServerFilledFreelance
+ entities:
+ - uid: 2052
components:
- type: Transform
- pos: 14.5,9.5
+ pos: -8.5,12.5
parent: 1
- - uid: 623
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 932
components:
- type: Transform
- pos: 14.5,10.5
+ pos: 9.5,9.5
parent: 1
- - uid: 624
+ - uid: 994
components:
- type: Transform
- pos: 14.5,11.5
+ pos: 9.5,6.5
parent: 1
- - uid: 625
+- proto: ToyFigurineRatServant
+ entities:
+ - uid: 1138
components:
- type: Transform
- pos: 15.5,9.5
+ pos: -5.520999,7.6244407
parent: 1
- - uid: 626
+ - uid: 1139
components:
- type: Transform
- pos: 15.5,10.5
+ pos: -5.323082,7.791107
parent: 1
- - uid: 627
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 1193
components:
- type: Transform
- pos: 15.5,11.5
+ pos: 10.5,23.5
parent: 1
- - uid: 628
+- proto: WallmountTelevisionFrame
+ entities:
+ - uid: 737
components:
- type: Transform
- pos: 10.5,12.5
+ pos: -6.5,2.5
parent: 1
- - uid: 629
+- proto: WallReinforced
+ entities:
+ - uid: 127
components:
- type: Transform
- pos: 11.5,12.5
+ pos: 11.5,24.5
parent: 1
- - uid: 630
+ - uid: 270
components:
- type: Transform
- pos: 12.5,12.5
+ pos: 11.5,20.5
parent: 1
- - uid: 631
+ - uid: 297
components:
- type: Transform
- pos: 13.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,-6.5
parent: 1
- - uid: 632
+ - uid: 316
components:
- type: Transform
- pos: 14.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,11.5
parent: 1
- - uid: 633
+ - uid: 317
components:
- type: Transform
- pos: 10.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,10.5
parent: 1
- - uid: 634
+ - uid: 319
components:
- type: Transform
- pos: 5.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,9.5
parent: 1
- - uid: 635
+ - uid: 321
components:
- type: Transform
- pos: 5.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,8.5
parent: 1
- - uid: 636
+ - uid: 322
components:
- type: Transform
- pos: 4.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,7.5
parent: 1
- - uid: 637
+ - uid: 323
components:
- type: Transform
- pos: 3.5,16.5
+ pos: -4.5,-8.5
parent: 1
- - uid: 638
+ - uid: 328
components:
- type: Transform
- pos: 2.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,6.5
parent: 1
- - uid: 639
+ - uid: 418
components:
- type: Transform
- pos: 1.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,5.5
parent: 1
- - uid: 640
+ - uid: 423
components:
- type: Transform
- pos: 0.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,4.5
parent: 1
- - uid: 641
+ - uid: 424
components:
- type: Transform
- pos: -0.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,2.5
parent: 1
- - uid: 642
+ - uid: 427
components:
- type: Transform
- pos: -1.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,3.5
parent: 1
- - uid: 643
+ - uid: 521
components:
- type: Transform
- pos: -2.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-5.5
parent: 1
- - uid: 644
+ - uid: 525
components:
- type: Transform
- pos: -3.5,16.5
+ pos: -8.5,-8.5
parent: 1
- - uid: 645
+ - uid: 526
components:
- type: Transform
- pos: -3.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-6.5
parent: 1
- - uid: 646
+ - uid: 527
components:
- type: Transform
- pos: -4.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-5.5
parent: 1
- - uid: 647
+ - uid: 544
components:
- type: Transform
- pos: -5.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,4.5
parent: 1
- - uid: 648
+ - uid: 546
components:
- type: Transform
- pos: -6.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,3.5
parent: 1
- - uid: 649
+ - uid: 548
components:
- type: Transform
- pos: -1.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,2.5
parent: 1
- - uid: 650
+ - uid: 561
components:
- type: Transform
- pos: -1.5,18.5
+ pos: 5.5,-8.5
parent: 1
- - uid: 651
+ - uid: 607
components:
- type: Transform
- pos: -0.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,1.5
parent: 1
- - uid: 652
+ - uid: 609
components:
- type: Transform
- pos: -0.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-5.5
parent: 1
- - uid: 653
+ - uid: 610
components:
- type: Transform
- pos: 0.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-3.5
parent: 1
- - uid: 654
+ - uid: 617
components:
- type: Transform
- pos: 0.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-6.5
parent: 1
- - uid: 655
+ - uid: 623
components:
- type: Transform
- pos: 1.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-6.5
parent: 1
- - uid: 656
+ - uid: 625
components:
- type: Transform
- pos: 1.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-4.5
parent: 1
- - uid: 657
+ - uid: 655
components:
- type: Transform
- pos: 2.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,7.5
parent: 1
- - uid: 658
+ - uid: 709
components:
- type: Transform
- pos: 2.5,18.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,-5.5
parent: 1
- - uid: 659
+ - uid: 718
components:
- type: Transform
- pos: 3.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,-4.5
parent: 1
- - uid: 660
+ - uid: 731
components:
- type: Transform
- pos: 3.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,0.5
parent: 1
- - uid: 661
+ - uid: 732
components:
- type: Transform
- pos: 4.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,-3.5
parent: 1
- - uid: 662
+ - uid: 734
components:
- type: Transform
- pos: 4.5,18.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,1.5
parent: 1
- - uid: 663
+ - uid: 735
components:
- type: Transform
- pos: -2.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,0.5
parent: 1
- - uid: 664
+ - uid: 903
components:
- type: Transform
- pos: 5.5,17.5
+ pos: 9.5,-8.5
parent: 1
- - uid: 665
+ - uid: 907
components:
- type: Transform
- pos: 6.5,15.5
+ pos: -12.5,-3.5
parent: 1
- - uid: 666
+ - uid: 908
components:
- type: Transform
- pos: 7.5,15.5
+ pos: -12.5,0.5
parent: 1
- - uid: 667
+ - uid: 909
components:
- type: Transform
- pos: -4.5,16.5
+ pos: 13.5,-3.5
parent: 1
- - uid: 668
+ - uid: 910
components:
- type: Transform
- pos: -8.5,13.5
+ pos: 13.5,0.5
parent: 1
- - uid: 669
+ - uid: 1143
components:
- type: Transform
- pos: -8.5,12.5
+ pos: -11.5,12.5
parent: 1
- - uid: 670
+ - uid: 1144
components:
- type: Transform
- pos: -9.5,13.5
+ pos: -12.5,12.5
parent: 1
- - uid: 671
+ - uid: 1145
components:
- type: Transform
- pos: -9.5,12.5
+ pos: -13.5,12.5
parent: 1
- - uid: 672
+ - uid: 1146
components:
- type: Transform
- pos: -10.5,13.5
+ pos: -14.5,12.5
parent: 1
- - uid: 673
+ - uid: 1147
components:
- type: Transform
- pos: -10.5,12.5
+ pos: -15.5,12.5
parent: 1
- - uid: 674
+ - uid: 1156
components:
- type: Transform
- pos: -11.5,13.5
+ pos: -10.5,12.5
parent: 1
- - uid: 675
+ - uid: 1161
components:
- type: Transform
- pos: -11.5,12.5
+ pos: -16.5,13.5
parent: 1
- - uid: 676
+ - uid: 1162
components:
- type: Transform
- pos: -12.5,13.5
+ pos: -16.5,12.5
parent: 1
- - uid: 677
+ - uid: 1185
components:
- type: Transform
- pos: -12.5,12.5
+ pos: 10.5,12.5
parent: 1
- - uid: 678
+ - uid: 1186
components:
- type: Transform
- pos: -13.5,13.5
+ pos: 11.5,12.5
parent: 1
- - uid: 679
+ - uid: 1213
components:
- type: Transform
- pos: -13.5,12.5
+ pos: -9.5,13.5
parent: 1
- - uid: 680
+ - uid: 1239
components:
- type: Transform
- pos: -14.5,13.5
+ pos: 10.5,10.5
parent: 1
- - uid: 681
+ - uid: 1260
components:
- type: Transform
- pos: -14.5,12.5
+ pos: -17.5,16.5
parent: 1
- - uid: 682
+ - uid: 1264
components:
- type: Transform
- pos: -15.5,12.5
+ pos: -17.5,23.5
parent: 1
- - uid: 683
+ - uid: 1266
components:
- type: Transform
- pos: -16.5,11.5
+ pos: -17.5,28.5
parent: 1
- - uid: 684
+ - uid: 1270
components:
- type: Transform
- pos: -16.5,10.5
+ pos: -17.5,21.5
parent: 1
- - uid: 685
+ - uid: 1277
components:
- type: Transform
- pos: -16.5,9.5
+ pos: -17.5,27.5
parent: 1
- - uid: 686
+ - uid: 1278
components:
- type: Transform
- pos: -17.5,11.5
+ pos: -17.5,24.5
parent: 1
- - uid: 687
+ - uid: 1282
components:
- type: Transform
- pos: -17.5,10.5
+ pos: -17.5,18.5
parent: 1
- - uid: 688
+ - uid: 1284
components:
- type: Transform
- pos: -17.5,9.5
+ pos: -17.5,25.5
parent: 1
- - uid: 689
+ - uid: 1297
components:
- type: Transform
- pos: -18.5,11.5
+ pos: -17.5,26.5
parent: 1
- - uid: 690
+ - uid: 1302
components:
- type: Transform
- pos: -18.5,10.5
+ pos: -17.5,17.5
parent: 1
- - uid: 691
+ - uid: 1307
components:
- type: Transform
- pos: -18.5,9.5
+ pos: -17.5,13.5
parent: 1
- - uid: 692
+ - uid: 1308
components:
- type: Transform
- pos: -19.5,10.5
+ pos: -17.5,14.5
parent: 1
- - uid: 693
+ - uid: 1309
components:
- type: Transform
- pos: -19.5,9.5
+ pos: -17.5,15.5
parent: 1
- - uid: 694
+ - uid: 1310
components:
- type: Transform
- pos: -20.5,10.5
+ pos: -17.5,19.5
parent: 1
- - uid: 695
+ - uid: 1311
components:
- type: Transform
- pos: -20.5,9.5
+ pos: -17.5,20.5
parent: 1
- - uid: 696
+ - uid: 1312
components:
- type: Transform
- pos: -21.5,10.5
+ pos: -17.5,29.5
parent: 1
- - uid: 697
+ - uid: 1313
components:
- type: Transform
- pos: -21.5,9.5
+ pos: -17.5,22.5
parent: 1
- - uid: 698
+ - uid: 1315
components:
- type: Transform
- pos: -22.5,8.5
+ pos: -17.5,30.5
parent: 1
- - uid: 699
+ - uid: 1317
components:
- type: Transform
- pos: -23.5,8.5
+ pos: -16.5,30.5
parent: 1
- - uid: 700
+ - uid: 1319
components:
- type: Transform
- pos: -24.5,8.5
+ pos: 10.5,20.5
parent: 1
- - uid: 701
+ - uid: 1324
components:
- type: Transform
- pos: -21.5,8.5
+ pos: 10.5,24.5
parent: 1
- - uid: 702
+ - uid: 1325
components:
- type: Transform
- pos: -22.5,9.5
+ pos: 9.5,10.5
parent: 1
- - uid: 703
+ - uid: 1327
components:
- type: Transform
- pos: -23.5,9.5
+ pos: 16.5,12.5
parent: 1
- - uid: 704
+ - uid: 1329
components:
- type: Transform
- pos: -23.5,10.5
+ pos: -14.5,32.5
parent: 1
- - uid: 705
+ - uid: 1331
components:
- type: Transform
- pos: -19.5,11.5
+ pos: -15.5,32.5
parent: 1
- - uid: 706
+ - uid: 1337
components:
- type: Transform
- pos: -22.5,10.5
+ pos: -16.5,32.5
parent: 1
- - uid: 707
+ - uid: 1342
components:
- type: Transform
- pos: -25.5,8.5
+ pos: 17.5,16.5
parent: 1
- - uid: 708
+ - uid: 1344
components:
- type: Transform
- pos: -26.5,8.5
+ pos: 9.5,11.5
parent: 1
- - uid: 709
+ - uid: 1347
components:
- type: Transform
- pos: -26.5,7.5
+ pos: 13.5,18.5
parent: 1
- - uid: 710
+ - uid: 1350
components:
- type: Transform
- pos: -26.5,6.5
+ pos: 10.5,18.5
parent: 1
- - uid: 711
+ - uid: 1355
components:
- type: Transform
- pos: -26.5,5.5
+ pos: 14.5,18.5
parent: 1
- - uid: 712
+ - uid: 1362
components:
- type: Transform
- pos: -26.5,4.5
+ pos: 12.5,18.5
parent: 1
- - uid: 713
+ - uid: 1364
components:
- type: Transform
- pos: -26.5,3.5
+ pos: 10.5,17.5
parent: 1
- - uid: 714
+ - uid: 1366
components:
- type: Transform
- pos: -26.5,2.5
+ pos: 11.5,18.5
parent: 1
- - uid: 715
+ - uid: 1374
components:
- type: Transform
- pos: -27.5,2.5
+ pos: 11.5,19.5
parent: 1
- - uid: 716
+ - uid: 1412
components:
- type: Transform
- pos: -26.5,1.5
+ pos: 17.5,14.5
parent: 1
- - uid: 717
+ - uid: 1422
components:
- type: Transform
- pos: -27.5,1.5
+ pos: 10.5,13.5
parent: 1
- - uid: 718
+ - uid: 1423
components:
- type: Transform
- pos: -31.5,0.5
+ pos: 17.5,12.5
parent: 1
- - uid: 719
+ - uid: 1424
components:
- type: Transform
- pos: -28.5,2.5
+ pos: 9.5,12.5
parent: 1
- - uid: 720
+ - uid: 1430
components:
- type: Transform
- pos: -28.5,1.5
+ pos: 15.5,18.5
parent: 1
- - uid: 721
+ - uid: 1431
components:
- type: Transform
- pos: -28.5,0.5
+ pos: 12.5,12.5
parent: 1
- - uid: 722
+ - uid: 1528
components:
- type: Transform
- pos: -28.5,-0.5
+ pos: 13.5,12.5
parent: 1
- - uid: 723
+ - uid: 1536
components:
- type: Transform
- pos: -29.5,2.5
+ pos: 14.5,12.5
parent: 1
- - uid: 724
+ - uid: 1538
components:
- type: Transform
- pos: -29.5,1.5
+ pos: 15.5,12.5
parent: 1
- - uid: 725
+ - uid: 1601
components:
- type: Transform
- pos: -29.5,0.5
+ pos: 17.5,13.5
parent: 1
- - uid: 726
+ - uid: 1606
components:
- type: Transform
- pos: -29.5,-0.5
+ pos: 17.5,18.5
parent: 1
- - uid: 727
+ - uid: 1616
components:
- type: Transform
- pos: -30.5,2.5
+ pos: 17.5,15.5
parent: 1
- - uid: 728
+ - uid: 1619
components:
- type: Transform
- pos: -30.5,1.5
+ pos: 16.5,18.5
parent: 1
- - uid: 729
+ - uid: 1620
components:
- type: Transform
- pos: -30.5,0.5
+ pos: 17.5,17.5
parent: 1
- - uid: 730
+ - uid: 1621
components:
- type: Transform
- pos: -30.5,-0.5
+ pos: 11.5,26.5
parent: 1
- - uid: 731
+ - uid: 1624
components:
- type: Transform
- pos: -31.5,-0.5
+ pos: 3.5,30.5
parent: 1
- - uid: 732
+ - uid: 1627
components:
- type: Transform
- pos: -32.5,0.5
+ pos: -16.5,31.5
parent: 1
- - uid: 733
+ - uid: 1628
components:
- type: Transform
- pos: -32.5,-0.5
+ pos: 11.5,25.5
parent: 1
- - uid: 734
+ - uid: 1632
components:
- type: Transform
- pos: -33.5,0.5
+ pos: 2.5,31.5
parent: 1
- - uid: 735
+ - uid: 1635
components:
- type: Transform
- pos: -33.5,-0.5
+ pos: 2.5,30.5
parent: 1
- - uid: 736
+ - uid: 1636
components:
- type: Transform
- pos: -34.5,-0.5
+ pos: 2.5,32.5
parent: 1
- - uid: 737
+ - uid: 1639
components:
- type: Transform
- pos: -35.5,-0.5
+ pos: 1.5,32.5
parent: 1
- - uid: 738
+ - uid: 1649
components:
- type: Transform
- pos: -35.5,-1.5
+ pos: 11.5,21.5
parent: 1
- - uid: 739
+ - uid: 1653
components:
- type: Transform
- pos: -35.5,-2.5
+ pos: -8.5,32.5
parent: 1
- - uid: 740
+ - uid: 1654
components:
- type: Transform
- pos: -35.5,-3.5
+ pos: -9.5,32.5
parent: 1
- - uid: 741
+ - uid: 1694
components:
- type: Transform
- pos: -34.5,-1.5
+ pos: -10.5,32.5
parent: 1
- - uid: 742
+ - uid: 1703
components:
- type: Transform
- pos: -34.5,-2.5
+ pos: -11.5,32.5
parent: 1
- - uid: 743
+ - uid: 1722
components:
- type: Transform
- pos: -34.5,-3.5
+ pos: -12.5,32.5
parent: 1
- - uid: 744
+ - uid: 1754
components:
- type: Transform
- pos: -33.5,-2.5
+ pos: -13.5,32.5
parent: 1
- - uid: 745
+ - uid: 1905
components:
- type: Transform
- pos: -33.5,-1.5
+ pos: -9.5,12.5
parent: 1
- - uid: 746
+ - uid: 1918
components:
- type: Transform
- pos: -32.5,-2.5
+ pos: -8.5,33.5
parent: 1
- - uid: 747
+ - uid: 1995
components:
- type: Transform
- pos: -32.5,-1.5
+ pos: 11.5,23.5
parent: 1
- - uid: 748
+- proto: WallReinforcedDiagonal
+ entities:
+ - uid: 65
components:
- type: Transform
- pos: -31.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-5.5
parent: 1
- - uid: 749
+ - uid: 138
components:
- type: Transform
- pos: -31.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,0.5
parent: 1
- - uid: 750
+ - uid: 435
components:
- type: Transform
- pos: -30.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-4.5
parent: 1
- - uid: 751
+ - uid: 447
components:
- type: Transform
- pos: -30.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-6.5
parent: 1
- - uid: 752
+ - uid: 448
components:
- type: Transform
- pos: -29.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-6.5
parent: 1
- - uid: 753
+ - uid: 535
components:
- type: Transform
- pos: -29.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,0.5
parent: 1
- - uid: 754
+ - uid: 545
components:
- type: Transform
- pos: -28.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,1.5
parent: 1
- - uid: 755
+ - uid: 549
components:
- type: Transform
- pos: -28.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-6.5
parent: 1
- - uid: 756
+ - uid: 550
components:
- type: Transform
- pos: -23.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-4.5
parent: 1
- - uid: 757
+ - uid: 595
components:
- type: Transform
- pos: -23.5,4.5
+ pos: -10.5,1.5
parent: 1
- - uid: 758
+ - uid: 611
components:
- type: Transform
- pos: -23.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-3.5
parent: 1
- - uid: 759
+ - uid: 712
components:
- type: Transform
- pos: -23.5,2.5
+ pos: -4.5,-5.5
parent: 1
- - uid: 760
+ - uid: 736
components:
- type: Transform
- pos: -23.5,1.5
+ pos: 10.5,-3.5
parent: 1
- uid: 761
components:
- type: Transform
- pos: -22.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-6.5
parent: 1
- uid: 762
components:
- type: Transform
- pos: -22.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-5.5
parent: 1
- - uid: 763
+ - uid: 766
components:
- type: Transform
- pos: -22.5,3.5
+ pos: 9.5,-5.5
parent: 1
- - uid: 764
+- proto: WallRock
+ entities:
+ - uid: 69
components:
- type: Transform
- pos: -22.5,2.5
+ pos: -13.5,10.5
parent: 1
- - uid: 765
+ - uid: 296
components:
- type: Transform
- pos: -18.5,6.5
+ pos: -13.5,11.5
parent: 1
- - uid: 766
+ - uid: 703
components:
- type: Transform
- pos: -21.5,5.5
+ pos: 5.5,27.5
parent: 1
- - uid: 767
+ - uid: 956
components:
- type: Transform
- pos: -21.5,4.5
+ pos: -11.5,10.5
parent: 1
- - uid: 768
+ - uid: 958
components:
- type: Transform
- pos: -21.5,3.5
+ pos: 11.5,10.5
parent: 1
- - uid: 769
+ - uid: 960
components:
- type: Transform
- pos: -20.5,5.5
+ pos: -10.5,10.5
parent: 1
- - uid: 770
+ - uid: 1001
components:
- type: Transform
- pos: -20.5,4.5
+ pos: -12.5,10.5
parent: 1
- - uid: 771
+ - uid: 1038
components:
- type: Transform
- pos: -19.5,5.5
+ pos: 15.5,19.5
parent: 1
- - uid: 772
+ - uid: 1098
components:
- type: Transform
- pos: -21.5,2.5
+ pos: 10.5,25.5
parent: 1
- - uid: 773
+ - uid: 1099
components:
- type: Transform
- pos: -23.5,0.5
+ pos: 17.5,26.5
parent: 1
- - uid: 774
+ - uid: 1107
components:
- type: Transform
- pos: -17.5,6.5
+ pos: -6.5,32.5
parent: 1
- - uid: 775
+ - uid: 1140
components:
- type: Transform
- pos: -16.5,6.5
+ pos: -12.5,11.5
parent: 1
- - uid: 776
+ - uid: 1141
components:
- type: Transform
- pos: -15.5,6.5
+ pos: -11.5,11.5
parent: 1
- - uid: 777
+ - uid: 1142
components:
- type: Transform
- pos: -13.5,7.5
+ pos: -10.5,11.5
parent: 1
- - uid: 778
+ - uid: 1148
components:
- type: Transform
- pos: -12.5,7.5
+ pos: -16.5,17.5
parent: 1
- - uid: 779
+ - uid: 1150
components:
- type: Transform
- pos: -11.5,7.5
+ pos: -17.5,12.5
parent: 1
- - uid: 780
+ - uid: 1151
components:
- type: Transform
- pos: -10.5,7.5
+ pos: -16.5,16.5
parent: 1
- - uid: 781
+ - uid: 1152
components:
- type: Transform
- pos: 13.5,3.5
+ pos: -11.5,14.5
parent: 1
- - uid: 783
+ - uid: 1153
components:
- type: Transform
- pos: 13.5,-15.5
+ pos: -13.5,13.5
parent: 1
- - uid: 784
+ - uid: 1154
components:
- type: Transform
- pos: 13.5,-14.5
+ pos: -14.5,13.5
parent: 1
- - uid: 785
+ - uid: 1155
components:
- type: Transform
- pos: 13.5,-13.5
+ pos: -12.5,13.5
parent: 1
- - uid: 786
+ - uid: 1157
components:
- type: Transform
- pos: 13.5,-12.5
+ pos: -16.5,11.5
parent: 1
- - uid: 787
+ - uid: 1158
components:
- type: Transform
- pos: 13.5,-11.5
+ pos: -15.5,11.5
parent: 1
- - uid: 788
+ - uid: 1159
components:
- type: Transform
- pos: 13.5,-10.5
+ pos: -16.5,15.5
parent: 1
- - uid: 790
+ - uid: 1160
components:
- type: Transform
- pos: 12.5,-15.5
+ pos: -16.5,14.5
parent: 1
- - uid: 791
+ - uid: 1168
components:
- type: Transform
- pos: 12.5,-14.5
+ pos: -16.5,25.5
parent: 1
- - uid: 792
+ - uid: 1170
components:
- type: Transform
- pos: 12.5,-13.5
+ pos: -16.5,22.5
parent: 1
- - uid: 793
+ - uid: 1171
components:
- type: Transform
- pos: 12.5,-12.5
+ pos: -16.5,18.5
parent: 1
- - uid: 794
+ - uid: 1172
components:
- type: Transform
- pos: 12.5,-11.5
+ pos: -16.5,20.5
parent: 1
- - uid: 795
+ - uid: 1173
components:
- type: Transform
- pos: 12.5,-10.5
+ pos: -16.5,24.5
parent: 1
- - uid: 796
+ - uid: 1174
components:
- type: Transform
- pos: 12.5,-9.5
+ pos: -16.5,21.5
parent: 1
- - uid: 797
+ - uid: 1175
components:
- type: Transform
- pos: 11.5,-15.5
+ pos: -16.5,23.5
parent: 1
- - uid: 798
+ - uid: 1176
components:
- type: Transform
- pos: 11.5,-14.5
+ pos: -16.5,19.5
parent: 1
- - uid: 799
+ - uid: 1177
components:
- type: Transform
- pos: 11.5,-13.5
+ pos: -16.5,27.5
parent: 1
- - uid: 800
+ - uid: 1178
components:
- type: Transform
- pos: 11.5,-12.5
+ pos: -16.5,26.5
parent: 1
- - uid: 801
+ - uid: 1180
components:
- type: Transform
- pos: 11.5,-11.5
+ pos: -16.5,28.5
parent: 1
- - uid: 802
+ - uid: 1196
components:
- type: Transform
- pos: 10.5,-15.5
+ pos: -15.5,17.5
parent: 1
- - uid: 803
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: -15.5,13.5
+ parent: 1
+ - uid: 1199
components:
- type: Transform
- pos: 10.5,-14.5
+ pos: -18.5,19.5
parent: 1
- - uid: 804
+ - uid: 1200
components:
- type: Transform
- pos: 9.5,-18.5
+ pos: -18.5,18.5
parent: 1
- - uid: 805
+ - uid: 1201
components:
- type: Transform
- pos: 9.5,-17.5
+ pos: -18.5,17.5
parent: 1
- - uid: 806
+ - uid: 1202
components:
- type: Transform
- pos: 9.5,-16.5
+ pos: -18.5,21.5
parent: 1
- - uid: 807
+ - uid: 1203
components:
- type: Transform
- pos: 9.5,-15.5
+ pos: -18.5,22.5
parent: 1
- - uid: 808
+ - uid: 1204
components:
- type: Transform
- pos: 8.5,-18.5
+ pos: -18.5,23.5
parent: 1
- - uid: 809
+ - uid: 1205
components:
- type: Transform
- pos: 7.5,-18.5
+ pos: -18.5,24.5
parent: 1
- - uid: 810
+ - uid: 1206
components:
- type: Transform
- pos: 8.5,-17.5
+ pos: -18.5,26.5
parent: 1
- - uid: 811
+ - uid: 1207
components:
- type: Transform
- pos: 8.5,-16.5
+ pos: -18.5,25.5
parent: 1
- - uid: 813
+ - uid: 1208
components:
- type: Transform
- pos: -13.5,5.5
+ pos: -18.5,27.5
parent: 1
- - uid: 822
+ - uid: 1209
components:
- type: Transform
- pos: 11.5,-10.5
+ pos: -18.5,28.5
parent: 1
- - uid: 823
+ - uid: 1210
components:
- type: Transform
- pos: 11.5,-9.5
+ pos: -19.5,25.5
parent: 1
- - uid: 824
+ - uid: 1211
components:
- type: Transform
- pos: 11.5,-8.5
+ pos: -19.5,26.5
parent: 1
- - uid: 825
+ - uid: 1212
components:
- type: Transform
- pos: 11.5,-7.5
+ pos: -10.5,13.5
parent: 1
- - uid: 828
+ - uid: 1214
components:
- type: Transform
- pos: -12.5,5.5
+ pos: -19.5,21.5
parent: 1
- - uid: 829
+ - uid: 1215
components:
- type: Transform
- pos: -14.5,5.5
+ pos: -19.5,20.5
parent: 1
- - uid: 830
+ - uid: 1216
components:
- type: Transform
- pos: -15.5,5.5
+ pos: -18.5,20.5
parent: 1
- - uid: 831
+ - uid: 1217
components:
- type: Transform
- pos: 9.5,-7.5
+ pos: -11.5,13.5
parent: 1
- - uid: 832
+ - uid: 1219
components:
- type: Transform
- pos: 10.5,-7.5
+ pos: -18.5,13.5
parent: 1
- - uid: 833
+ - uid: 1220
components:
- type: Transform
- pos: 10.5,-8.5
+ pos: -14.5,11.5
parent: 1
- - uid: 834
+ - uid: 1222
components:
- type: Transform
- pos: 10.5,-9.5
+ pos: -10.5,9.5
parent: 1
- - uid: 836
+ - uid: 1223
components:
- type: Transform
- pos: 11.5,-0.5
+ pos: -15.5,14.5
parent: 1
- - uid: 838
+ - uid: 1224
components:
- type: Transform
- pos: -12.5,6.5
+ pos: -18.5,14.5
parent: 1
- - uid: 840
+ - uid: 1225
components:
- type: Transform
- pos: 11.5,3.5
+ pos: -18.5,15.5
parent: 1
- - uid: 841
+ - uid: 1226
components:
- type: Transform
- pos: 11.5,4.5
+ pos: -18.5,16.5
parent: 1
- - uid: 842
+ - uid: 1227
components:
- type: Transform
- pos: 11.5,5.5
+ pos: -17.5,11.5
parent: 1
- - uid: 843
+ - uid: 1230
components:
- type: Transform
- pos: -10.5,4.5
+ pos: 11.5,11.5
parent: 1
- - uid: 844
+ - uid: 1231
components:
- type: Transform
- pos: -11.5,4.5
+ pos: 10.5,11.5
parent: 1
- - uid: 846
+ - uid: 1232
components:
- type: Transform
- pos: -13.5,6.5
+ pos: -18.5,12.5
parent: 1
- - uid: 851
+ - uid: 1233
components:
- type: Transform
- pos: -14.5,6.5
+ pos: -19.5,19.5
parent: 1
- - uid: 856
+ - uid: 1236
components:
- type: Transform
- pos: 13.5,-3.5
+ pos: 13.5,33.5
parent: 1
- - uid: 858
+ - uid: 1240
components:
- type: Transform
- pos: -16.5,-10.5
+ pos: 12.5,11.5
parent: 1
- - uid: 859
+ - uid: 1241
components:
- type: Transform
- pos: 13.5,-6.5
+ pos: 13.5,11.5
parent: 1
- - uid: 861
+ - uid: 1242
components:
- type: Transform
- pos: 13.5,-8.5
+ pos: 14.5,11.5
parent: 1
- - uid: 862
+ - uid: 1243
components:
- type: Transform
- pos: 12.5,-8.5
+ pos: 15.5,11.5
parent: 1
- - uid: 863
+ - uid: 1244
components:
- type: Transform
- pos: 12.5,-7.5
+ pos: 16.5,11.5
parent: 1
- - uid: 864
+ - uid: 1245
components:
- type: Transform
- pos: 12.5,-6.5
+ pos: 17.5,11.5
parent: 1
- - uid: 866
+ - uid: 1246
components:
- type: Transform
- pos: 12.5,-4.5
+ pos: 18.5,11.5
parent: 1
- - uid: 867
+ - uid: 1247
components:
- type: Transform
- pos: 12.5,-3.5
+ pos: 18.5,12.5
parent: 1
- - uid: 869
+ - uid: 1248
components:
- type: Transform
- pos: 14.5,-1.5
+ pos: 18.5,13.5
parent: 1
- - uid: 870
+ - uid: 1249
components:
- type: Transform
- pos: 14.5,-2.5
+ pos: 18.5,14.5
parent: 1
- - uid: 871
+ - uid: 1250
components:
- type: Transform
- pos: 14.5,-3.5
+ pos: 18.5,15.5
parent: 1
- - uid: 874
+ - uid: 1251
components:
- type: Transform
- pos: 14.5,-6.5
+ pos: 18.5,16.5
parent: 1
- - uid: 875
+ - uid: 1252
components:
- type: Transform
- pos: 10.5,-0.5
+ pos: 18.5,17.5
parent: 1
- - uid: 876
+ - uid: 1253
components:
- type: Transform
- pos: 10.5,0.5
+ pos: 18.5,18.5
parent: 1
- - uid: 877
+ - uid: 1254
components:
- type: Transform
- pos: -11.5,6.5
+ pos: 18.5,19.5
parent: 1
- - uid: 879
+ - uid: 1255
components:
- type: Transform
- pos: -11.5,5.5
+ pos: 15.5,17.5
parent: 1
- - uid: 880
+ - uid: 1256
components:
- type: Transform
- pos: 10.5,4.5
+ pos: 13.5,19.5
parent: 1
- - uid: 881
+ - uid: 1257
components:
- type: Transform
- pos: 10.5,5.5
+ pos: 16.5,17.5
parent: 1
- - uid: 882
+ - uid: 1261
components:
- type: Transform
- pos: 9.5,6.5
+ pos: 18.5,26.5
parent: 1
- - uid: 883
+ - uid: 1262
components:
- type: Transform
- pos: 8.5,7.5
+ pos: 19.5,26.5
parent: 1
- - uid: 884
+ - uid: 1263
components:
- type: Transform
- pos: 7.5,7.5
+ pos: -18.5,31.5
parent: 1
- - uid: 885
+ - uid: 1268
components:
- type: Transform
- pos: 6.5,7.5
+ pos: 17.5,19.5
parent: 1
- - uid: 886
+ - uid: 1269
components:
- type: Transform
- pos: 5.5,7.5
+ pos: 16.5,19.5
parent: 1
- - uid: 887
+ - uid: 1271
components:
- type: Transform
- pos: 4.5,8.5
+ pos: 19.5,19.5
parent: 1
- - uid: 888
+ - uid: 1272
components:
- type: Transform
- pos: 5.5,8.5
+ pos: 19.5,18.5
parent: 1
- - uid: 889
+ - uid: 1273
components:
- type: Transform
- pos: 3.5,9.5
+ pos: 19.5,17.5
parent: 1
- - uid: 890
+ - uid: 1274
components:
- type: Transform
- pos: -8.5,5.5
+ pos: 19.5,16.5
parent: 1
- - uid: 891
+ - uid: 1275
components:
- type: Transform
- pos: -8.5,6.5
+ pos: 19.5,15.5
parent: 1
- - uid: 892
+ - uid: 1276
components:
- type: Transform
- pos: -9.5,5.5
+ pos: 20.5,18.5
parent: 1
- - uid: 893
+ - uid: 1281
components:
- type: Transform
- pos: -10.5,6.5
+ pos: 12.5,20.5
parent: 1
- - uid: 894
+ - uid: 1283
components:
- type: Transform
- pos: -1.5,9.5
+ pos: 12.5,24.5
parent: 1
- - uid: 895
+ - uid: 1287
components:
- type: Transform
- pos: -2.5,9.5
+ pos: 14.5,17.5
parent: 1
- - uid: 897
+ - uid: 1288
components:
- type: Transform
- pos: 5.5,6.5
+ pos: 13.5,26.5
parent: 1
- - uid: 914
+ - uid: 1289
components:
- type: Transform
- pos: 5.5,5.5
+ pos: 13.5,17.5
parent: 1
- - uid: 915
+ - uid: 1290
components:
- type: Transform
- pos: 4.5,5.5
+ pos: 16.5,26.5
parent: 1
- - uid: 916
+ - uid: 1291
components:
- type: Transform
- pos: 6.5,6.5
+ pos: -14.5,31.5
parent: 1
- - uid: 917
+ - uid: 1293
components:
- type: Transform
- pos: 6.5,5.5
+ pos: 12.5,17.5
parent: 1
- - uid: 918
+ - uid: 1294
components:
- type: Transform
- pos: 7.5,6.5
+ pos: 14.5,26.5
parent: 1
- - uid: 919
+ - uid: 1298
components:
- type: Transform
- pos: 7.5,5.5
+ pos: -9.5,33.5
parent: 1
- - uid: 920
+ - uid: 1299
components:
- type: Transform
- pos: -10.5,5.5
+ pos: 15.5,26.5
parent: 1
- - uid: 921
+ - uid: 1303
components:
- type: Transform
- pos: -9.5,4.5
+ pos: 18.5,25.5
parent: 1
- - uid: 922
+ - uid: 1322
components:
- type: Transform
- pos: -9.5,3.5
+ pos: 11.5,17.5
parent: 1
- - uid: 923
+ - uid: 1326
components:
- type: Transform
- pos: -9.5,2.5
+ pos: 11.5,13.5
parent: 1
- - uid: 924
+ - uid: 1328
components:
- type: Transform
- pos: -9.5,1.5
+ pos: 12.5,13.5
parent: 1
- - uid: 927
+ - uid: 1330
components:
- type: Transform
- pos: -3.5,-17.5
+ pos: 13.5,13.5
parent: 1
- - uid: 928
+ - uid: 1332
components:
- type: Transform
- pos: -1.5,-16.5
+ pos: 14.5,13.5
parent: 1
- - uid: 929
+ - uid: 1334
components:
- type: Transform
- pos: -3.5,-15.5
+ pos: 15.5,13.5
parent: 1
- - uid: 930
+ - uid: 1335
components:
- type: Transform
- pos: -2.5,-15.5
+ pos: 15.5,16.5
parent: 1
- - uid: 931
+ - uid: 1336
components:
- type: Transform
- pos: -2.5,-16.5
+ pos: 16.5,13.5
parent: 1
- - uid: 932
+ - uid: 1338
components:
- type: Transform
- pos: -2.5,-17.5
+ pos: 16.5,14.5
parent: 1
- - uid: 933
+ - uid: 1339
components:
- type: Transform
- pos: -1.5,-15.5
+ pos: 16.5,15.5
parent: 1
- - uid: 934
+ - uid: 1340
components:
- type: Transform
- pos: -16.5,-6.5
+ pos: 16.5,16.5
parent: 1
- - uid: 935
+ - uid: 1345
components:
- type: Transform
- pos: -16.5,-7.5
+ pos: 14.5,19.5
parent: 1
- - uid: 945
+ - uid: 1346
components:
- type: Transform
- pos: -16.5,-9.5
+ pos: 12.5,19.5
parent: 1
- - uid: 946
+ - uid: 1348
components:
- type: Transform
- pos: -19.5,-10.5
+ pos: -14.5,34.5
parent: 1
- - uid: 947
+ - uid: 1349
components:
- type: Transform
- pos: -18.5,-10.5
+ pos: 12.5,26.5
parent: 1
- - uid: 948
+ - uid: 1351
components:
- type: Transform
- pos: -17.5,-10.5
+ pos: 12.5,25.5
parent: 1
- - uid: 949
+ - uid: 1354
components:
- type: Transform
- pos: -18.5,-9.5
+ pos: -10.5,33.5
parent: 1
- - uid: 950
+ - uid: 1356
components:
- type: Transform
- pos: -17.5,-9.5
+ pos: -16.5,33.5
parent: 1
- - uid: 951
+ - uid: 1357
components:
- type: Transform
- pos: -17.5,-8.5
+ pos: -15.5,33.5
parent: 1
- - uid: 952
+ - uid: 1358
components:
- type: Transform
- pos: -17.5,-7.5
+ pos: -15.5,34.5
parent: 1
- - uid: 953
+ - uid: 1359
components:
- type: Transform
- pos: -19.5,-9.5
+ pos: -17.5,33.5
parent: 1
- - uid: 954
+ - uid: 1360
components:
- type: Transform
- pos: -20.5,-9.5
+ pos: 20.5,26.5
parent: 1
- - uid: 955
+ - uid: 1365
components:
- type: Transform
- pos: -21.5,-8.5
+ pos: 20.5,25.5
parent: 1
- - uid: 956
+ - uid: 1367
components:
- type: Transform
- pos: -20.5,-8.5
+ pos: 19.5,27.5
parent: 1
- - uid: 957
+ - uid: 1369
components:
- type: Transform
- pos: -17.5,-6.5
+ pos: -8.5,36.5
parent: 1
- - uid: 958
+ - uid: 1373
components:
- type: Transform
- pos: 20.5,3.5
+ pos: 20.5,24.5
parent: 1
- - uid: 959
+ - uid: 1375
components:
- type: Transform
- pos: -18.5,-8.5
+ pos: 20.5,27.5
parent: 1
- - uid: 960
+ - uid: 1376
components:
- type: Transform
- pos: -13.5,-13.5
+ pos: 17.5,25.5
parent: 1
- - uid: 961
+ - uid: 1379
components:
- type: Transform
- pos: -12.5,-13.5
+ pos: 20.5,20.5
parent: 1
- - uid: 962
+ - uid: 1380
components:
- type: Transform
- pos: -11.5,-13.5
+ pos: 20.5,19.5
parent: 1
- - uid: 963
+ - uid: 1381
components:
- type: Transform
- pos: -11.5,-14.5
+ pos: 1.5,34.5
parent: 1
- - uid: 964
+ - uid: 1386
components:
- type: Transform
- pos: -10.5,-14.5
+ pos: 13.5,20.5
parent: 1
- - uid: 965
+ - uid: 1389
components:
- type: Transform
- pos: -9.5,-14.5
+ pos: 13.5,25.5
parent: 1
- - uid: 966
+ - uid: 1413
components:
- type: Transform
- pos: -9.5,-15.5
+ pos: 10.5,26.5
parent: 1
- - uid: 967
+ - uid: 1414
components:
- type: Transform
- pos: -8.5,-15.5
+ pos: 10.5,27.5
parent: 1
- - uid: 968
+ - uid: 1419
components:
- type: Transform
- pos: -10.5,-13.5
+ pos: -8.5,31.5
parent: 1
- - uid: 969
+ - uid: 1493
components:
- type: Transform
- pos: -12.5,-12.5
+ pos: -11.5,33.5
parent: 1
- - uid: 970
+ - uid: 1525
components:
- type: Transform
- pos: -13.5,-12.5
+ pos: -13.5,31.5
parent: 1
- - uid: 971
+ - uid: 1526
components:
- type: Transform
- pos: -16.5,-11.5
+ pos: -15.5,31.5
parent: 1
- - uid: 972
+ - uid: 1529
components:
- type: Transform
- pos: -15.5,-12.5
+ pos: -12.5,33.5
parent: 1
- - uid: 973
+ - uid: 1530
components:
- type: Transform
- pos: -14.5,-12.5
+ pos: -13.5,33.5
parent: 1
- - uid: 978
+ - uid: 1531
components:
- type: Transform
- pos: 6.5,-21.5
+ pos: -14.5,33.5
parent: 1
- - uid: 979
+ - uid: 1532
components:
- type: Transform
- pos: 6.5,-22.5
+ pos: -12.5,31.5
parent: 1
- - uid: 980
+ - uid: 1534
components:
- type: Transform
- pos: 6.5,-23.5
+ pos: 18.5,27.5
parent: 1
- - uid: 981
+ - uid: 1535
components:
- type: Transform
- pos: 6.5,-24.5
+ pos: 19.5,25.5
parent: 1
- - uid: 982
+ - uid: 1537
components:
- type: Transform
- pos: 6.5,-25.5
+ pos: -17.5,32.5
parent: 1
- - uid: 983
+ - uid: 1559
components:
- type: Transform
- pos: 6.5,-26.5
+ pos: 4.5,29.5
parent: 1
- - uid: 986
+ - uid: 1569
components:
- type: Transform
- pos: -13.5,4.5
+ pos: 4.5,32.5
parent: 1
- - uid: 988
+ - uid: 1570
components:
- type: Transform
- pos: -12.5,4.5
+ pos: 1.5,30.5
parent: 1
- - uid: 989
+ - uid: 1571
components:
- type: Transform
- pos: -16.5,5.5
+ pos: 0.5,30.5
parent: 1
- - uid: 990
+ - uid: 1572
components:
- type: Transform
- pos: -17.5,5.5
+ pos: -0.5,30.5
parent: 1
- - uid: 991
+ - uid: 1573
components:
- type: Transform
- pos: -18.5,5.5
+ pos: -1.5,30.5
parent: 1
- - uid: 1166
+ - uid: 1575
components:
- type: Transform
- pos: 6.5,-27.5
+ pos: -3.5,30.5
parent: 1
- - uid: 1167
+ - uid: 1576
components:
- type: Transform
- pos: 6.5,-28.5
+ pos: -4.5,30.5
parent: 1
- - uid: 1168
+ - uid: 1577
components:
- type: Transform
- pos: 5.5,-28.5
+ pos: -5.5,30.5
parent: 1
- - uid: 1169
+ - uid: 1578
components:
- type: Transform
- pos: 5.5,-27.5
+ pos: -6.5,30.5
parent: 1
- - uid: 1170
+ - uid: 1579
components:
- type: Transform
- pos: 7.5,-25.5
+ pos: -7.5,30.5
parent: 1
- - uid: 1171
+ - uid: 1580
components:
- type: Transform
- pos: 7.5,-24.5
+ pos: -8.5,30.5
parent: 1
- - uid: 1172
+ - uid: 1581
components:
- type: Transform
- pos: 7.5,-23.5
+ pos: 2.5,29.5
parent: 1
- - uid: 1173
+ - uid: 1582
components:
- type: Transform
- pos: 7.5,-22.5
+ pos: 3.5,29.5
parent: 1
- - uid: 1174
+ - uid: 1583
components:
- type: Transform
- pos: 7.5,-21.5
+ pos: 1.5,29.5
parent: 1
- - uid: 1175
+ - uid: 1584
components:
- type: Transform
- pos: 8.5,-25.5
+ pos: 2.5,28.5
parent: 1
- - uid: 1176
+ - uid: 1585
components:
- type: Transform
- pos: 8.5,-24.5
+ pos: 3.5,28.5
parent: 1
- - uid: 1177
+ - uid: 1586
components:
- type: Transform
- pos: 8.5,-23.5
+ pos: 4.5,28.5
parent: 1
- - uid: 1178
+ - uid: 1587
components:
- type: Transform
- pos: 8.5,-22.5
+ pos: 4.5,27.5
parent: 1
- - uid: 1179
+ - uid: 1588
components:
- type: Transform
- pos: 8.5,-21.5
+ pos: -4.5,29.5
parent: 1
- - uid: 1180
+ - uid: 1589
components:
- type: Transform
- pos: 9.5,-24.5
+ pos: -5.5,29.5
parent: 1
- - uid: 1181
+ - uid: 1590
components:
- type: Transform
- pos: 9.5,-23.5
+ pos: -6.5,29.5
parent: 1
- - uid: 1182
+ - uid: 1591
components:
- type: Transform
- pos: 9.5,-22.5
+ pos: -7.5,29.5
parent: 1
- - uid: 1183
+ - uid: 1592
components:
- type: Transform
- pos: 9.5,-21.5
+ pos: -7.5,28.5
parent: 1
- - uid: 1184
+ - uid: 1593
components:
- type: Transform
- pos: 10.5,-24.5
+ pos: -8.5,29.5
parent: 1
- - uid: 1185
+ - uid: 1594
components:
- type: Transform
- pos: 10.5,-23.5
+ pos: -8.5,28.5
parent: 1
- - uid: 1186
+ - uid: 1595
components:
- type: Transform
- pos: 10.5,-22.5
+ pos: -8.5,27.5
parent: 1
- - uid: 1187
+ - uid: 1596
components:
- type: Transform
- pos: 10.5,-21.5
+ pos: -9.5,28.5
parent: 1
- - uid: 1188
+ - uid: 1603
components:
- type: Transform
- pos: 11.5,-23.5
+ pos: -9.5,29.5
parent: 1
- - uid: 1189
+ - uid: 1605
components:
- type: Transform
- pos: 11.5,-22.5
+ pos: 9.5,25.5
parent: 1
- - uid: 1190
+ - uid: 1609
components:
- type: Transform
- pos: 11.5,-21.5
+ pos: -15.5,29.5
parent: 1
- - uid: 1191
+ - uid: 1610
components:
- type: Transform
- pos: 12.5,-22.5
+ pos: -16.5,29.5
parent: 1
- - uid: 1192
+ - uid: 1611
components:
- type: Transform
- pos: 12.5,-21.5
+ pos: -9.5,30.5
parent: 1
- - uid: 1193
+ - uid: 1617
components:
- type: Transform
- pos: 12.5,-20.5
+ pos: -15.5,30.5
parent: 1
- - uid: 1194
+ - uid: 1618
components:
- type: Transform
- pos: 12.5,-19.5
+ pos: -17.5,31.5
parent: 1
- - uid: 1195
+ - uid: 1626
components:
- type: Transform
- pos: 12.5,-18.5
+ pos: -9.5,31.5
parent: 1
- - uid: 1196
+ - uid: 1629
components:
- type: Transform
- pos: 13.5,-22.5
+ pos: -6.5,31.5
parent: 1
- - uid: 1197
+ - uid: 1630
components:
- type: Transform
- pos: 13.5,-21.5
+ pos: -7.5,31.5
parent: 1
- - uid: 1198
+ - uid: 1633
components:
- type: Transform
- pos: 13.5,-20.5
+ pos: -10.5,31.5
parent: 1
- - uid: 1199
+ - uid: 1634
components:
- type: Transform
- pos: 13.5,-19.5
+ pos: -11.5,31.5
parent: 1
- - uid: 1200
+ - uid: 1637
components:
- type: Transform
- pos: 13.5,-18.5
+ pos: -18.5,30.5
parent: 1
- - uid: 1201
+ - uid: 1638
components:
- type: Transform
- pos: 14.5,-21.5
+ pos: -18.5,29.5
parent: 1
- - uid: 1202
+ - uid: 1642
components:
- type: Transform
- pos: 14.5,-20.5
+ pos: -9.5,34.5
parent: 1
- - uid: 1203
+ - uid: 1643
components:
- type: Transform
- pos: 14.5,-19.5
+ pos: -9.5,35.5
parent: 1
- - uid: 1204
+ - uid: 1644
components:
- type: Transform
- pos: 14.5,-18.5
+ pos: -9.5,36.5
parent: 1
- - uid: 1205
+ - uid: 1646
components:
- type: Transform
- pos: 15.5,-21.5
+ pos: 1.5,35.5
parent: 1
- - uid: 1206
+ - uid: 1650
components:
- type: Transform
- pos: 15.5,-20.5
+ pos: 5.5,37.5
parent: 1
- - uid: 1207
+ - uid: 1652
components:
- type: Transform
- pos: 15.5,-19.5
+ pos: -7.5,36.5
parent: 1
- - uid: 1208
+ - uid: 1655
components:
- type: Transform
- pos: 15.5,-18.5
+ pos: 1.5,31.5
parent: 1
- - uid: 1209
+ - uid: 1656
components:
- type: Transform
- pos: 16.5,-20.5
+ pos: 3.5,32.5
parent: 1
- - uid: 1210
+ - uid: 1657
components:
- type: Transform
- pos: 16.5,-19.5
+ pos: 3.5,31.5
parent: 1
- - uid: 1211
+ - uid: 1658
components:
- type: Transform
- pos: 16.5,-18.5
+ pos: 4.5,31.5
parent: 1
- - uid: 1212
+ - uid: 1664
components:
- type: Transform
- pos: 16.5,-17.5
+ pos: 12.5,27.5
parent: 1
- - uid: 1213
+ - uid: 1665
components:
- type: Transform
- pos: 16.5,-16.5
+ pos: 0.5,31.5
parent: 1
- - uid: 1214
+ - uid: 1666
components:
- type: Transform
- pos: 16.5,-15.5
+ pos: 0.5,32.5
parent: 1
- - uid: 1215
+ - uid: 1669
components:
- type: Transform
- pos: 16.5,-14.5
+ pos: -7.5,35.5
parent: 1
- - uid: 1216
+ - uid: 1671
components:
- type: Transform
- pos: 16.5,-13.5
+ pos: 2.5,39.5
parent: 1
- - uid: 1217
+ - uid: 1673
components:
- type: Transform
- pos: 17.5,-17.5
+ pos: 2.5,33.5
parent: 1
- - uid: 1218
+ - uid: 1674
components:
- type: Transform
- pos: 17.5,-16.5
+ pos: 2.5,34.5
parent: 1
- - uid: 1219
+ - uid: 1676
components:
- type: Transform
- pos: 17.5,-15.5
+ pos: 3.5,33.5
parent: 1
- - uid: 1220
+ - uid: 1679
components:
- type: Transform
- pos: 17.5,-14.5
+ pos: 1.5,36.5
parent: 1
- - uid: 1221
+ - uid: 1680
components:
- type: Transform
- pos: 17.5,-13.5
+ pos: 4.5,33.5
parent: 1
- - uid: 1222
+ - uid: 1681
components:
- type: Transform
- pos: 17.5,-12.5
+ pos: 5.5,33.5
parent: 1
- - uid: 1223
+ - uid: 1682
components:
- type: Transform
- pos: 17.5,-11.5
+ pos: 6.5,33.5
parent: 1
- - uid: 1224
+ - uid: 1683
components:
- type: Transform
- pos: 16.5,-11.5
+ pos: 7.5,33.5
parent: 1
- - uid: 1225
+ - uid: 1684
components:
- type: Transform
- pos: 16.5,-12.5
+ pos: 8.5,33.5
parent: 1
- - uid: 1226
+ - uid: 1685
components:
- type: Transform
- pos: 18.5,-14.5
+ pos: 9.5,33.5
parent: 1
- - uid: 1227
+ - uid: 1686
components:
- type: Transform
- pos: 18.5,-13.5
+ pos: 10.5,33.5
parent: 1
- - uid: 1228
+ - uid: 1687
components:
- type: Transform
- pos: 18.5,-12.5
+ pos: 11.5,33.5
parent: 1
- - uid: 1229
+ - uid: 1688
components:
- type: Transform
- pos: 18.5,-11.5
+ pos: 12.5,33.5
parent: 1
- - uid: 1230
+ - uid: 1700
components:
- type: Transform
- pos: 18.5,-15.5
+ pos: 1.5,38.5
parent: 1
- - uid: 1231
+ - uid: 1702
components:
- type: Transform
- pos: 18.5,-16.5
+ pos: -7.5,34.5
parent: 1
- - uid: 1232
+ - uid: 1704
components:
- type: Transform
- pos: 17.5,-18.5
+ pos: -7.5,32.5
parent: 1
- - uid: 1233
+ - uid: 1705
components:
- type: Transform
- pos: 19.5,-14.5
+ pos: -8.5,34.5
parent: 1
- - uid: 1234
+ - uid: 1706
components:
- type: Transform
- pos: 19.5,-13.5
+ pos: -8.5,35.5
parent: 1
- - uid: 1235
+ - uid: 1708
components:
- type: Transform
- pos: 19.5,-12.5
+ pos: 1.5,37.5
parent: 1
- - uid: 1236
+ - uid: 1713
components:
- type: Transform
- pos: 19.5,-11.5
+ pos: -7.5,37.5
parent: 1
- - uid: 1237
+ - uid: 1720
components:
- type: Transform
- pos: 19.5,-10.5
+ pos: -6.5,38.5
parent: 1
- - uid: 1238
+ - uid: 1721
components:
- type: Transform
- pos: 19.5,-9.5
+ pos: -7.5,38.5
parent: 1
- - uid: 1239
+ - uid: 1732
components:
- type: Transform
- pos: 19.5,-8.5
+ pos: 10.5,19.5
parent: 1
- - uid: 1240
+ - uid: 1733
components:
- type: Transform
- pos: 19.5,-7.5
+ pos: 0.5,39.5
parent: 1
- - uid: 1241
+ - uid: 1736
components:
- type: Transform
- pos: 19.5,-6.5
+ pos: 3.5,37.5
parent: 1
- - uid: 1242
+ - uid: 1737
components:
- type: Transform
- pos: 19.5,-5.5
+ pos: 1.5,39.5
parent: 1
- - uid: 1243
+ - uid: 1738
components:
- type: Transform
- pos: 19.5,-4.5
+ pos: -6.5,39.5
parent: 1
- - uid: 1244
+ - uid: 1739
components:
- type: Transform
- pos: 19.5,-3.5
+ pos: 9.5,34.5
parent: 1
- - uid: 1245
+ - uid: 1807
components:
- type: Transform
- pos: 19.5,-2.5
+ pos: -13.5,34.5
parent: 1
- - uid: 1246
+ - uid: 1808
components:
- type: Transform
- pos: 19.5,-1.5
+ pos: -12.5,34.5
parent: 1
- - uid: 1247
+ - uid: 1809
components:
- type: Transform
- pos: 19.5,-0.5
+ pos: -11.5,34.5
parent: 1
- - uid: 1248
+ - uid: 1810
components:
- type: Transform
- pos: 19.5,0.5
+ pos: -10.5,34.5
parent: 1
- - uid: 1249
+ - uid: 1839
components:
- type: Transform
- pos: 19.5,1.5
+ pos: 2.5,38.5
parent: 1
- - uid: 1250
+ - uid: 1840
components:
- type: Transform
- pos: 19.5,2.5
+ pos: 3.5,38.5
parent: 1
- - uid: 1251
+ - uid: 1841
components:
- type: Transform
- pos: 19.5,3.5
+ pos: 2.5,37.5
parent: 1
- - uid: 1252
+ - uid: 1843
components:
- type: Transform
- pos: 19.5,4.5
+ pos: 5.5,36.5
parent: 1
- - uid: 1253
+ - uid: 1844
components:
- type: Transform
- pos: 19.5,5.5
+ pos: 3.5,34.5
parent: 1
- - uid: 1254
+ - uid: 1847
components:
- type: Transform
- pos: 18.5,2.5
+ pos: 4.5,34.5
parent: 1
- - uid: 1255
+ - uid: 1850
components:
- type: Transform
- pos: 18.5,3.5
+ pos: 5.5,34.5
parent: 1
- - uid: 1256
+ - uid: 1853
components:
- type: Transform
- pos: 18.5,4.5
+ pos: 6.5,34.5
parent: 1
- - uid: 1257
+ - uid: 1856
components:
- type: Transform
- pos: 18.5,5.5
+ pos: 7.5,34.5
parent: 1
- - uid: 1258
+ - uid: 1859
components:
- type: Transform
- pos: 18.5,6.5
+ pos: 8.5,34.5
parent: 1
- - uid: 1259
+ - uid: 1864
components:
- type: Transform
- pos: 18.5,7.5
+ pos: 4.5,37.5
parent: 1
- - uid: 1260
+ - uid: 1879
components:
- type: Transform
- pos: 17.5,5.5
+ pos: -15.5,18.5
parent: 1
- - uid: 1261
+ - uid: 1880
components:
- type: Transform
- pos: 17.5,6.5
+ pos: -15.5,19.5
parent: 1
- - uid: 1262
+ - uid: 1925
components:
- type: Transform
- pos: 17.5,7.5
+ pos: 13.5,27.5
parent: 1
- - uid: 1263
+ - uid: 1926
components:
- type: Transform
- pos: 17.5,8.5
+ pos: 14.5,33.5
parent: 1
- - uid: 1264
+ - uid: 1932
components:
- type: Transform
- pos: 17.5,9.5
+ pos: 14.5,27.5
parent: 1
- - uid: 1265
+ - uid: 1933
components:
- type: Transform
- pos: 17.5,10.5
+ pos: 15.5,33.5
parent: 1
- - uid: 1266
+ - uid: 1939
components:
- type: Transform
- pos: 16.5,9.5
+ pos: 15.5,27.5
parent: 1
- - uid: 1267
+ - uid: 1940
components:
- type: Transform
- pos: 16.5,10.5
+ pos: 16.5,33.5
parent: 1
- - uid: 1268
+ - uid: 1941
components:
- type: Transform
- pos: 16.5,11.5
+ pos: 16.5,32.5
parent: 1
- - uid: 1269
+ - uid: 1946
components:
- type: Transform
- pos: 18.5,8.5
+ pos: 16.5,27.5
parent: 1
- - uid: 1270
+ - uid: 1947
components:
- type: Transform
- pos: 18.5,9.5
+ pos: 17.5,33.5
parent: 1
- - uid: 1271
+ - uid: 1948
components:
- type: Transform
- pos: 18.5,10.5
+ pos: 17.5,32.5
parent: 1
- - uid: 1272
+ - uid: 1949
components:
- type: Transform
- pos: 18.5,11.5
+ pos: 17.5,31.5
parent: 1
- - uid: 1273
+ - uid: 1950
components:
- type: Transform
- pos: 17.5,11.5
+ pos: 17.5,30.5
parent: 1
- - uid: 1274
+ - uid: 1951
components:
- type: Transform
- pos: 17.5,12.5
+ pos: 17.5,29.5
parent: 1
- - uid: 1275
+ - uid: 1952
components:
- type: Transform
- pos: 16.5,12.5
+ pos: 17.5,28.5
parent: 1
- - uid: 1276
+ - uid: 1953
components:
- type: Transform
- pos: 11.5,13.5
+ pos: 17.5,27.5
parent: 1
- - uid: 1714
+ - uid: 1957
components:
- type: Transform
- pos: -0.5,9.5
+ pos: 19.5,31.5
parent: 1
- - uid: 1798
+ - uid: 1958
components:
- type: Transform
- pos: 0.5,9.5
+ pos: 18.5,28.5
parent: 1
- - uid: 1801
+ - uid: 1960
components:
- type: Transform
- pos: 0.5,8.5
+ pos: 18.5,30.5
parent: 1
- - uid: 1802
+ - uid: 1961
components:
- type: Transform
- pos: 1.5,8.5
+ pos: 18.5,31.5
parent: 1
- - uid: 1860
+- proto: WallSolid
+ entities:
+ - uid: 10
components:
- type: Transform
- pos: 20.5,2.5
+ pos: 6.5,4.5
parent: 1
- - uid: 1861
+ - uid: 29
components:
- type: Transform
- pos: 20.5,1.5
+ pos: -2.5,2.5
parent: 1
- - uid: 1862
+ - uid: 30
components:
- type: Transform
- pos: 20.5,0.5
+ pos: -4.5,2.5
parent: 1
- - uid: 1863
+ - uid: 37
components:
- type: Transform
- pos: 20.5,-0.5
+ pos: -2.5,9.5
parent: 1
- - uid: 1864
+ - uid: 40
components:
- type: Transform
- pos: 20.5,-1.5
+ pos: -1.5,9.5
parent: 1
- - uid: 1865
+ - uid: 42
components:
- type: Transform
- pos: 20.5,-2.5
+ pos: 0.5,9.5
parent: 1
- - uid: 1866
+ - uid: 43
components:
- type: Transform
- pos: 20.5,-3.5
+ pos: 1.5,9.5
parent: 1
- - uid: 1867
+ - uid: 54
components:
- type: Transform
- pos: 20.5,-4.5
+ pos: 1.5,11.5
parent: 1
- - uid: 1868
+ - uid: 55
components:
- type: Transform
- pos: 20.5,-5.5
+ pos: 1.5,10.5
parent: 1
- - uid: 1869
+ - uid: 66
components:
- type: Transform
- pos: 20.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,13.5
parent: 1
- - uid: 1870
+ - uid: 71
components:
- type: Transform
- pos: 20.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,2.5
parent: 1
- - uid: 1871
+ - uid: 82
components:
- type: Transform
- pos: 21.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,9.5
parent: 1
- - uid: 1872
+ - uid: 101
components:
- type: Transform
- pos: 21.5,-4.5
+ pos: 5.5,2.5
parent: 1
- - uid: 1873
+ - uid: 132
components:
- type: Transform
- pos: 21.5,-3.5
+ pos: -5.5,2.5
parent: 1
- - uid: 1874
+ - uid: 133
components:
- type: Transform
- pos: 21.5,-2.5
+ pos: -6.5,2.5
parent: 1
- - uid: 1875
+ - uid: 134
components:
- type: Transform
- pos: 21.5,-1.5
+ pos: -7.5,2.5
parent: 1
- - uid: 1876
+ - uid: 135
components:
- type: Transform
- pos: 21.5,-0.5
+ pos: -8.5,2.5
parent: 1
- - uid: 1877
+ - uid: 195
components:
- type: Transform
- pos: 21.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
parent: 1
- - uid: 1878
+ - uid: 224
components:
- type: Transform
- pos: 21.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,2.5
parent: 1
- - uid: 1879
+ - uid: 250
components:
- type: Transform
- pos: 20.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,12.5
parent: 1
-- proto: WallWood
- entities:
- - uid: 317
+ - uid: 261
components:
- type: Transform
- pos: -0.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,4.5
parent: 1
- - uid: 510
+ - uid: 279
components:
- type: Transform
- pos: -8.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,10.5
parent: 1
- - uid: 514
+ - uid: 284
components:
- type: Transform
- pos: 0.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,4.5
parent: 1
- - uid: 532
+ - uid: 290
components:
- type: Transform
- pos: -5.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,11.5
parent: 1
- - uid: 533
+ - uid: 369
components:
- type: Transform
- pos: -5.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,9.5
parent: 1
- - uid: 782
+ - uid: 384
components:
- type: Transform
- pos: -8.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,9.5
parent: 1
- - uid: 789
+ - uid: 420
components:
- type: Transform
- pos: -8.5,-10.5
+ pos: 5.5,5.5
parent: 1
- - uid: 812
+ - uid: 421
components:
- type: Transform
- pos: 11.5,-3.5
+ pos: 5.5,4.5
parent: 1
- - uid: 814
+ - uid: 453
components:
- type: Transform
- pos: 11.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,13.5
parent: 1
- - uid: 815
+ - uid: 572
components:
- type: Transform
- pos: 11.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,10.5
parent: 1
- - uid: 816
+ - uid: 574
components:
- type: Transform
- pos: 10.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,6.5
parent: 1
- - uid: 817
+ - uid: 589
components:
- type: Transform
- pos: 10.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,7.5
parent: 1
- - uid: 818
+ - uid: 590
components:
- type: Transform
- pos: 9.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,8.5
parent: 1
- - uid: 819
+ - uid: 605
components:
- type: Transform
- pos: 8.5,-1.5
+ pos: 4.5,9.5
parent: 1
- - uid: 820
+ - uid: 644
components:
- type: Transform
- pos: 9.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,7.5
parent: 1
- - uid: 821
+ - uid: 656
components:
- type: Transform
- pos: 8.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,6.5
parent: 1
- - uid: 826
+ - uid: 664
components:
- type: Transform
- pos: 11.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,9.5
parent: 1
- - uid: 827
+ - uid: 665
components:
- type: Transform
- pos: 11.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,7.5
parent: 1
- - uid: 835
+ - uid: 688
components:
- type: Transform
- pos: 11.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,5.5
parent: 1
- - uid: 837
+ - uid: 810
components:
- type: Transform
- pos: -8.5,3.5
+ pos: 2.5,13.5
parent: 1
- - uid: 839
+ - uid: 814
components:
- type: Transform
- pos: -7.5,0.5
+ pos: 1.5,13.5
parent: 1
- - uid: 845
+ - uid: 963
components:
- type: Transform
- pos: -8.5,0.5
+ pos: -2.5,8.5
parent: 1
- - uid: 847
+ - uid: 964
components:
- type: Transform
- pos: -8.5,2.5
+ pos: -2.5,7.5
parent: 1
- - uid: 848
+- proto: WallWeaponCapacitorRecharger
+ entities:
+ - uid: 1934
components:
- type: Transform
- pos: -5.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,25.5
parent: 1
- - uid: 849
+- proto: WallWood
+ entities:
+ - uid: 676
components:
- type: Transform
- pos: -2.5,-1.5
+ pos: 9.5,29.5
parent: 1
- - uid: 850
+ - uid: 685
components:
- type: Transform
- pos: -4.5,-1.5
+ pos: 9.5,30.5
parent: 1
- - uid: 852
+ - uid: 1189
components:
- type: Transform
- pos: -5.5,3.5
+ pos: -15.5,23.5
parent: 1
- - uid: 853
+ - uid: 1190
components:
- type: Transform
- pos: -8.5,4.5
+ pos: -15.5,25.5
parent: 1
- - uid: 854
+ - uid: 1191
components:
- type: Transform
- pos: -3.5,-1.5
+ pos: -15.5,24.5
parent: 1
- - uid: 857
+ - uid: 1234
components:
- type: Transform
- pos: 2.5,-1.5
+ pos: 7.5,32.5
parent: 1
- - uid: 860
+ - uid: 1235
components:
- type: Transform
- pos: -12.5,-10.5
+ pos: 6.5,32.5
parent: 1
- - uid: 865
+ - uid: 1316
components:
- type: Transform
- pos: -3.5,-14.5
+ pos: 9.5,20.5
parent: 1
- - uid: 868
+ - uid: 1323
components:
- type: Transform
- pos: -5.5,-0.5
+ pos: 9.5,24.5
parent: 1
- - uid: 872
+ - uid: 1341
components:
- type: Transform
- pos: 1.5,-1.5
+ pos: 9.5,23.5
parent: 1
- - uid: 873
+ - uid: 1343
components:
- type: Transform
- pos: -4.5,-14.5
+ pos: 9.5,21.5
parent: 1
- - uid: 878
+ - uid: 1353
components:
- type: Transform
- pos: -6.5,0.5
+ pos: 9.5,19.5
parent: 1
- - uid: 896
+ - uid: 1361
components:
- type: Transform
- pos: 8.5,-0.5
+ pos: -6.5,33.5
parent: 1
- - uid: 898
+ - uid: 1415
components:
- type: Transform
- pos: 7.5,-1.5
+ pos: 9.5,28.5
parent: 1
- - uid: 899
+ - uid: 1416
components:
- type: Transform
- pos: 6.5,-1.5
+ pos: 10.5,28.5
parent: 1
- - uid: 900
+ - uid: 1420
components:
- type: Transform
- pos: 4.5,-1.5
+ pos: 11.5,28.5
parent: 1
- - uid: 901
+ - uid: 1568
components:
- type: Transform
- pos: 3.5,-1.5
+ pos: 5.5,29.5
parent: 1
- - uid: 902
+ - uid: 1614
components:
- type: Transform
- pos: 3.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,37.5
parent: 1
- - uid: 903
+ - uid: 1622
components:
- type: Transform
- pos: 3.5,0.5
+ pos: -7.5,33.5
parent: 1
- - uid: 904
+ - uid: 1631
components:
- type: Transform
- pos: 3.5,1.5
+ pos: 11.5,27.5
parent: 1
- - uid: 905
+ - uid: 1648
components:
- type: Transform
- pos: 3.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,34.5
parent: 1
- - uid: 906
+ - uid: 1651
components:
- type: Transform
- pos: 3.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,36.5
parent: 1
- - uid: 907
+ - uid: 1659
components:
- type: Transform
- pos: 3.5,4.5
+ pos: 5.5,32.5
parent: 1
- - uid: 908
+ - uid: 1667
components:
- type: Transform
- pos: 4.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,33.5
parent: 1
- - uid: 909
+ - uid: 1668
components:
- type: Transform
- pos: 5.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,33.5
parent: 1
- - uid: 910
+ - uid: 1670
components:
- type: Transform
- pos: 6.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,38.5
parent: 1
- - uid: 911
+ - uid: 1699
components:
- type: Transform
- pos: 7.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,35.5
parent: 1
- - uid: 912
+ - uid: 1712
components:
- type: Transform
- pos: 8.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,37.5
parent: 1
- - uid: 913
+ - uid: 1714
components:
- type: Transform
- pos: 8.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,37.5
parent: 1
- - uid: 925
+ - uid: 1715
components:
- type: Transform
- pos: -2.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,36.5
parent: 1
- - uid: 926
+ - uid: 1716
components:
- type: Transform
- pos: -1.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,35.5
parent: 1
- - uid: 936
+ - uid: 1717
components:
- type: Transform
- pos: -5.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,34.5
parent: 1
- - uid: 937
+ - uid: 1719
components:
- type: Transform
- pos: -6.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,38.5
parent: 1
- - uid: 938
+ - uid: 1723
components:
- type: Transform
- pos: -7.5,-5.5
+ pos: 0.5,38.5
parent: 1
- - uid: 939
+ - uid: 1749
components:
- type: Transform
- pos: -8.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,39.5
parent: 1
- - uid: 940
+ - uid: 1801
components:
- type: Transform
- pos: -15.5,-5.5
+ pos: 1.5,33.5
parent: 1
- - uid: 941
+ - uid: 1802
components:
- type: Transform
- pos: -13.5,-5.5
+ pos: 5.5,31.5
parent: 1
- - uid: 942
+ - uid: 1832
components:
- type: Transform
- pos: -14.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,39.5
parent: 1
- - uid: 943
+ - uid: 1852
components:
- type: Transform
- pos: -12.5,-5.5
+ pos: 5.5,30.5
parent: 1
- - uid: 944
+ - uid: 1862
components:
- type: Transform
- pos: -16.5,-5.5
+ pos: 5.5,28.5
parent: 1
- - uid: 974
+ - uid: 1907
components:
- type: Transform
- pos: -0.5,-13.5
+ pos: -15.5,20.5
parent: 1
- - uid: 975
+ - uid: 1916
components:
- type: Transform
- pos: -0.5,-9.5
+ pos: -15.5,21.5
parent: 1
- - uid: 976
+ - uid: 1919
components:
- type: Transform
- pos: -0.5,-6.5
+ pos: 13.5,28.5
parent: 1
- - uid: 977
+ - uid: 1930
components:
- type: Transform
- pos: -0.5,-5.5
+ pos: 8.5,32.5
parent: 1
- - uid: 1013
+ - uid: 1931
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,4.5
+ pos: 15.5,32.5
parent: 1
- - uid: 1014
+ - uid: 1937
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,4.5
+ pos: 9.5,32.5
parent: 1
- - uid: 1035
+ - uid: 1938
components:
- type: Transform
- pos: -1.5,-5.5
+ pos: 14.5,32.5
parent: 1
- - uid: 1139
+ - uid: 1942
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,4.5
+ pos: 11.5,32.5
parent: 1
- - uid: 1140
+ - uid: 1943
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,4.5
+ pos: 10.5,32.5
parent: 1
- - uid: 1908
+ - uid: 1944
components:
- type: Transform
- pos: -5.5,-1.5
+ pos: 12.5,32.5
parent: 1
- - uid: 1910
+ - uid: 1945
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,4.5
+ pos: 13.5,32.5
parent: 1
-- proto: WarpPoint
- entities:
- - uid: 1907
+ - uid: 2003
components:
- type: Transform
- pos: -4.5,-3.5
+ pos: 12.5,28.5
parent: 1
- - type: WarpPoint
- location: Pirate's Cove
-- proto: WaterTankFull
- entities:
- - uid: 1704
+ - uid: 2042
components:
- type: Transform
- pos: -15.5,-6.5
+ pos: 15.5,31.5
parent: 1
-- proto: WeaponLauncherPirateCannon
- entities:
- - uid: 1668
+ - uid: 2043
components:
- type: Transform
- pos: 2.607525,3.4844034
+ pos: 16.5,31.5
parent: 1
-- proto: WeaponRevolverPirate
- entities:
- - uid: 1666
+ - uid: 2044
components:
- type: Transform
- pos: 2.607525,-0.7343466
+ pos: 16.5,30.5
parent: 1
-- proto: Window
- entities:
- - uid: 1127
+ - uid: 2045
components:
- type: Transform
- pos: -7.5,4.5
+ pos: 16.5,29.5
parent: 1
- - uid: 1135
+ - uid: 2046
components:
- type: Transform
- pos: -6.5,4.5
+ pos: 16.5,28.5
parent: 1
- - uid: 1141
+ - uid: 2047
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,4.5
+ pos: 15.5,28.5
parent: 1
- - uid: 1142
+ - uid: 2048
components:
- type: Transform
- pos: 8.5,2.5
+ pos: 14.5,28.5
parent: 1
- - uid: 1143
+ - uid: 2049
components:
- type: Transform
- pos: 8.5,1.5
+ pos: 4.5,30.5
parent: 1
- - uid: 1144
+- proto: WallWoodDiagonal
+ entities:
+ - uid: 1698
components:
- type: Transform
- pos: 8.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,36.5
parent: 1
- - uid: 1145
+ - uid: 1711
components:
- type: Transform
- pos: -11.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,37.5
parent: 1
- - uid: 1146
+- proto: WarpPointShip
+ entities:
+ - uid: 327
components:
+ - type: MetaData
+ name: Pirate's Cove
- type: Transform
- pos: -10.5,-5.5
+ pos: 1.5,6.5
parent: 1
- - uid: 1147
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 306
components:
- type: Transform
- pos: -9.5,-5.5
+ pos: -3.5,7.5
parent: 1
- - uid: 1148
+- proto: WeaponDisabler
+ entities:
+ - uid: 1911
components:
- type: Transform
- pos: -4.5,-5.5
- parent: 1
- - uid: 1149
+ parent: 1875
+ - type: Physics
+ canCollide: False
+ - uid: 1912
components:
- type: Transform
- pos: -3.5,-5.5
- parent: 1
- - uid: 1150
+ parent: 1875
+ - type: Physics
+ canCollide: False
+ - uid: 1913
components:
- type: Transform
- pos: -2.5,-5.5
- parent: 1
- - uid: 1151
+ parent: 1875
+ - type: Physics
+ canCollide: False
+ - uid: 1914
components:
- type: Transform
- pos: -0.5,-10.5
- parent: 1
- - uid: 1152
+ parent: 1875
+ - type: Physics
+ canCollide: False
+- proto: WeaponGrapplingGun
+ entities:
+ - uid: 2063
components:
- type: Transform
- pos: -0.5,-11.5
+ pos: 0.49590623,-4.4579954
parent: 1
- - uid: 1153
+- proto: WeaponRackPistolBase
+ entities:
+ - uid: 1875
components:
- type: Transform
- pos: -0.5,-12.5
+ pos: -14.5,24.5
parent: 1
- - uid: 1154
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ weapon1_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 1911
+ weapon2_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 1914
+ weapon3_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 1912
+ weapon4_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 1913
+ weapon5_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ weapon6_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: WeaponRifleBB
+ entities:
+ - uid: 1695
components:
- type: Transform
- pos: -7.5,-14.5
+ pos: 23.56418,24.946178
parent: 1
- - uid: 1155
+- proto: WeldingFuelTankHighCapacity
+ entities:
+ - uid: 395
components:
- type: Transform
- pos: -6.5,-14.5
+ pos: -0.5,13.5
parent: 1
- - uid: 1156
+- proto: WindoorSecure
+ entities:
+ - uid: 32
components:
- type: Transform
- pos: -5.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,6.5
parent: 1
- - uid: 1157
+ - uid: 44
components:
- type: Transform
- pos: -8.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,6.5
parent: 1
- - uid: 1158
+- proto: WoodDoor
+ entities:
+ - uid: 8
components:
- type: Transform
- pos: -8.5,-12.5
+ pos: -3.5,2.5
parent: 1
- - uid: 1159
+ - uid: 16
components:
- type: Transform
- pos: -8.5,-11.5
+ pos: 5.5,3.5
parent: 1
- - uid: 1160
+ - uid: 122
components:
- type: Transform
- pos: -11.5,-10.5
+ pos: 7.5,4.5
parent: 1
- - uid: 1161
+ - uid: 170
components:
- type: Transform
- pos: -10.5,-10.5
+ pos: 6.5,9.5
parent: 1
- - uid: 1162
+ - uid: 174
components:
- type: Transform
- pos: -9.5,-10.5
+ pos: 8.5,3.5
parent: 1
- - uid: 1163
+- proto: WoodenBench
+ entities:
+ - uid: 1929
components:
- type: Transform
- pos: -15.5,-10.5
+ pos: 13.5,31.5
parent: 1
- - uid: 1164
+- proto: WoodenSign
+ entities:
+ - uid: 1936
components:
- type: Transform
- pos: -14.5,-10.5
+ pos: -7.33934,17.979847
parent: 1
- - uid: 1165
+- proto: WoodenSignRight
+ entities:
+ - uid: 1935
components:
- type: Transform
- pos: -13.5,-10.5
+ pos: 4.592441,18.987944
parent: 1
- - uid: 1652
+- proto: WoodenSupport
+ entities:
+ - uid: 1608
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,31.5
parent: 1
-- proto: WindowDirectional
- entities:
- - uid: 984
+ - uid: 1718
components:
- type: Transform
- pos: -12.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,32.5
parent: 1
- - uid: 985
+ - uid: 1805
components:
- type: Transform
- pos: -12.5,-6.5
+ pos: 7.5,31.5
parent: 1
- - uid: 987
+ - uid: 1909
components:
- type: Transform
- pos: -12.5,-7.5
+ pos: -15.5,16.5
parent: 1
-- proto: WoodDoor
- entities:
- - uid: 1839
+ - uid: 1994
components:
- type: Transform
- pos: -0.5,-8.5
+ pos: 11.5,31.5
parent: 1
- - type: Door
- secondsUntilStateChange: -1983.0103
- state: Opening
- - uid: 1840
+- proto: WoodenSupportWall
+ entities:
+ - uid: 1188
components:
- type: Transform
- pos: -0.5,-7.5
+ pos: -15.5,22.5
parent: 1
- - type: Door
- secondsUntilStateChange: -1983.6912
- state: Opening
- - uid: 1841
+ - uid: 1333
components:
- type: Transform
- pos: -1.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,18.5
parent: 1
- - type: Door
- secondsUntilStateChange: -1956.9247
- state: Opening
- - uid: 1842
+ - uid: 1921
components:
- type: Transform
- pos: -0.5,-1.5
+ pos: 8.5,28.5
parent: 1
- - type: Door
- secondsUntilStateChange: -1957.5579
- state: Opening
- - uid: 1905
+- proto: WoodenSupportWallBroken
+ entities:
+ - uid: 1197
components:
- type: Transform
- pos: -5.5,2.5
+ pos: 6.5,28.5
parent: 1
- - type: Door
- secondsUntilStateChange: -1955.4457
- state: Opening
-- proto: WoodSecretDoor
+- proto: Wrench
entities:
- - uid: 1012
+ - uid: 2054
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,4.5
+ pos: 9.483096,17.492344
parent: 1
...
diff --git a/Resources/Maps/_NF/POI/lpbravo.yml b/Resources/Maps/_NF/POI/lpbravo.yml
index 9201737b12f..d3b1f5646da 100644
--- a/Resources/Maps/_NF/POI/lpbravo.yml
+++ b/Resources/Maps/_NF/POI/lpbravo.yml
@@ -232,85 +232,79 @@ entities:
data:
tiles:
0,0:
- 0: 65535
+ 0: 65359
0,-1:
- 0: 65535
+ 0: 65524
-1,0:
- 0: 65535
- -1,1:
- 0: 52479
- 1: 13056
- -1,-1:
- 0: 65535
+ 0: 65311
0,1:
- 0: 4607
+ 0: 15
1: 60928
+ -1,1:
+ 0: 34959
+ 1: 13056
0,2:
1: 4371
+ -1,2:
+ 1: 52430
0,3:
1: 4369
+ -1,3:
+ 1: 52428
+ 0,4:
+ 1: 4369
1,0:
- 0: 13311
+ 0: 4367
1: 52224
1,1:
- 0: 1
1: 318
+ 1,-1:
+ 0: 65297
+ 1: 8
0,-3:
1: 61439
- 0: 4096
+ -1,-3:
+ 1: 16383
+ 0: 32768
+ -1,-2:
+ 0: 65464
0,-2:
+ 0: 26208
+ -1,-1:
0: 65535
1,-3:
1: 4080
- 0: 61440
1,-2:
- 0: 32767
+ 0: 14199
1: 32768
- 1,-1:
- 0: 65527
- 1: 8
-3,0:
- 0: 136
+ 0: 8
1: 34816
- -3,1:
+ -3,-1:
+ 0: 34816
1: 8
-2,0:
- 0: 61183
+ 0: 52239
1: 4352
+ -3,1:
+ 1: 8
-2,1:
1: 35939
- 0: 140
- -1,2:
- 1: 52430
- -1,3:
+ 0: 8
+ -2,-1:
+ 0: 65484
+ -1,4:
1: 52428
-3,-3:
1: 2176
- 0: 32768
- -3,-2:
- 0: 2184
- 1: 32768
- -3,-1:
- 1: 8
- 0: 34944
-2,-3:
1: 36856
- 0: 28672
-2,-2:
- 0: 65535
- -2,-1:
- 0: 65535
- -1,-3:
- 1: 16383
- 0: 49152
- -1,-2:
- 0: 65535
- -1,4:
- 1: 52428
+ 0: 61431
+ -3,-2:
+ 1: 32768
-1,5:
1: 8
- 0,4:
- 1: 4369
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -328,7 +322,7 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ immutable: True
moles:
- 0
- 0
@@ -1155,11 +1149,6 @@ entities:
- type: Transform
pos: 1.5,-2.5
parent: 1
- - uid: 502
- components:
- - type: Transform
- pos: 4.5,2.5
- parent: 1
- uid: 503
components:
- type: Transform
@@ -2551,9 +2540,9 @@ entities:
rot: -1.5707963267948966 rad
pos: -1.5,-3.5
parent: 1
-- proto: ComputerBroken
+- proto: ComputerIFFPOI
entities:
- - uid: 501
+ - uid: 502
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -3639,6 +3628,13 @@ entities:
- type: Transform
pos: -2.5,2.5
parent: 1
+- proto: TelecomServerFilledSyndicate
+ entities:
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 1
- proto: ToiletDirtyWater
entities:
- uid: 138
diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/barnacle.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/barnacle.yml
index a72bb320f79..3a0a2c667eb 100644
--- a/Resources/Maps/_NF/Shuttles/BlackMarket/barnacle.yml
+++ b/Resources/Maps/_NF/Shuttles/BlackMarket/barnacle.yml
@@ -89,32 +89,27 @@ entities:
version: 2
data:
tiles:
- -1,-1:
- 0: 65535
- 0,-1:
- 0: 4375
- 1: 26208
-2,-1:
- 0: 61166
+ 0: 28224
+ -2,0:
+ 0: 14
+ 1: 35840
-2,-2:
1: 51200
+ -1,-1:
+ 0: 65520
-1,-2:
1: 1
- 0: 65534
+ 0: 61120
+ -1,0:
+ 0: 61059
0,-2:
- 0: 30579
+ 0: 13072
1: 4
+ 0,-1:
+ 1: 26208
0,0:
- 0: 30583
- 0,1:
- 0: 7
- -2,0:
- 0: 238
- 1: 35840
- -1,0:
- 0: 65535
- -1,1:
- 0: 15
+ 0: 13104
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -132,7 +127,7 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ immutable: True
moles:
- 0
- 0
@@ -693,7 +688,7 @@ entities:
rot: -1.5707963267948966 rad
pos: 1.5,1.5
parent: 201
-- proto: ComputerTabletopShuttle
+- proto: ComputerTabletopShuttleAntag
entities:
- uid: 220
components:
@@ -708,13 +703,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 1.5,2.5
parent: 201
-- proto: CratePirate
- entities:
- - uid: 226
- components:
- - type: Transform
- pos: -1.5,-2.5
- parent: 201
- proto: DefibrillatorCabinetFilled
entities:
- uid: 206
@@ -1482,20 +1470,6 @@ entities:
- type: Transform
pos: -1.5,-6.5
parent: 201
-- proto: SuitStorageEVAPirate
- entities:
- - uid: 67
- components:
- - type: Transform
- pos: -3.5,-2.5
- parent: 201
-- proto: SuitStoragePirateCap
- entities:
- - uid: 62
- components:
- - type: Transform
- pos: -0.5,3.5
- parent: 201
- proto: Table
entities:
- uid: 147
diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/bocakillo.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/bocakillo.yml
index 2c92ed8dc3d..edff0ed5272 100644
--- a/Resources/Maps/_NF/Shuttles/BlackMarket/bocakillo.yml
+++ b/Resources/Maps/_NF/Shuttles/BlackMarket/bocakillo.yml
@@ -9,6 +9,7 @@ tilemap:
2: FloorDarkMono
37: FloorDarkPlastic
97: FloorTechMaint
+ 3: FloorTechMaint2
113: Lattice
114: Plating
entities:
@@ -24,11 +25,19 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: cgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAcgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAcgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AgAAAAAAcgAAAAAAAgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAcgAAAAAAAgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAcgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAAQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAAgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAgAAAAAAcgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAwAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -56,131 +65,135 @@ entities:
color: '#FFFFFFFF'
id: Bot
decals:
- 0: 3,3
- 1: 4,3
- 2: 4,4
- 3: 3,4
+ 0: -1,-2
+ 1: 0,-2
+ 2: 0,-3
+ 3: -1,-3
- node:
color: '#FFFFFFFF'
id: BotGreyscale
decals:
- 4: 1,4
+ 4: 0,0
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 12: 0,6
- 13: 1,3
- 18: 0,1
- 19: 1,2
- 20: 1,6
- 21: -1,3
- 22: -8,3
- 23: -9,3
- 24: -10,3
- 25: -10,4
- 26: -10,5
- 27: -9,5
- 28: -1,1
- 38: -3,6
- 39: -1,6
- 40: 2,5
- 41: 5,5
- 42: 5,4
- 43: 5,3
- 44: -2,4
- 45: -7,4
- 52: 0,1
+ 36: -1,0
+ 37: -3,1
+ 38: -1,2
+ 39: 2,1
+ 40: 1,-1
+ 41: 0,3
+ 42: 0,8
+ 43: 2,4
+ 44: 2,2
+ 45: 1,-4
+ 46: 0,-4
+ 47: -1,-4
+ 48: 1,-4
+ 49: 0,-4
+ 50: -1,-4
+ 51: -1,9
+ 52: -1,10
+ 53: -1,11
+ 54: 0,11
+ 55: 1,11
+ 56: 1,10
+ 57: 1,10
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 14: 4,4
- 15: 4,3
- 16: 3,3
- 17: 3,4
- 29: -2,6
- 34: -6,3
- 35: -5,3
- 36: -4,3
- 37: -3,3
- 53: -2,6
- 54: 3,3
- 55: 3,4
- 56: 4,3
- 57: -8,3
- 58: -9,5
- 59: -9,5
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 46: 1,4
- 47: 1,4
- 48: 0,6
- 49: 1,2
- 50: 0,1
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: DirtMedium
- decals:
- 51: 0,1
+ 10: -3,1
+ 11: -2,0
+ 12: -1,0
+ 13: 0,0
+ 14: 1,0
+ 15: 2,0
+ 16: 2,1
+ 17: 0,-2
+ 18: -1,-2
+ 19: -1,-3
+ 20: 0,-3
+ 21: 2,2
+ 22: 2,4
+ 23: 2,3
+ 24: 0,3
+ 25: -3,2
+ 26: -1,4
+ 27: -1,5
+ 28: -1,6
+ 29: -1,7
+ 30: -1,9
+ 31: -1,10
+ 32: -1,11
+ 33: 0,11
+ 34: 1,11
+ 35: 1,10
+ 58: 2,0
+ 59: -2,0
+ 60: 0,-2
+ 61: -1,-3
+ 62: -1,4
+ 63: -1,5
+ 64: -1,6
+ 65: -1,7
+ 66: -1,6
+ 67: -1,6
+ 68: -1,6
- node:
color: '#FFFFFFFF'
- id: WarnLineE
+ id: StandClear
decals:
- 9: -1,6
+ 7: 1,-1
- node:
color: '#FFFFFFFF'
- id: WarnLineGreyscaleW
+ id: StandClearGreyscale
decals:
- 11: 0,6
+ 8: 0,8
+ 9: 0,3
- node:
color: '#FFFFFFFF'
- id: WarnLineS
+ id: WarnLineGreyscaleN
decals:
- 5: 5,3
- 6: 5,4
- 7: 5,5
- 8: -3,6
- 10: 2,5
+ 5: 2,1
- node:
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 30: -6,3
- 31: -5,3
- 32: -4,3
- 33: -3,3
+ 6: 2,3
- type: GridAtmosphere
version: 2
data:
tiles:
0,0:
- 0: 65527
- 0,1:
- 0: 65277
- 1: 258
- -3,1:
- 0: 61166
- -3,0:
- 0: 60928
- -2,0:
- 0: 65280
- -2,1:
- 0: 65535
+ 0: 21879
-1,0:
- 0: 65518
+ 0: 3820
+ 1: 4096
+ 0,1:
+ 0: 4373
+ 1: 52416
-1,1:
- 0: 65535
- 1,1:
- 0: 4915
- 1,0:
- 0: 13072
+ 0: 34952
+ 1: 3
+ 0,2:
+ 0: 13105
+ 1: 32768
+ -1,2:
+ 0: 34944
+ 0,-1:
+ 0: 9011
+ 1: 34944
+ 0,3:
+ 1: 12
+ -1,-1:
+ 1: 12832
+ 0: 2184
+ -1,3:
+ 1: 4
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -198,10 +211,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.14996
+ immutable: True
moles:
- - 20.078888
- - 75.53487
+ - 0
+ - 0
- 0
- 0
- 0
@@ -217,599 +230,619 @@ entities:
- type: RadiationGridResistance
- proto: AirCanister
entities:
- - uid: 229
+ - uid: 126
components:
- type: Transform
anchored: True
- pos: 1.5,3.5
+ pos: -0.5,0.5
parent: 2
- type: Physics
bodyType: Static
- proto: AirlockExternalGlass
entities:
- - uid: 10
+ - uid: 11
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,5.5
+ pos: 2.5,4.5
parent: 2
- - uid: 88
+ - uid: 57
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,6.5
+ pos: 1.5,-0.5
parent: 2
- - uid: 118
+ - type: Door
+ secondsUntilStateChange: -239.95091
+ state: Opening
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: True
+ - uid: 59
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,6.5
+ pos: 2.5,2.5
parent: 2
- proto: AirlockHatch
entities:
- - uid: 112
+ - uid: 58
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,4.5
+ pos: 0.5,8.5
parent: 2
- - uid: 114
+ - uid: 196
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,4.5
+ pos: 0.5,3.5
parent: 2
- proto: AirlockShuttleSyndicate
entities:
- - uid: 162
+ - uid: 56
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,5.5
+ pos: 0.5,-3.5
parent: 2
- - uid: 173
+ - uid: 63
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,3.5
+ pos: 1.5,-3.5
parent: 2
- - uid: 217
+ - uid: 64
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,4.5
+ pos: -0.5,-3.5
parent: 2
- proto: APCBasic
entities:
- - uid: 110
+ - uid: 221
components:
- type: Transform
- pos: -7.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,9.5
parent: 2
- proto: AtmosDeviceFanTiny
entities:
- - uid: 76
+ - uid: 162
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 5.5,3.5
+ pos: 0.5,-3.5
parent: 2
- - uid: 77
+ - uid: 218
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 5.5,5.5
+ pos: -0.5,-3.5
parent: 2
- - uid: 161
+ - uid: 247
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-3.5
parent: 2
- - uid: 223
+ - uid: 248
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 2
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 249
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 250
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 2
+ - uid: 251
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 2
+ - uid: 252
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 2
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 255
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 2
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 2
+ - uid: 257
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 258
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 2
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 2
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 2
+ - uid: 262
+ components:
+ - type: Transform
+ pos: -1.5,12.5
+ parent: 2
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 2
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 2
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 2
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 2
+ - uid: 267
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 2
+ - uid: 268
components:
- type: Transform
- pos: 5.5,4.5
+ pos: 3.5,6.5
parent: 2
- proto: BlastDoorOpen
entities:
- - uid: 46
+ - uid: 4
components:
- type: Transform
- pos: -6.5,3.5
+ pos: -0.5,12.5
parent: 2
- type: DeviceLinkSink
links:
- - 129
- - uid: 50
+ - 186
+ - uid: 171
components:
- type: Transform
- pos: -10.5,4.5
+ pos: 1.5,6.5
parent: 2
- type: DeviceLinkSink
links:
- - 129
- - uid: 56
+ - 186
+ - uid: 184
components:
- type: Transform
- pos: 1.5,1.5
+ pos: 1.5,12.5
parent: 2
- type: DeviceLinkSink
links:
- - 129
- - uid: 58
+ - 186
+ - uid: 212
components:
- type: Transform
- pos: -10.5,3.5
+ pos: -0.5,8.5
parent: 2
- type: DeviceLinkSink
links:
- - 129
- - uid: 64
+ - 186
+ - uid: 219
components:
- type: Transform
- pos: -4.5,5.5
+ pos: 0.5,12.5
parent: 2
- type: DeviceLinkSink
links:
- - 129
- - uid: 78
+ - 186
+ - uid: 220
components:
- type: Transform
- pos: -10.5,5.5
+ pos: -2.5,0.5
parent: 2
- type: DeviceLinkSink
links:
- - 129
+ - 186
- proto: BoxBodyBag
entities:
- - uid: 244
+ - uid: 192
components:
- type: Transform
- parent: 243
+ parent: 191
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: ButtonFrameCaution
entities:
- - uid: 55
+ - uid: 213
components:
- type: Transform
- pos: -9.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,11.5
parent: 2
- proto: ButtonFrameCautionSecurity
entities:
- - uid: 121
+ - uid: 175
components:
- type: Transform
- pos: -8.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,10.5
parent: 2
- proto: CableApcExtension
entities:
- - uid: 26
+ - uid: 16
components:
- type: Transform
- pos: 0.5,4.5
+ pos: 2.5,9.5
parent: 2
- - uid: 35
+ - uid: 55
components:
- type: Transform
- pos: -3.5,4.5
+ pos: 1.5,-0.5
parent: 2
- - uid: 41
+ - uid: 60
components:
- type: Transform
- pos: -6.5,4.5
+ pos: 1.5,0.5
parent: 2
- - uid: 62
+ - uid: 65
components:
- type: Transform
- pos: -0.5,2.5
+ pos: 0.5,3.5
parent: 2
- - uid: 63
+ - uid: 66
components:
- type: Transform
- pos: 0.5,5.5
+ pos: 0.5,6.5
parent: 2
- uid: 67
components:
- type: Transform
- pos: 1.5,5.5
+ pos: 1.5,1.5
parent: 2
- uid: 68
components:
- type: Transform
- pos: 2.5,5.5
+ pos: -1.5,1.5
parent: 2
- - uid: 69
+ - uid: 70
components:
- type: Transform
- pos: 0.5,2.5
+ pos: -0.5,1.5
parent: 2
- uid: 71
components:
- type: Transform
- pos: -2.5,4.5
+ pos: 0.5,4.5
parent: 2
- uid: 74
components:
- type: Transform
- pos: -7.5,5.5
+ pos: 1.5,-1.5
parent: 2
- - uid: 104
+ - uid: 90
components:
- type: Transform
- pos: -8.5,4.5
+ pos: 0.5,8.5
parent: 2
- - uid: 127
+ - uid: 99
components:
- type: Transform
- pos: -7.5,6.5
+ pos: 0.5,1.5
parent: 2
- - uid: 130
+ - uid: 106
components:
- type: Transform
- pos: -4.5,4.5
+ pos: 0.5,10.5
parent: 2
- - uid: 131
+ - uid: 139
components:
- type: Transform
- pos: -1.5,4.5
+ pos: 0.5,9.5
parent: 2
- - uid: 134
+ - uid: 153
components:
- type: Transform
- pos: -5.5,4.5
+ pos: 0.5,2.5
parent: 2
- - uid: 135
+ - uid: 154
components:
- type: Transform
- pos: 3.5,5.5
+ pos: -1.5,2.5
parent: 2
- - uid: 138
+ - uid: 167
components:
- type: Transform
- pos: -7.5,4.5
+ pos: 0.5,5.5
parent: 2
- - uid: 139
+ - uid: 168
components:
- type: Transform
- pos: 0.5,3.5
+ pos: 1.5,9.5
parent: 2
- - uid: 180
+ - uid: 169
components:
- type: Transform
- pos: -0.5,4.5
+ pos: 0.5,7.5
parent: 2
- proto: CableHV
entities:
- - uid: 89
+ - uid: 105
components:
- type: Transform
- pos: -5.5,3.5
+ pos: -0.5,6.5
parent: 2
- - uid: 108
+ - uid: 135
components:
- type: Transform
- pos: -4.5,3.5
+ pos: -0.5,7.5
parent: 2
- proto: CableMV
entities:
- - uid: 27
+ - uid: 19
components:
- type: Transform
- pos: -6.5,4.5
+ pos: 2.5,9.5
parent: 2
- - uid: 36
+ - uid: 27
components:
- type: Transform
- pos: -5.5,3.5
+ pos: -0.5,7.5
parent: 2
- - uid: 38
+ - uid: 44
components:
- type: Transform
- pos: -7.5,5.5
+ pos: 0.5,8.5
parent: 2
- - uid: 65
+ - uid: 45
components:
- type: Transform
- pos: -7.5,4.5
+ pos: 1.5,9.5
parent: 2
- - uid: 66
+ - uid: 46
components:
- type: Transform
- pos: -7.5,6.5
+ pos: 0.5,7.5
parent: 2
- - uid: 70
+ - uid: 47
components:
- type: Transform
- pos: -5.5,4.5
+ pos: 0.5,9.5
parent: 2
-- proto: CannonBall
+- proto: Catwalk
entities:
- - uid: 98
+ - uid: 80
components:
- type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 101
+ rot: 1.5707963267948966 rad
+ pos: 0.5,10.5
+ parent: 2
+ - uid: 82
components:
- type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 102
+ rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 87
components:
- type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 103
+ rot: 1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 2
+ - uid: 88
components:
- type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CannonBallGlassshot
- entities:
- - uid: 95
- components:
- - type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 97
- components:
- - type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 99
- components:
- - type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 100
- components:
- - type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CannonBallGrapeshot
- entities:
- - uid: 92
- components:
- - type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 93
- components:
- - type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 94
- components:
- - type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 96
- components:
- - type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: Catwalk
- entities:
- - uid: 3
- components:
- - type: Transform
- pos: 3.5,5.5
- parent: 2
- - uid: 5
- components:
- - type: Transform
- pos: 0.5,5.5
- parent: 2
- - uid: 24
- components:
- - type: Transform
- pos: -7.5,4.5
- parent: 2
- - uid: 48
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,5.5
parent: 2
- - uid: 51
+ - uid: 89
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-1.5
parent: 2
- - uid: 52
+ - uid: 147
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,0.5
parent: 2
- - uid: 53
+ - uid: 148
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,9.5
parent: 2
- - uid: 61
+ - uid: 159
components:
- type: Transform
- pos: -5.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,6.5
parent: 2
- - uid: 80
+ - uid: 160
components:
- type: Transform
- pos: 0.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,7.5
parent: 2
- - uid: 86
+ - uid: 161
components:
- type: Transform
- pos: 0.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,5.5
parent: 2
- - uid: 113
+ - uid: 174
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,7.5
parent: 2
- - uid: 126
+ - uid: 177
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,2.5
parent: 2
- - uid: 141
+ - uid: 190
components:
- type: Transform
- pos: -3.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,1.5
parent: 2
- - uid: 142
+ - uid: 215
components:
- type: Transform
- pos: -2.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
parent: 2
- - uid: 143
+ - uid: 228
components:
- type: Transform
- pos: -7.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,5.5
parent: 2
- - uid: 144
+ - uid: 229
components:
- type: Transform
- pos: -0.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
parent: 2
- - uid: 145
+ - uid: 230
components:
- type: Transform
- pos: 0.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,2.5
parent: 2
- - uid: 146
+ - uid: 232
components:
- type: Transform
- pos: -0.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,6.5
parent: 2
- - uid: 179
+ - uid: 234
components:
- type: Transform
- pos: -4.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
parent: 2
- - uid: 185
+ - uid: 238
components:
- type: Transform
- pos: 1.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,9.5
parent: 2
- - uid: 208
+ - uid: 240
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 4.5,5.5
+ pos: 2.5,7.5
parent: 2
- - uid: 230
+ - uid: 242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
parent: 2
- proto: ChairPilotSeat
entities:
- - uid: 148
+ - uid: 100
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,10.5
parent: 2
- - uid: 150
+ - uid: 172
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,6.5
+ pos: -2.5,1.5
parent: 2
- - uid: 186
+ - uid: 176
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,1.5
+ pos: 2.5,7.5
parent: 2
- proto: ClockworkGrille
entities:
- - uid: 39
+ - uid: 1
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,3.5
+ pos: 0.5,12.5
parent: 2
- - uid: 45
+ - uid: 3
components:
- type: Transform
- pos: -6.5,3.5
+ pos: -0.5,-0.5
parent: 2
- - uid: 54
+ - uid: 9
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,5.5
+ pos: 1.5,12.5
parent: 2
- - uid: 60
+ - uid: 10
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,5.5
+ pos: 0.5,-0.5
parent: 2
- - uid: 105
+ - uid: 12
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,4.5
+ pos: 1.5,6.5
parent: 2
- - uid: 163
+ - uid: 85
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,1.5
+ pos: -2.5,0.5
parent: 2
- - uid: 172
+ - uid: 120
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,4.5
+ pos: -0.5,8.5
parent: 2
- - uid: 213
+ - uid: 122
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,3.5
+ pos: -0.5,12.5
parent: 2
- proto: ClosetWall
entities:
- - uid: 243
+ - uid: 191
components:
- type: Transform
- pos: 0.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
parent: 2
- type: EntityStorage
air:
@@ -835,1105 +868,1030 @@ entities:
showEnts: False
occludes: True
ents:
- - 244
+ - 192
- proto: ComputerIFF
entities:
- - uid: 119
+ - uid: 195
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,9.5
parent: 2
- proto: ComputerTabletopRadar
entities:
- - uid: 49
+ - uid: 137
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,4.5
+ pos: 0.5,11.5
parent: 2
- proto: ComputerTabletopShuttleAntag
entities:
- - uid: 75
+ - uid: 6
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,5.5
+ pos: 1.5,11.5
parent: 2
- proto: ComputerTabletopStationRecords
entities:
- - uid: 214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,3.5
- parent: 2
-- proto: CratePirate
- entities:
- - uid: 91
+ - uid: 81
components:
- type: Transform
- pos: 1.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,10.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14923
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 234
- - 92
- - 93
- - 94
- - 95
- - 96
- - 97
- - 98
- - 99
- - 100
- - 101
- - 102
- - 103
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: DefibrillatorCabinetFilled
entities:
- - uid: 218
+ - uid: 149
components:
- type: Transform
- pos: -2.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,4.5
parent: 2
- proto: DisposalBend
entities:
- - uid: 20
+ - uid: 178
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
parent: 2
- proto: DisposalPipe
entities:
- - uid: 8
+ - uid: 37
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,1.5
+ pos: -2.5,-0.5
parent: 2
- - uid: 9
+ - uid: 109
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,1.5
+ pos: -2.5,0.5
parent: 2
- - uid: 31
+ - uid: 115
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,1.5
+ pos: -2.5,1.5
parent: 2
- - uid: 154
+ - uid: 124
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,1.5
+ pos: -2.5,-1.5
parent: 2
- proto: DisposalTrunk
entities:
- - uid: 37
+ - uid: 5
components:
- type: Transform
- pos: -0.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
parent: 2
- - uid: 81
+ - uid: 98
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-2.5
parent: 2
- proto: DisposalUnit
entities:
- - uid: 14
+ - uid: 179
components:
- type: Transform
- pos: -0.5,2.5
+ pos: -1.5,2.5
parent: 2
- proto: ExtinguisherCabinetFilled
entities:
- - uid: 242
+ - uid: 231
components:
- type: Transform
- pos: -0.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,2.5
parent: 2
- proto: FaxMachineShipAntag
entities:
- - uid: 90
+ - uid: 222
components:
- type: Transform
- pos: -9.5,3.5
+ pos: -0.5,11.5
parent: 2
- proto: GasPassiveVent
entities:
- - uid: 216
+ - uid: 121
components:
- type: Transform
- pos: 4.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
+ color: '#FF1111FF'
- proto: GasPipeBend
entities:
- - uid: 165
+ - uid: 39
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- - uid: 209
+ - uid: 111
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,5.5
+ pos: 1.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 210
+ color: '#FF1111FF'
+ - uid: 134
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
+ color: '#FF1111FF'
- proto: GasPipeStraight
entities:
- - uid: 4
+ - uid: 20
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,4.5
+ pos: 2.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 7
+ color: '#FF1111FF'
+ - uid: 26
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,0.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- - uid: 164
+ - uid: 28
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,8.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- - uid: 166
+ - uid: 36
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,3.5
+ pos: 1.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0088FFFF'
- - uid: 168
+ color: '#FF1111FF'
+ - uid: 38
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0088FFFF'
- - uid: 188
+ color: '#FF1111FF'
+ - uid: 43
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 4.5,6.5
+ pos: 0.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 196
+ color: '#FF1111FF'
+ - uid: 50
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,3.5
+ pos: 1.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0088FFFF'
- - uid: 197
+ color: '#FF1111FF'
+ - uid: 78
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,3.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- - uid: 198
+ - uid: 91
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0088FFFF'
- - uid: 199
+ color: '#FF1111FF'
+ - uid: 96
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 200
+ color: '#0088FFFF'
+ - uid: 108
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 201
+ color: '#FF1111FF'
+ - uid: 112
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- - uid: 202
+ - uid: 113
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 203
+ color: '#0088FFFF'
+ - uid: 114
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 204
+ color: '#0088FFFF'
+ - uid: 117
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 222
+ color: '#FF1111FF'
+ - uid: 118
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 224
+ color: '#FF1111FF'
+ - uid: 125
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 231
+ color: '#0088FFFF'
+ - uid: 130
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- proto: GasPipeTJunction
entities:
- - uid: 167
+ - uid: 34
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 181
+ color: '#0088FFFF'
+ - uid: 41
components:
- type: Transform
- pos: -3.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 182
+ color: '#FF1111FF'
+ - uid: 48
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- - uid: 207
+ - uid: 49
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0088FFFF'
- - uid: 225
+ color: '#FF1111FF'
+ - uid: 51
components:
- type: Transform
- pos: 3.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
+ color: '#FF1111FF'
- proto: GasPort
entities:
- - uid: 151
+ - uid: 131
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,0.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- proto: GasVentPump
entities:
- - uid: 205
+ - uid: 23
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-1.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- - uid: 206
+ - uid: 132
components:
- type: Transform
- pos: -4.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- - uid: 211
+ - uid: 141
components:
- type: Transform
- pos: -0.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- - uid: 219
+ - uid: 142
components:
- type: Transform
- pos: -8.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,6.5
parent: 2
- type: AtmosPipeColor
color: '#0088FFFF'
- proto: GasVentScrubber
entities:
- - uid: 140
+ - uid: 33
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,4.5
+ pos: 0.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 147
+ color: '#FF1111FF'
+ - uid: 35
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 169
+ color: '#FF1111FF'
+ - uid: 165
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.5,4.5
+ pos: -0.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
- - uid: 220
+ color: '#FF1111FF'
+ - uid: 166
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#FF2222FF'
+ color: '#FF1111FF'
- proto: GravityGeneratorMini
entities:
- - uid: 72
+ - uid: 21
components:
- type: Transform
- pos: -2.5,3.5
+ pos: -0.5,4.5
parent: 2
- proto: Gyroscope
entities:
- - uid: 73
+ - uid: 17
components:
- type: Transform
- pos: -3.5,3.5
+ pos: -0.5,5.5
parent: 2
- type: Thruster
originalPowerLoad: 1500
- proto: LockerWallMedicalFilled
entities:
- - uid: 241
+ - uid: 216
components:
- type: Transform
- pos: -3.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,5.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14923
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- proto: PirateFlag
entities:
- - uid: 237
+ - uid: 79
components:
- type: Transform
- pos: 4.5,6.5
+ pos: 3.5,9.5
parent: 2
- - uid: 238
+ - uid: 152
components:
- type: Transform
- pos: -7.5,7.5
+ pos: -3.5,1.5
parent: 2
- - uid: 239
+ - uid: 170
components:
- type: Transform
- pos: -8.5,2.5
+ pos: -1.5,10.5
parent: 2
- - uid: 240
+ - uid: 211
components:
- type: Transform
- pos: 0.5,0.5
+ pos: 2.5,-2.5
parent: 2
-- proto: PirateHandyFlag
- entities:
- - uid: 234
- components:
- - type: Transform
- parent: 91
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: PlastitaniumWindow
entities:
- - uid: 11
+ - uid: 144
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,3.5
+ pos: -2.5,0.5
parent: 2
- - uid: 15
+ - uid: 151
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,12.5
parent: 2
- - uid: 47
+ - uid: 173
components:
- type: Transform
- pos: -6.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,12.5
parent: 2
- - uid: 84
+ - uid: 180
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,4.5
+ pos: -0.5,-0.5
parent: 2
- - uid: 157
+ - uid: 183
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,5.5
+ pos: -0.5,8.5
parent: 2
- - uid: 159
+ - uid: 193
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,5.5
+ pos: 0.5,-0.5
parent: 2
- - uid: 187
+ - uid: 241
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,1.5
+ pos: 1.5,12.5
parent: 2
- - uid: 232
+ - uid: 243
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,3.5
+ pos: 1.5,6.5
parent: 2
- proto: PortableGeneratorPacmanShuttle
entities:
- - uid: 133
+ - uid: 24
components:
- type: Transform
- pos: -4.5,3.5
+ pos: -0.5,6.5
parent: 2
- type: FuelGenerator
on: False
- type: Physics
bodyType: Static
+- proto: PowerCellRecharger
+ entities:
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
- proto: PoweredlightColoredBlack
entities:
- - uid: 183
+ - uid: 7
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,10.5
parent: 2
- proto: PoweredSmallLight
entities:
- - uid: 149
+ - uid: 146
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,6.5
+ pos: 2.5,7.5
parent: 2
- - uid: 215
+ - uid: 224
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,5.5
+ pos: 1.5,1.5
parent: 2
- proto: Railing
entities:
- - uid: 122
+ - uid: 52
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,5.5
parent: 2
- - uid: 128
+ - uid: 83
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -3.5,7.5
+ pos: 2.5,12.5
parent: 2
- - uid: 132
+ - uid: 150
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,7.5
parent: 2
- - uid: 170
+ - uid: 235
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,11.5
parent: 2
- - uid: 212
+ - uid: 239
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,6.5
parent: 2
- proto: RailingCorner
entities:
- - uid: 57
+ - uid: 138
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,12.5
+ parent: 2
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
parent: 2
- proto: SheetPlasma
entities:
- - uid: 233
+ - uid: 188
components:
- type: Transform
- pos: -4.5,3.5
+ pos: -0.5,6.5
parent: 2
- proto: ShuttleGunPirateCannon
entities:
- - uid: 158
+ - uid: 75
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,5.5
parent: 2
- type: DeviceLinkSink
links:
- - 109
- - uid: 160
+ - 226
+ - uid: 86
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,7.5
parent: 2
- type: DeviceLinkSink
links:
- - 109
+ - 226
- proto: SignalButtonDirectional
entities:
- - uid: 109
- components:
- - type: Transform
- pos: -8.5,6.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 158:
- - Pressed: Trigger
- 160:
- - Pressed: Trigger
- - uid: 129
+ - uid: 186
components:
- type: Transform
- pos: -9.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,11.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 78:
+ 184:
- Pressed: Toggle
- 50:
+ 219:
- Pressed: Toggle
- 58:
+ 4:
- Pressed: Toggle
- 46:
+ 212:
- Pressed: Toggle
- 64:
+ 171:
- Pressed: Toggle
- 56:
+ 220:
- Pressed: Toggle
+ - uid: 226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,10.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 86:
+ - Pressed: Trigger
+ 75:
+ - Pressed: Trigger
- proto: SpawnPointPirate
entities:
- - uid: 235
+ - uid: 158
components:
- type: Transform
- pos: -4.5,4.5
+ pos: 0.5,7.5
parent: 2
- proto: SpawnPointPirateCaptain
entities:
- - uid: 245
+ - uid: 156
components:
- type: Transform
- pos: -3.5,4.5
+ pos: 0.5,6.5
parent: 2
- proto: SpawnPointPirateFirstMate
entities:
- - uid: 246
+ - uid: 76
components:
- type: Transform
- pos: -2.5,4.5
+ pos: 0.5,5.5
parent: 2
- proto: SubstationBasic
entities:
- - uid: 111
- components:
- - type: Transform
- pos: -5.5,3.5
- parent: 2
-- proto: SuitStorageEVAPirate
- entities:
- - uid: 120
+ - uid: 102
components:
- type: Transform
- pos: -0.5,3.5
+ pos: -0.5,7.5
parent: 2
-- proto: SuitStoragePirateCap
+- proto: TableReinforced
entities:
- - uid: 30
+ - uid: 14
components:
- type: Transform
- pos: -7.5,3.5
+ pos: 0.5,11.5
parent: 2
-- proto: TableReinforced
- entities:
- - uid: 79
+ - uid: 163
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,4.5
+ pos: -0.5,2.5
parent: 2
- - uid: 171
+ - uid: 189
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,5.5
+ pos: -0.5,10.5
parent: 2
- - uid: 177
+ - uid: 217
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,3.5
+ pos: -0.5,11.5
parent: 2
- - uid: 184
+ - uid: 245
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,3.5
+ pos: 1.5,11.5
parent: 2
- proto: Thruster
entities:
- - uid: 16
+ - uid: 8
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-0.5
parent: 2
- type: Thruster
originalPowerLoad: 1500
- - uid: 21
+ - uid: 13
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-1.5
parent: 2
- type: Thruster
originalPowerLoad: 1500
- - uid: 34
+ - uid: 15
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-0.5
parent: 2
- type: Thruster
originalPowerLoad: 1500
- - uid: 59
+ - uid: 182
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,7.5
+ pos: -2.5,4.5
parent: 2
- type: Thruster
originalPowerLoad: 1500
- - uid: 193
+ - uid: 187
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-0.5
parent: 2
- type: Thruster
originalPowerLoad: 1500
- - uid: 195
+ - uid: 225
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,1.5
+ pos: -3.5,4.5
parent: 2
- type: Thruster
originalPowerLoad: 1500
- - uid: 228
+ - uid: 236
components:
- type: Transform
- pos: 2.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,3.5
parent: 2
- type: Thruster
originalPowerLoad: 1500
- proto: WallPlastitanium
entities:
- - uid: 6
+ - uid: 18
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -1.5,3.5
parent: 2
- - uid: 12
+ - uid: 22
components:
- type: Transform
- pos: 4.5,6.5
+ pos: 2.5,-2.5
parent: 2
- - uid: 13
+ - uid: 25
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,7.5
+ pos: -3.5,2.5
parent: 2
- - uid: 17
+ - uid: 29
components:
- type: Transform
- pos: 4.5,2.5
+ pos: -2.5,3.5
parent: 2
- - uid: 18
+ - uid: 30
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,5.5
+ pos: -1.5,9.5
parent: 2
- - uid: 19
+ - uid: 31
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,7.5
+ pos: -1.5,11.5
parent: 2
- - uid: 23
+ - uid: 32
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,0.5
+ pos: -3.5,1.5
parent: 2
- - uid: 25
+ - uid: 40
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,2.5
+ pos: -1.5,10.5
parent: 2
- - uid: 28
+ - uid: 42
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,7.5
+ pos: 1.5,4.5
parent: 2
- - uid: 29
+ - uid: 53
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,6.5
+ pos: 3.5,4.5
parent: 2
- - uid: 32
+ - uid: 54
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,6.5
+ pos: 2.5,-3.5
parent: 2
- - uid: 33
+ - uid: 61
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,2.5
+ pos: -1.5,-1.5
parent: 2
- - uid: 42
+ - uid: 62
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,2.5
+ pos: -1.5,-0.5
parent: 2
- - uid: 43
+ - uid: 69
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,2.5
+ pos: -1.5,-2.5
parent: 2
- - uid: 44
+ - uid: 72
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,2.5
+ pos: 3.5,3.5
parent: 2
- - uid: 82
+ - uid: 73
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,5.5
+ pos: 1.5,2.5
parent: 2
- - uid: 83
+ - uid: 77
components:
- type: Transform
- pos: 3.5,6.5
+ pos: 3.5,0.5
parent: 2
- - uid: 85
+ - uid: 92
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,6.5
+ pos: -0.5,3.5
parent: 2
- - uid: 87
+ - uid: 94
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,5.5
+ pos: 2.5,9.5
parent: 2
- - uid: 106
+ - uid: 95
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,5.5
+ pos: 3.5,8.5
parent: 2
- - uid: 107
+ - uid: 97
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,2.5
+ pos: 2.5,10.5
parent: 2
- - uid: 115
+ - uid: 101
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,5.5
+ pos: 3.5,9.5
parent: 2
- - uid: 116
+ - uid: 103
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,2.5
+ pos: 1.5,5.5
parent: 2
- - uid: 117
+ - uid: 104
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,7.5
+ pos: -1.5,7.5
parent: 2
- - uid: 123
+ - uid: 107
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,5.5
+ pos: 1.5,3.5
parent: 2
- - uid: 136
+ - uid: 110
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,2.5
+ pos: 3.5,10.5
parent: 2
- - uid: 137
+ - uid: 116
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,2.5
+ pos: 1.5,8.5
parent: 2
- - uid: 152
+ - uid: 119
components:
- type: Transform
- pos: 3.5,2.5
+ pos: -1.5,5.5
parent: 2
- - uid: 153
+ - uid: 123
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,7.5
+ pos: -1.5,4.5
parent: 2
- - uid: 155
+ - uid: 127
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,7.5
+ pos: -1.5,8.5
parent: 2
- - uid: 156
+ - uid: 128
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,7.5
+ pos: 2.5,8.5
parent: 2
- - uid: 174
+ - uid: 129
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,6.5
+ pos: 1.5,7.5
parent: 2
- - uid: 175
+ - uid: 133
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,6.5
+ pos: -1.5,6.5
parent: 2
- - uid: 176
+ - uid: 136
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,2.5
+ pos: 3.5,1.5
parent: 2
- - uid: 178
+ - uid: 140
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,7.5
+ pos: 2.5,11.5
parent: 2
- - uid: 190
+ - uid: 143
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,0.5
+ pos: 2.5,-0.5
parent: 2
- - uid: 191
+ - uid: 155
components:
- type: Transform
- pos: -1.5,1.5
+ pos: -1.5,-3.5
parent: 2
- - uid: 192
+ - uid: 227
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,0.5
+ pos: 3.5,2.5
parent: 2
- - uid: 226
+ - uid: 233
components:
- type: Transform
- pos: 5.5,2.5
+ pos: 2.5,-1.5
parent: 2
- - uid: 227
+ - uid: 246
components:
- type: Transform
- pos: 5.5,6.5
+ pos: -3.5,0.5
parent: 2
- proto: WallPlastitaniumDiagonal
entities:
- - uid: 1
+ - uid: 84
components:
- type: Transform
- pos: -9.5,7.5
+ pos: -1.5,12.5
parent: 2
- - uid: 22
+ - uid: 145
components:
- type: Transform
- pos: 1.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,11.5
parent: 2
- - uid: 124
+ - uid: 185
components:
- type: Transform
- pos: -10.5,6.5
+ pos: 2.5,0.5
parent: 2
- - uid: 125
+ - uid: 194
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,12.5
parent: 2
- - uid: 189
+ - uid: 214
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,2.5
parent: 2
- - uid: 194
+ - uid: 237
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
parent: 2
- proto: WallWeaponCapacitorRecharger
entities:
- - uid: 221
- components:
- - type: Transform
- pos: -5.5,5.5
- parent: 2
- - uid: 236
+ - uid: 244
components:
- type: Transform
- pos: -1.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,7.5
parent: 2
- proto: WarpPointShip
entities:
- - uid: 40
+ - uid: 93
components:
- type: Transform
- pos: 0.5,4.5
+ pos: 0.5,1.5
parent: 2
...
diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml
index cbd42f342e5..7e6298b48d6 100644
--- a/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml
+++ b/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml
@@ -96,23 +96,22 @@ entities:
data:
tiles:
0,0:
- 0: 30583
+ 0: 13107
1: 34952
0,-1:
- 0: 30579
- 1: 4
- -1,-1:
- 1: 36
- 0: 61128
+ 0: 13104
+ 2: 4
-1,0:
- 0: 52974
+ 0: 36076
1: 8192
0,1:
- 0: 3
1: 12
+ -1,-1:
+ 0: 51328
+ 1: 32
+ 2: 4
-1,1:
1: 6
- 0: 8
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -129,6 +128,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -150,20 +164,6 @@ entities:
- type: BecomesStation
id: mailhunter
- type: SpreaderGrid
-- proto: ActionToggleInternals
- entities:
- - uid: 53
- components:
- - type: Transform
- parent: 5
- - type: InstantAction
- container: 5
- - uid: 131
- components:
- - type: Transform
- parent: 18
- - type: InstantAction
- container: 18
- proto: AirAlarm
entities:
- uid: 125
@@ -224,12 +224,12 @@ entities:
- uid: 133
components:
- type: Transform
- pos: 1.8442372,1.3896302
+ pos: 0.67193127,0.721212
parent: 103
- uid: 134
components:
- type: Transform
- pos: 1.5838206,1.3792136
+ pos: 0.3177646,0.721212
parent: 103
- proto: AmeShielding
entities:
@@ -554,7 +554,7 @@ entities:
- type: Transform
pos: 1.5,3.5
parent: 103
-- proto: ComputerTabletopShuttle
+- proto: ComputerTabletopShuttleAntag
entities:
- uid: 95
components:
@@ -569,13 +569,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,2.5
parent: 103
-- proto: CratePirateChest
- entities:
- - uid: 135
- components:
- - type: Transform
- pos: 1.5,2.5
- parent: 103
- proto: DefibrillatorCabinetFilled
entities:
- uid: 117
@@ -725,13 +718,6 @@ entities:
- type: Transform
pos: 1.5,4.5
parent: 103
-- proto: GunSafeShuttleT3Spawner
- entities:
- - uid: 34
- components:
- - type: Transform
- pos: -1.5,2.5
- parent: 103
- proto: Gyroscope
entities:
- uid: 119
@@ -741,35 +727,6 @@ entities:
parent: 103
- type: Thruster
originalPowerLoad: 1500
-- proto: NitrousOxideTankFilled
- entities:
- - uid: 5
- components:
- - type: Transform
- pos: -0.48881638,3.010011
- parent: 103
- - type: GasTank
- toggleActionEntity: 53
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 53
- - uid: 18
- components:
- - type: Transform
- parent: 10
- - type: GasTank
- toggleActionEntity: 131
- - type: Physics
- canCollide: False
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 131
- proto: PoweredlightColoredBlack
entities:
- uid: 127
@@ -778,6 +735,13 @@ entities:
rot: -1.5707963267948966 rad
pos: 1.5,0.5
parent: 103
+- proto: Rack
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 103
- proto: ReinforcedPlasmaWindow
entities:
- uid: 75
@@ -929,13 +893,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,0.5
parent: 103
-- proto: SuitStorageEVAPirate
- entities:
- - uid: 123
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 103
- proto: TableCarpet
entities:
- uid: 32
@@ -1136,21 +1093,4 @@ entities:
- type: Transform
pos: -0.5,1.5
parent: 103
-- proto: WeaponImprovisedPneumaticCannon
- entities:
- - uid: 10
- components:
- - type: Transform
- pos: -0.3918358,2.7159653
- parent: 103
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- gas_tank: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 18
...
diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml
index 0059d9bacd9..e8c142d918a 100644
--- a/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml
+++ b/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml
@@ -428,58 +428,67 @@ entities:
data:
tiles:
0,0:
- 0: 65535
- 0,-1:
- 0: 65535
+ 0: 65294
-1,0:
- 0: 63487
- 1: 2048
- -1,-1:
- 0: 65407
- 1: 128
+ 0: 60942
0,1:
- 0: 65535
+ 0: 59455
+ -1,1:
+ 0: 57998
0,2:
- 0: 65535
+ 0: 14190
+ -1,2:
+ 0: 35854
+ 1: 256
0,3:
- 0: 13175
+ 0: 3
+ 1: 13056
+ -1,3:
+ 0: 8
+ 1: 34816
+ 0,4:
+ 1: 273
+ 0,-1:
+ 0: 57599
+ 1,2:
+ 1: 256
1,0:
- 0: 30515
+ 1: 17410
+ 2: 8704
1,1:
- 0: 4919
- 1,2:
- 0: 273
+ 2: 2
+ 1: 516
+ 1,-1:
+ 1: 8260
+ 2: 34
0,-3:
- 0: 65280
+ 0: 29184
+ -1,-3:
+ 0: 51200
+ 1: 256
0,-2:
- 0: 65535
+ 0: 49663
+ -1,-2:
+ 0: 24814
+ -1,-1:
+ 0: 57582
1,-3:
- 0: 4352
+ 1: 256
1,-2:
- 0: 29489
- 1,-1:
- 0: 13175
+ 1: 16416
+ 2: 8192
-2,0:
- 0: 52360
+ 1: 17416
+ 2: 34816
-2,1:
- 0: 2188
- -1,1:
- 0: 65535
- -1,2:
- 0: 61439
- -1,3:
- 0: 35020
- -2,-2:
- 0: 51328
+ 1: 2052
+ 2: 8
-2,-1:
- 0: 35020
- -1,-3:
- 0: 48896
- 1: 16384
- -1,-2:
- 0: 65535
- 0,4:
- 0: 273
+ 1: 32836
+ 2: 136
+ -2,-2:
+ 1: 16512
+ 2: 32768
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -497,10 +506,25 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.14996
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
moles:
- - 20.078888
- - 75.53487
+ - 0
+ - 0
- 0
- 0
- 0
@@ -1815,47 +1839,24 @@ entities:
- type: Transform
pos: 3.5,0.5
parent: 1
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 204
- - 203
- - 202
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: ClosetWallEmergencyFilledRandom
- entities:
- - uid: 205
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-4.5
- parent: 1
- - uid: 206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-8.5
- parent: 1
-- proto: ClosetWallFireFilledRandom
- entities:
- - uid: 207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,1.5
- parent: 1
- - uid: 208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-8.5
- parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14923
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- proto: ClosetWallMaintenanceFilledRandom
entities:
- uid: 209
@@ -1863,13 +1864,26 @@ entities:
- type: Transform
pos: -0.5,6.5
parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14923
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- proto: ClothingEyesEyepatch
entities:
- - uid: 210
- components:
- - type: Transform
- pos: -0.3120169,12.330579
- parent: 1
- uid: 211
components:
- type: Transform
@@ -1880,14 +1894,14 @@ entities:
- uid: 212
components:
- type: Transform
- pos: 1.2214307,2.6089354
+ pos: -0.4273789,2.6294885
parent: 1
- proto: ClothingHeadHatPirate
entities:
- uid: 213
components:
- type: Transform
- pos: 1.5811653,12.328757
+ pos: 1.4499189,12.408553
parent: 1
- proto: ClothingHeadHatPirateTricord
entities:
@@ -1896,40 +1910,13 @@ entities:
- type: Transform
pos: -0.27106684,-0.46582198
parent: 1
-- proto: ClothingNeckCloakPirateCap
- entities:
- - uid: 202
- components:
- - type: Transform
- parent: 201
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: ClothingOuterCoatJensen
entities:
- uid: 215
components:
- type: Transform
- pos: -0.3756531,12.328757
+ pos: -0.3953849,12.460637
parent: 1
-- proto: ClothingOuterCoatPirate
- entities:
- - uid: 203
- components:
- - type: Transform
- parent: 201
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitPirate
- entities:
- - uid: 204
- components:
- - type: Transform
- parent: 201
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: ComputerIFF
entities:
- uid: 216
@@ -1946,7 +1933,7 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,8.5
parent: 1
-- proto: ComputerShuttle
+- proto: ComputerShuttleAntag
entities:
- uid: 218
components:
@@ -1963,6 +1950,11 @@ entities:
parent: 1
- proto: CrateEmptySpawner
entities:
+ - uid: 203
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
- uid: 220
components:
- type: Transform
@@ -1983,33 +1975,13 @@ entities:
- type: Transform
pos: 1.5,-2.5
parent: 1
-- proto: CrateFunPirate
- entities:
- - uid: 225
- components:
- - type: Transform
- pos: -0.5,-2.5
- parent: 1
-- proto: CratePirateChest
- entities:
- - uid: 224
- components:
- - type: Transform
- pos: -0.5,5.5
- parent: 1
-- proto: CratePirateChestCaptain
- entities:
- - uid: 274
- components:
- - type: Transform
- pos: -0.5,2.5
- parent: 1
- proto: DefibrillatorCabinetFilled
entities:
- - uid: 228
+ - uid: 202
components:
- type: Transform
- pos: 2.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-4.5
parent: 1
- proto: DresserFilled
entities:
@@ -2108,13 +2080,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,9.5
parent: 1
-- proto: FoodMealNachosCuban
- entities:
- - uid: 244
- components:
- - type: Transform
- pos: 2.418281,9.579869
- parent: 1
- proto: GravityGeneratorMini
entities:
- uid: 245
@@ -2309,13 +2274,6 @@ entities:
- type: Transform
pos: 2.3989987,-8.34466
parent: 1
-- proto: PinpointerUniversal
- entities:
- - uid: 280
- components:
- - type: Transform
- pos: 0.67992365,2.5024152
- parent: 1
- proto: PirateFlag
entities:
- uid: 281
@@ -2470,6 +2428,11 @@ entities:
parent: 1
- proto: Rack
entities:
+ - uid: 204
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 1
- uid: 304
components:
- type: Transform
@@ -2662,21 +2625,6 @@ entities:
- type: Transform
pos: 3.5,-0.5
parent: 1
- - uid: 337
- components:
- - type: Transform
- pos: -1.5,4.5
- parent: 1
- - uid: 338
- components:
- - type: Transform
- pos: 2.5,7.5
- parent: 1
- - uid: 339
- components:
- - type: Transform
- pos: 1.5,9.5
- parent: 1
- proto: RemoteSignaller
entities:
- uid: 505
@@ -2722,6 +2670,8 @@ entities:
- type: Transform
pos: -0.51266235,8.61944
parent: 1
+ - type: Stack
+ count: 15
- proto: ShuttersNormal
entities:
- uid: 341
@@ -3004,13 +2954,6 @@ entities:
parent: 1
- type: SpamEmitSound
enabled: False
-- proto: SpawnMobParrot
- entities:
- - uid: 372
- components:
- - type: Transform
- pos: 0.5,4.5
- parent: 1
- proto: SpawnPointPirate
entities:
- uid: 373
@@ -3047,40 +2990,13 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,7.5
parent: 1
-- proto: SuitStorageEVAPirate
- entities:
- - uid: 378
- components:
- - type: Transform
- pos: 3.5,7.5
- parent: 1
-- proto: SuitStoragePirateCap
+- proto: TableCarpet
entities:
- - uid: 379
+ - uid: 205
components:
- type: Transform
- pos: -1.5,-8.5
+ pos: -0.5,2.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14923
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: TableCarpet
- entities:
- uid: 380
components:
- type: Transform
@@ -3584,34 +3500,6 @@ entities:
- type: Transform
pos: 0.5,3.5
parent: 1
-- proto: WeaponGrapplingGun
- entities:
- - uid: 471
- components:
- - type: Transform
- pos: 0.44128692,2.693194
- parent: 1
-- proto: WeaponLauncherPirateCannon
- entities:
- - uid: 472
- components:
- - type: Transform
- pos: 0.4072001,5.6771774
- parent: 1
-- proto: WeaponRevolverPirate
- entities:
- - uid: 473
- components:
- - type: Transform
- pos: 0.6162869,5.484689
- parent: 1
-- proto: WeaponShotgunBlunderbuss
- entities:
- - uid: 474
- components:
- - type: Transform
- pos: 0.5503819,5.2956195
- parent: 1
- proto: Window
entities:
- uid: 475
diff --git a/Resources/Maps/_NF/Shuttles/Security/empress.yml b/Resources/Maps/_NF/Shuttles/Security/empress.yml
index 6ecc2ec1c53..399a1cb5204 100644
--- a/Resources/Maps/_NF/Shuttles/Security/empress.yml
+++ b/Resources/Maps/_NF/Shuttles/Security/empress.yml
@@ -1014,214 +1014,225 @@ entities:
data:
tiles:
0,0:
- 0: 65535
- -2,0:
- 0: 65535
+ 0: 62395
+ 0,-1:
+ 0: 63795
+ 1: 8
-1,0:
- 0: 65535
+ 0: 61166
0,1:
- 0: 65535
+ 0: 61167
+ -1,1:
+ 0: 65326
0,2:
- 0: 255
+ 0: 14
1: 3072
+ -1,2:
+ 0: 15
+ 1: 256
1,0:
- 0: 65535
+ 0: 61695
+ 1,-1:
+ 0: 64002
+ 1: 8
1,1:
- 0: 65535
+ 0: 61102
1,2:
- 0: 4095
+ 0: 2730
2,0:
- 0: 65535
+ 0: 65279
+ 2,-1:
+ 0: 64264
+ 1: 3
2,1:
- 0: 65535
+ 0: 61166
2,2:
- 0: 511
+ 0: 14
1: 1536
3,0:
0: 65535
3,1:
0: 65535
3,2:
- 0: 255
+ 0: 15
+ 3,-1:
+ 0: 65024
+ 1: 14
+ 4,1:
+ 0: 61168
-4,0:
- 0: 65535
+ 0: 65471
+ -4,-1:
+ 0: 64002
+ 1: 8
+ -5,0:
+ 0: 30603
-4,1:
- 0: 65535
+ 0: 48049
+ -5,1:
+ 0: 61431
-4,2:
- 0: 255
+ 0: 11
+ -5,2:
+ 0: 15
-3,0:
- 0: 65535
+ 0: 65471
-3,1:
- 0: 65535
+ 0: 56793
-3,2:
- 0: 3839
+ 0: 205
1: 256
- -2,1:
+ -3,-1:
+ 0: 64264
+ 1: 3
+ -2,0:
0: 65535
+ -2,-1:
+ 0: 65248
+ -2,1:
+ 0: 26212
-2,2:
- 0: 4095
- -1,1:
- 0: 65535
- -1,2:
- 0: 255
- 1: 256
+ 0: 102
+ -1,-1:
+ 0: 61678
-8,0:
- 0: 65535
+ 0: 3822
+ -8,-1:
+ 0: 61164
-8,1:
- 0: 3142
1: 32800
2: 136
+ -7,0:
+ 0: 36863
-8,2:
1: 8
- -7,0:
- 0: 65535
-7,1:
- 0: 4061
1: 61440
3: 34
+ 0: 136
-7,2:
- 1: 15
+ 1: 1
+ 4: 14
+ -7,-1:
+ 0: 61917
-6,0:
- 0: 65535
+ 0: 23839
-6,1:
- 0: 61439
+ 0: 3392
1: 4096
-6,2:
- 1: 1
- 0: 206
- -5,0:
- 0: 65535
- -5,1:
- 0: 65535
- -5,2:
- 0: 255
+ 4: 1
+ 0: 8
+ -6,-1:
+ 0: 64185
+ -5,-1:
+ 0: 63539
+ 1: 8
+ 4,-1:
+ 0: 61678
4,0:
- 0: 65535
- 4,1:
- 0: 65535
+ 0: 61152
4,2:
- 0: 255
+ 0: 14
5,0:
- 0: 65535
+ 0: 48056
5,1:
- 0: 16383
+ 0: 5513
1: 49152
+ 5,-1:
+ 0: 65263
5,2:
- 0: 19
- 1: 12
+ 4: 12
6,0:
- 0: 65535
+ 0: 59278
6,1:
- 0: 4095
1: 61440
+ 0: 238
6,2:
- 1: 15
+ 4: 3
+ 1: 12
+ 6,-1:
+ 0: 61679
7,0:
- 0: 14199
+ 0: 4147
1: 16384
7,1:
- 0: 307
- -4,-1:
- 0: 65527
- 1: 8
- -3,-1:
- 1: 3
- 0: 65532
- -2,-1:
- 0: 65535
+ 0: 1
+ 7,-1:
+ 0: 12339
-1,-4:
- 0: 65535
+ 0: 61166
-1,-3:
- 0: 65535
+ 0: 61166
-1,-2:
- 0: 65535
- -1,-1:
- 0: 65535
+ 0: 61156
-1,-5:
- 0: 65520
- 0,-5:
- 0: 30576
+ 0: 60928
0,-4:
- 0: 30583
+ 0: 13107
0,-3:
- 0: 30583
+ 0: 13107
0,-2:
- 0: 30583
- 0,-1:
- 0: 65527
- 1: 8
- 1,-1:
- 0: 65527
- 1: 8
- 2,-1:
- 1: 3
- 0: 65532
- 3,-1:
- 0: 65521
- 1: 14
- -8,-1:
- 0: 65535
+ 0: 13104
+ 0,-5:
+ 0: 13056
-8,-2:
- 0: 61064
- -7,-3:
- 1: 13311
- 0: 52224
+ 0: 49152
-7,-2:
- 0: 65535
- -7,-1:
- 0: 65535
+ 0: 56560
+ -7,-3:
+ 1: 8955
+ 4: 4356
+ 0: 16384
-7,-4:
- 1: 52224
+ 1: 35840
+ 4: 16384
-6,-4:
- 1: 61696
+ 1: 256
+ 4: 61440
-6,-3:
- 1: 31
- 0: 65504
+ 1: 15
+ 4: 16
+ 0: 56320
-6,-2:
- 0: 65535
- -6,-1:
- 0: 65535
+ 0: 56797
-5,-4:
- 1: 28672
+ 4: 4096
+ 1: 24576
-5,-3:
- 1: 26215
- 0: 4368
+ 1: 8739
+ 4: 17476
-5,-2:
- 0: 30583
- -5,-1:
- 0: 65527
- 1: 8
+ 0: 13104
4,-4:
- 1: 61440
+ 1: 12288
+ 4: 49152
4,-3:
- 1: 13119
- 0: 52416
+ 4: 4369
+ 1: 8750
+ 0: 34816
4,-2:
- 0: 65535
- 4,-1:
- 0: 65535
+ 0: 3808
5,-4:
- 1: 64512
+ 4: 28672
+ 1: 35840
5,-3:
- 1: 207
- 0: 65328
+ 1: 143
+ 0: 28928
+ 4: 64
5,-2:
- 0: 65535
- 5,-1:
- 0: 65535
+ 0: 28276
6,-4:
- 1: 4352
+ 1: 256
+ 4: 4096
6,-3:
- 1: 26231
- 0: 4352
+ 4: 17409
+ 1: 8822
+ 0: 4096
6,-2:
- 0: 65535
- 6,-1:
- 0: 65535
+ 0: 1904
7,-2:
- 0: 13056
- 7,-1:
- 0: 30583
+ 0: 4096
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -1239,7 +1250,7 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ immutable: True
moles:
- 0
- 0
@@ -1283,6 +1294,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
@@ -2465,14 +2491,6 @@ entities:
- type: Transform
pos: 10.5,9.5
parent: 1
-- proto: BaseBallBat
- entities:
- - uid: 1152
- components:
- - type: Transform
- parent: 1125
- - type: Physics
- canCollide: False
- proto: Bed
entities:
- uid: 875
@@ -2741,22 +2759,6 @@ entities:
- type: Transform
pos: 25.5,0.5
parent: 1
-- proto: BoxBeanbag
- entities:
- - uid: 1182
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1183
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: BoxBodyBag
entities:
- uid: 589
@@ -2790,86 +2792,6 @@ entities:
- type: Transform
pos: -0.29593712,-9.424562
parent: 1
-- proto: BoxLethalshot
- entities:
- - uid: 1180
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1181
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxMagazinePistol
- entities:
- - uid: 249
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1179
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxMagazinePistolRubber
- entities:
- - uid: 251
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1069
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxMagazineRifle
- entities:
- - uid: 248
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1067
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: BoxMagazineRifleRubber
- entities:
- - uid: 253
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1178
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: BoxTrashbag
entities:
- uid: 708
@@ -5609,66 +5531,6 @@ entities:
- type: Transform
pos: 18.5,-2.5
parent: 1
-- proto: CartridgeRocket
- entities:
- - uid: 1206
- components:
- - type: Transform
- parent: 497
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1207
- components:
- - type: Transform
- parent: 497
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1208
- components:
- - type: Transform
- parent: 497
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1209
- components:
- - type: Transform
- parent: 497
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CartridgeRocketEmp
- entities:
- - uid: 1196
- components:
- - type: Transform
- parent: 1016
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1197
- components:
- - type: Transform
- parent: 1016
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1198
- components:
- - type: Transform
- parent: 1016
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1199
- components:
- - type: Transform
- parent: 1016
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: Catwalk
entities:
- uid: 125
@@ -6475,98 +6337,25 @@ entities:
- type: Transform
pos: -1.5,6.5
parent: 1
+- proto: CrateNfsdSecure1
+ entities:
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 19.5,1.5
+ parent: 1
- proto: CrateNfsdSecure2
entities:
- - uid: 247
+ - uid: 141
components:
- type: Transform
- pos: 19.5,3.5
+ pos: 18.5,1.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14923
- moles:
- - 1.8856695
- - 7.0937095
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1179
- - 1181
- - 1180
- - 1067
- - 1184
- - 1176
- - 248
- - 1188
- - 249
- - 1186
- - 1177
- - 1187
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 250
+ - uid: 249
components:
- type: Transform
- pos: 21.5,3.5
+ pos: 17.5,1.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14923
- moles:
- - 1.8856695
- - 7.0937095
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 251
- - 1190
- - 146
- - 253
- - 1191
- - 1069
- - 1185
- - 1189
- - 1182
- - 141
- - 1183
- - 1178
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: CrateNfsdSupplies
entities:
- uid: 559
@@ -6602,50 +6391,6 @@ entities:
- type: Transform
pos: -18.5,-5.5
parent: 1
-- proto: CrateWeaponSecure
- entities:
- - uid: 1016
- components:
- - type: Transform
- pos: 18.5,3.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14926
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1195
- - 1194
- - 1192
- - 1193
- - 1196
- - 1200
- - 1198
- - 1199
- - 1197
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: CrayonBox
entities:
- uid: 988
@@ -7302,36 +7047,6 @@ entities:
- type: Transform
pos: 3.438164,6.5435786
parent: 1
-- proto: EmpGrenade
- entities:
- - uid: 1192
- components:
- - type: Transform
- parent: 1016
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1193
- components:
- - type: Transform
- parent: 1016
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1194
- components:
- - type: Transform
- parent: 1016
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1195
- components:
- - type: Transform
- parent: 1016
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: EmpressMothershipComputer
entities:
- uid: 617
@@ -7349,36 +7064,6 @@ entities:
showEnts: False
occludes: True
ents: []
-- proto: ExGrenade
- entities:
- - uid: 1201
- components:
- - type: Transform
- parent: 497
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1202
- components:
- - type: Transform
- parent: 497
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1203
- components:
- - type: Transform
- parent: 497
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1204
- components:
- - type: Transform
- parent: 497
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: FaxMachineShip
entities:
- uid: 1103
@@ -11409,10 +11094,10 @@ entities:
parent: 1
- proto: GunSafe
entities:
- - uid: 497
+ - uid: 146
components:
- type: Transform
- pos: 17.5,3.5
+ pos: 19.5,3.5
parent: 1
- type: EntityStorage
air:
@@ -11432,25 +11117,16 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1203
- - 1204
- - 1202
- - 1205
- - 1209
- - 1201
- - 1207
- - 1208
- - 1206
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 17.5,3.5
+ parent: 1
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 18.5,3.5
+ parent: 1
- proto: GyroscopeNfsd
entities:
- uid: 660
@@ -11808,60 +11484,6 @@ entities:
- type: Transform
pos: 29.692461,1.1016078
parent: 1
-- proto: MagazineBoxMagnum
- entities:
- - uid: 1184
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MagazineBoxMagnumRubber
- entities:
- - uid: 1185
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MagazineBoxPistol
- entities:
- - uid: 1177
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MagazineBoxPistolRubber
- entities:
- - uid: 146
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MagazineBoxRifleBig
- entities:
- - uid: 1176
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MagazineBoxRifleBigRubber
- entities:
- - uid: 141
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: MedicalBed
entities:
- uid: 481
@@ -13637,20 +13259,6 @@ entities:
- type: Transform
pos: 1.6063663,-8.880302
parent: 1
-- proto: SecBreachingHammer
- entities:
- - uid: 1148
- components:
- - type: Transform
- parent: 1125
- - type: Physics
- canCollide: False
- - uid: 1149
- components:
- - type: Transform
- parent: 1125
- - type: Physics
- canCollide: False
- proto: ShipyardRCD
entities:
- uid: 2576
@@ -14550,52 +14158,6 @@ entities:
- type: Transform
pos: 27.5,0.5
parent: 1
-- proto: SpeedLoaderMagnum
- entities:
- - uid: 1186
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1187
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1188
- components:
- - type: Transform
- parent: 247
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: SpeedLoaderMagnumRubber
- entities:
- - uid: 1189
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1190
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1191
- components:
- - type: Transform
- parent: 250
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: StationMap
entities:
- uid: 1736
@@ -15793,20 +15355,6 @@ entities:
- type: Transform
pos: 29.509594,0.66229606
parent: 1
-- proto: Truncheon
- entities:
- - uid: 1150
- components:
- - type: Transform
- parent: 1125
- - type: Physics
- canCollide: False
- - uid: 1151
- components:
- - type: Transform
- parent: 1125
- - type: Physics
- canCollide: False
- proto: VendingMachineBooze
entities:
- uid: 529
@@ -17701,96 +17249,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.5,4.5
parent: 1
-- proto: WeaponDisabler
- entities:
- - uid: 1161
- components:
- - type: Transform
- parent: 1124
- - type: Physics
- canCollide: False
- - uid: 1162
- components:
- - type: Transform
- parent: 1124
- - type: Physics
- canCollide: False
- - uid: 1163
- components:
- - type: Transform
- parent: 1124
- - type: Physics
- canCollide: False
- - uid: 1164
- components:
- - type: Transform
- parent: 1124
- - type: Physics
- canCollide: False
-- proto: WeaponEmpEmitter
- entities:
- - uid: 490
- components:
- - type: Transform
- parent: 323
- - type: Physics
- canCollide: False
- - uid: 581
- components:
- - type: Transform
- parent: 323
- - type: Physics
- canCollide: False
- - uid: 601
- components:
- - type: Transform
- parent: 323
- - type: Physics
- canCollide: False
- - uid: 689
- components:
- - type: Transform
- parent: 323
- - type: Physics
- canCollide: False
- - uid: 697
- components:
- - type: Transform
- parent: 323
- - type: Physics
- canCollide: False
-- proto: WeaponEnergyGun
- entities:
- - uid: 1170
- components:
- - type: Transform
- parent: 1123
- - type: Physics
- canCollide: False
- - uid: 1171
- components:
- - type: Transform
- parent: 1123
- - type: Physics
- canCollide: False
- - uid: 1172
- components:
- - type: Transform
- parent: 1123
- - type: Physics
- canCollide: False
- - uid: 1173
- components:
- - type: Transform
- parent: 1123
- - type: Physics
- canCollide: False
- - uid: 1174
- components:
- - type: Transform
- parent: 1123
- - type: Physics
- canCollide: False
- proto: WeaponGrapplingGun
entities:
- uid: 1228
@@ -17808,558 +17266,33 @@ entities:
- type: Transform
pos: -2.485515,-4.420809
parent: 1
-- proto: WeaponLaserCarbine
+- proto: WeaponRackBase
entities:
- - uid: 1143
- components:
- - type: Transform
- parent: 1131
- - type: Physics
- canCollide: False
- - uid: 1144
- components:
- - type: Transform
- parent: 1131
- - type: Physics
- canCollide: False
- - uid: 1145
- components:
- - type: Transform
- parent: 1131
- - type: Physics
- canCollide: False
- - uid: 1146
- components:
- - type: Transform
- parent: 1131
- - type: Physics
- canCollide: False
- - uid: 1147
- components:
- - type: Transform
- parent: 1131
- - type: Physics
- canCollide: False
-- proto: WeaponLauncherRocket
- entities:
- - uid: 1205
- components:
- - type: Transform
- parent: 497
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponLauncherRocketEmp
- entities:
- - uid: 1200
- components:
- - type: Transform
- parent: 1016
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponPistolMk58
- entities:
- - uid: 1157
- components:
- - type: Transform
- parent: 1018
- - type: Physics
- canCollide: False
- - uid: 1158
- components:
- - type: Transform
- parent: 1018
- - type: Physics
- canCollide: False
- - uid: 1159
- components:
- - type: Transform
- parent: 1018
- - type: Physics
- canCollide: False
- - uid: 1160
- components:
- - type: Transform
- parent: 1018
- - type: Physics
- canCollide: False
-- proto: WeaponRackBase
- entities:
- - uid: 1126
- components:
- - type: Transform
- pos: 19.5,1.5
- parent: 1
- - type: Lock
- locked: True
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1099
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1100
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1101
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1102
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1113
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 1127
- components:
- - type: Transform
- pos: 18.5,1.5
- parent: 1
- - type: Lock
- locked: True
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1138
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1139
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1140
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1141
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1142
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 1131
+ - uid: 250
components:
- type: Transform
- pos: 17.5,1.5
+ pos: 21.5,3.5
parent: 1
- type: Lock
locked: True
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1143
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1144
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1145
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1146
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1147
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: WeaponRackMeleeBase
+- proto: WeaponRackMeleeWallmountedBase
entities:
- - uid: 1125
+ - uid: 323
components:
- type: Transform
pos: 20.5,1.5
parent: 1
- type: Lock
locked: True
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1148
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1149
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1150
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1151
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1152
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: WeaponRackPistolWallmountedBase
entities:
- - uid: 1010
- components:
- - type: Transform
- pos: 22.5,2.5
- parent: 1
- - type: Lock
- locked: True
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1153
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1154
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1155
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1156
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 1018
- components:
- - type: Transform
- pos: 22.5,3.5
- parent: 1
- - type: Lock
- locked: True
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1157
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1158
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1159
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1160
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 1124
- components:
- - type: Transform
- pos: 22.5,1.5
- parent: 1
- - type: Lock
- locked: True
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1161
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1162
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1163
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1164
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: WeaponRackPistolWallmountedSecurity
- entities:
- - uid: 1013
+ - uid: 253
components:
- type: Transform
pos: 28.5,5.5
parent: 1
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1165
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: WeaponRackWallmountedBase
- entities:
- - uid: 323
- components:
- - type: Transform
- pos: 21.5,4.5
- parent: 1
- - type: Lock
- locked: True
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 490
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 581
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 601
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 689
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 697
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 1123
- components:
- - type: Transform
- pos: 19.5,4.5
- parent: 1
- type: Lock
locked: True
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents: []
- weapon1_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1170
- weapon2_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1171
- weapon3_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1172
- weapon4_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1173
- weapon5_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 1174
- weapon6_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: WeaponRevolverInspector
- entities:
- - uid: 1153
- components:
- - type: Transform
- parent: 1010
- - type: Physics
- canCollide: False
- - uid: 1154
- components:
- - type: Transform
- parent: 1010
- - type: Physics
- canCollide: False
- - uid: 1155
- components:
- - type: Transform
- parent: 1010
- - type: Physics
- canCollide: False
- - uid: 1156
- components:
- - type: Transform
- parent: 1010
- - type: Physics
- canCollide: False
-- proto: WeaponRevolverMateba
- entities:
- - uid: 1165
- components:
- - type: Transform
- parent: 1013
- - type: Physics
- canCollide: False
-- proto: WeaponRifleLecter
- entities:
- - uid: 1099
- components:
- - type: Transform
- parent: 1126
- - type: Physics
- canCollide: False
- - uid: 1100
- components:
- - type: Transform
- parent: 1126
- - type: Physics
- canCollide: False
- - uid: 1101
- components:
- - type: Transform
- parent: 1126
- - type: Physics
- canCollide: False
- - uid: 1102
- components:
- - type: Transform
- parent: 1126
- - type: Physics
- canCollide: False
- - uid: 1113
- components:
- - type: Transform
- parent: 1126
- - type: Physics
- canCollide: False
-- proto: WeaponShotgunEnforcer
- entities:
- - uid: 1138
- components:
- - type: Transform
- parent: 1127
- - type: Physics
- canCollide: False
- - uid: 1139
- components:
- - type: Transform
- parent: 1127
- - type: Physics
- canCollide: False
- - uid: 1140
- components:
- - type: Transform
- parent: 1127
- - type: Physics
- canCollide: False
- - uid: 1141
- components:
- - type: Transform
- parent: 1127
- - type: Physics
- canCollide: False
- - uid: 1142
- components:
- - type: Transform
- parent: 1127
- - type: Physics
- canCollide: False
- proto: WeldingFuelTankHighCapacity
entities:
- uid: 823
diff --git a/Resources/Maps/_NF/Shuttles/mailpod.yml b/Resources/Maps/_NF/Shuttles/mailpod.yml
new file mode 100644
index 00000000000..adf521b3bc6
--- /dev/null
+++ b/Resources/Maps/_NF/Shuttles/mailpod.yml
@@ -0,0 +1,931 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 88: FloorShuttleWhite
+ 107: FloorTechMaint
+ 124: Lattice
+ 125: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.48958334,-0.5208333
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: WAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#1861D5FF'
+ id: MiniTileSteelCornerNe
+ decals:
+ 0: 1,1
+ 14: 0,3
+ - node:
+ color: '#1861D5FF'
+ id: MiniTileSteelCornerNw
+ decals:
+ 13: -1,3
+ - node:
+ color: '#1861D5FF'
+ id: MiniTileSteelCornerSe
+ decals:
+ 5: 1,-3
+ - node:
+ color: '#1861D5FF'
+ id: MiniTileSteelCornerSw
+ decals:
+ 6: -1,1
+ 7: 0,-3
+ - node:
+ color: '#1861D5FF'
+ id: MiniTileSteelInnerNe
+ decals:
+ 15: 0,1
+ - node:
+ color: '#1861D5FF'
+ id: MiniTileSteelInnerSw
+ decals:
+ 11: 0,1
+ - node:
+ color: '#1861D5FF'
+ id: MiniTileSteelLineE
+ decals:
+ 1: 0,2
+ 2: 1,0
+ 3: 1,-1
+ 4: 1,-2
+ - node:
+ color: '#1861D5FF'
+ id: MiniTileSteelLineW
+ decals:
+ 8: 0,-2
+ 9: 0,-1
+ 10: 0,0
+ 12: -1,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 17: 1,-4
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 16: 1,-4
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 4403
+ 1: 17408
+ 0,-1:
+ 0: 13106
+ -1,0:
+ 0: 34944
+ 0,1:
+ 1: 4
+ -1,-1:
+ 1: 17476
+ -1,1:
+ 1: 4
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: AirCanister
+ entities:
+ - uid: 87
+ components:
+ - type: Transform
+ anchored: True
+ pos: 1.5,1.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 75
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+- proto: BoxMailCapsulePrimed
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ parent: 72
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 105
+ components:
+ - type: Transform
+ parent: 72
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BoxPaperOffice
+ entities:
+ - uid: 89
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CableApcExtension
+ entities:
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+- proto: ChairOfficeLight
+ entities:
+ - uid: 58
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,2.5
+ parent: 1
+- proto: ClosetWall
+ entities:
+ - uid: 72
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14923
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 37
+ - 105
+ - uid: 99
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14923
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 91
+ - 89
+ - 93
+ - 92
+ - 5
+- proto: ClothingBackpackMessengerMailCarrier
+ entities:
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 1.3910502,-1.4036231
+ parent: 1
+- proto: ComputerTabletopShuttle
+ entities:
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 1
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 1
+- proto: ComputerWallmountWithdrawBankATM
+ entities:
+ - uid: 68
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 1
+ - type: Physics
+ canCollide: False
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ ents: []
+ bank-ATM-cashSlot: !type:ContainerSlot {}
+ - type: ItemSlots
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 25
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 65
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 1
+- proto: FaxMachineShip
+ entities:
+ - uid: 49
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+- proto: GasPassiveVent
+ entities:
+ - uid: 102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPort
+ entities:
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentPump
+ entities:
+ - uid: 71
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 60
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 26
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+- proto: GrilleDiagonal
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+- proto: PlasticFlapsAirtightClear
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 1
+- proto: PortableGeneratorPacmanShuttle
+ entities:
+ - uid: 61
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - type: FuelGenerator
+ on: False
+ - type: Physics
+ bodyType: Static
+- proto: PowerCellRecharger
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,1.5
+ parent: 1
+- proto: ReinforcedWindow
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 86
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+- proto: ReinforcedWindowDiagonal
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+- proto: ServiceTechFab
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+- proto: SheetGlass
+ entities:
+ - uid: 93
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: SheetPlasma1
+ entities:
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -0.5155004,1.5259578
+ parent: 1
+ - type: Stack
+ count: 15
+- proto: SheetPlastic
+ entities:
+ - uid: 92
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: SheetSteel
+ entities:
+ - uid: 91
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 88
+- proto: SignalButtonDirectional
+ entities:
+ - uid: 88
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 41:
+ - Pressed: DoorBolt
+ 79:
+ - Pressed: Toggle
+- proto: SignMail
+ entities:
+ - uid: 84
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 1
+- proto: SmallGyroscope
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ - type: Thruster
+ originalPowerLoad: 200
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 1
+- proto: SubstationWallBasic
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+- proto: SuitStorageWallmountMailCarrier
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 1
+ - type: Physics
+ canCollide: False
+- proto: Table
+ entities:
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-0.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 1
+- proto: Thruster
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-3.5
+ parent: 1
+ - type: Thruster
+ originalPowerLoad: 1500
+ - uid: 4
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - type: Thruster
+ originalPowerLoad: 1500
+ - uid: 13
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - type: Thruster
+ originalPowerLoad: 1500
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1
+ - type: Thruster
+ originalPowerLoad: 1500
+- proto: WallReinforced
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
+ parent: 1
+ - uid: 7
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-2.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+- proto: WallReinforcedDiagonal
+ entities:
+ - uid: 18
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 1
+- proto: WarpPointShip
+ entities:
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+- proto: WeaponMailLake
+ entities:
+ - uid: 66
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.669134,-0.77862304
+ parent: 1
+- proto: WindoorSecureMailLocked
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 88
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+- proto: Wrench
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+...
diff --git a/Resources/Maps/_NF/Shuttles/spectre.yml b/Resources/Maps/_NF/Shuttles/spectre.yml
index 56a0c80fe3a..76364c0eaac 100644
--- a/Resources/Maps/_NF/Shuttles/spectre.yml
+++ b/Resources/Maps/_NF/Shuttles/spectre.yml
@@ -4,20 +4,22 @@ meta:
tilemap:
0: Space
18: FloorBlueCircuit
+ 20: FloorBrokenWood
30: FloorDark
31: FloorDarkDiagonal
39: FloorDarkPlastic
46: FloorGlass
+ 55: FloorGreenCircuit
65: FloorMetalDiamond
77: FloorRGlass
- 79: FloorReinforcedHardened
- 92: FloorSteelCheckerDark
- 106: FloorTechMaint2
- 109: FloorWhite
- 118: FloorWhitePlastic
- 120: FloorWoodTile
- 121: Lattice
- 122: Plating
+ 94: FloorSteelCheckerDark
+ 107: FloorTechMaint
+ 108: FloorTechMaint2
+ 111: FloorWhite
+ 121: FloorWood
+ 123: FloorWoodTile
+ 124: Lattice
+ 125: Plating
entities:
- proto: ""
entities:
@@ -32,43 +34,43 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: HwAAAAAAHwAAAAACHwAAAAACegAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADegAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAegAAAAAAegAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABegAAAAAAegAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAALgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAALgAAAAACAAAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAJwAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAABegAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAADegAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAALgAAAAADAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAHgAAAAABegAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAADXAAAAAABHgAAAAADegAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACXAAAAAAAHgAAAAACegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACXAAAAAADHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAACXAAAAAACHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAADfQAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAADbwAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAADfQAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAACbwAAAAABfQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAADfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACfQAAAAAAHgAAAAACHgAAAAABHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAANwAAAAAANwAAAAAAHgAAAAABHgAAAAACfQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAABfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAfQAAAAAAHgAAAAACHgAAAAABHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAABfQAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: egAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAADegAAAAAAegAAAAAAHwAAAAABHwAAAAADLgAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAALgAAAAACegAAAAAAbQAAAAACbQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAbQAAAAACegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAABegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEgAAAAAAEgAAAAAAegAAAAAALgAAAAADLgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEgAAAAAAEgAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAADegAAAAAAEgAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEgAAAAAAegAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAEgAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAABeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAABeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAACeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAD
+ tiles: fQAAAAAAfQAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAAAbwAAAAACfQAAAAAAbwAAAAADbwAAAAABbwAAAAACbwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAbwAAAAADbwAAAAAAbwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAADfQAAAAAAHgAAAAABHgAAAAABHgAAAAABAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAbwAAAAABfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAAAfQAAAAAAHgAAAAACHgAAAAADNwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAACfQAAAAAAHgAAAAACHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAEgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAEgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAANwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAC
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAHwAAAAADHwAAAAADegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAHwAAAAACHwAAAAADegAAAAAALgAAAAACAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAJwAAAAAAQQAAAAAAegAAAAAAHwAAAAADHwAAAAAAHwAAAAAAegAAAAAAeQAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAbQAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAJwAAAAACegAAAAAAegAAAAAAegAAAAAAQQAAAAAAJwAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAbQAAAAADbQAAAAACbQAAAAADegAAAAAAegAAAAAAHwAAAAADHwAAAAADHwAAAAADegAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAAAJwAAAAADegAAAAAAHwAAAAACHwAAAAAAHwAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAABegAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAHwAAAAAAHwAAAAADHwAAAAACegAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAABJwAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAAAJwAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAACfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAQQAAAAAAHgAAAAAAQQAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbwAAAAACbwAAAAAAbwAAAAADfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAfQAAAAAAfQAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAADbwAAAAABbwAAAAACfQAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfQAAAAAAbwAAAAABbwAAAAABbwAAAAABbwAAAAADfQAAAAAAbwAAAAABbwAAAAAAbwAAAAADbwAAAAABbwAAAAACHgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfQAAAAAAbwAAAAACbwAAAAAAbwAAAAACbwAAAAAAfQAAAAAAbwAAAAABbwAAAAACbwAAAAABbwAAAAACbwAAAAADHgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfQAAAAAAbwAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAABbwAAAAACbwAAAAAAbwAAAAADbwAAAAAAbwAAAAAAHgAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: eAAAAAACXAAAAAACHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAHgAAAAADegAAAAAAAAAAAAAAegAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABTQAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAATQAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HgAAAAACHgAAAAADHgAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAFAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACLgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAALgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADTQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABLgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAATwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHwAAAAABLgAAAAACegAAAAAAQQAAAAAAJwAAAAABQQAAAAAAegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAAAAAAAAALgAAAAABegAAAAAAHwAAAAADegAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAABegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAegAAAAAAHwAAAAAAHwAAAAADegAAAAAAegAAAAAAbQAAAAACbQAAAAABbQAAAAADegAAAAAAAAAAAAAAegAAAAAAQQAAAAAAJwAAAAACQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAADJwAAAAAAbQAAAAAAbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAADbQAAAAADegAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAACJwAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAJwAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAbwAAAAADbwAAAAADbwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAADfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAABbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABbwAAAAADHgAAAAAAHgAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADJwAAAAADHgAAAAAAbwAAAAADbwAAAAAAbwAAAAABbwAAAAADbwAAAAAAfQAAAAAAbwAAAAADbwAAAAACHgAAAAABHgAAAAACfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAJwAAAAAAHgAAAAAAbwAAAAACbwAAAAAAbwAAAAADbwAAAAADbwAAAAABfQAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAAAfQAAAAAAHwAAAAADHwAAAAADHwAAAAACJwAAAAABHgAAAAAAbwAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAADbwAAAAACbwAAAAADfQAAAAAAHwAAAAABHwAAAAABHwAAAAAD
version: 6
-1,1:
ind: -1,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAADeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -91,340 +93,940 @@ entities:
version: 2
nodes:
- node:
- color: '#DE3A3A96'
- id: 1
+ color: '#FFFFFFFF'
+ id: Bot
decals:
- 69: -13,-5
- - node:
- color: '#DE3A3AFF'
- id: 1
- decals:
- 70: -13,-5
- - node:
- color: '#DE3A3AFF'
- id: 2
- decals:
- 71: -7,-3
- - node:
- color: '#DE3A3AFF'
- id: 3
- decals:
- 72: 7,-3
- - node:
- color: '#DE3A3AFF'
- id: 4
- decals:
- 73: 13,-5
+ 43: -1,-7
+ 44: -1,-8
+ 45: 0,-8
+ 46: 0,-7
+ 47: 1,-7
+ 48: 1,-8
- node:
color: '#EFB34196'
id: BotLeft
decals:
- 16: -13,-8
- 17: -7,-6
- 18: 7,-6
- 19: 13,-8
- 77: -7,6
- 78: -7,5
- 79: -7,4
- 80: -7,3
- 81: 7,3
- 82: 7,4
- 83: 7,6
- 84: 5,6
- 85: 5,5
- 86: 5,4
- 87: 5,3
- 88: -5,4
- 89: -5,5
- 90: -5,6
+ 0: -7,6
+ 1: -7,5
+ 2: -7,4
+ 3: -7,3
+ 4: 7,3
+ 5: 7,4
+ 6: 7,6
+ 7: 5,6
+ 8: 5,5
+ 9: 5,4
+ 10: 5,3
+ 11: -5,4
+ 12: -5,5
+ 13: -5,6
- node:
color: '#EFB341FF'
id: BotLeft
decals:
- 180: 7,5
- 181: 5,5
- 182: 5,6
- 183: 5,4
- 184: 5,3
- 185: 7,3
- 186: 7,6
- 187: -5,6
- 188: -5,4
- 189: -5,3
- 190: -5,5
- 191: -7,5
- 192: -7,4
- 193: -7,3
- 194: -7,6
+ 28: 7,5
+ 29: 5,5
+ 30: 5,6
+ 31: 5,4
+ 32: 5,3
+ 33: 7,3
+ 34: 7,6
+ 35: -5,6
+ 36: -5,4
+ 37: -5,3
+ 38: -5,5
+ 39: -7,5
+ 40: -7,4
+ 41: -7,3
+ 42: -7,6
- node:
- color: '#52B4E9FF'
- id: BotLeftGreyscale
+ color: '#FFFFFFFF'
+ id: Box
decals:
- 74: -2,-5
+ 151: -2,16
- node:
- color: '#DE3A3A96'
- id: BotLeftGreyscale
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 513: 2,18
+ - node:
+ color: '#5E7C16FF'
+ id: BrickTileWhiteCornerNe
decals:
- 75: -1,-6
+ 472: 7,9
- node:
color: '#D381C9FF'
id: BrickTileWhiteCornerNe
decals:
- 103: -10,0
- 129: 8,1
- 141: 13,0
- 142: 14,-1
- 149: 2,7
- 150: 3,6
+ 14: 2,7
+ 15: 3,6
+ 85: -10,0
+ 97: 14,1
+ 139: 8,1
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 508: -2,18
- node:
color: '#D381C9FF'
id: BrickTileWhiteCornerNw
decals:
- 99: -14,-1
- 101: -13,0
- 116: -8,1
- 139: 10,0
- 151: -2,7
- 152: -3,6
+ 16: -2,7
+ 17: -3,6
+ 64: -14,1
+ 88: 10,0
+ 108: -8,1
+ - node:
+ color: '#5E7C16FF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 471: 7,8
- node:
color: '#D381C9FF'
id: BrickTileWhiteCornerSe
decals:
- 105: -10,-2
- 161: 3,2
+ 71: -10,-3
+ 113: 3,1
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 512: -2,17
- node:
color: '#D381C9FF'
id: BrickTileWhiteCornerSw
decals:
- 137: 10,-2
- 177: -3,2
+ 89: 10,-3
+ 112: -3,1
+ 150: 5,-4
- node:
color: '#D381C9FF'
id: BrickTileWhiteInnerNe
decals:
- 130: 7,1
- 131: 13,-1
- 179: 2,6
+ 27: 2,6
+ 138: 7,1
- node:
color: '#D381C9FF'
id: BrickTileWhiteInnerNw
decals:
- 100: -13,-1
- 117: -7,1
- 178: -2,6
+ 26: -2,6
+ 109: -7,1
- node:
color: '#D381C9FF'
id: BrickTileWhiteInnerSe
decals:
- 107: -12,-2
+ 73: -12,-3
- node:
color: '#D381C9FF'
id: BrickTileWhiteInnerSw
decals:
- 132: 12,-2
+ 101: 12,-3
+ 497: 6,-4
- node:
color: '#D381C9FF'
id: BrickTileWhiteLineE
decals:
- 104: -10,-1
- 108: -12,-3
- 109: -12,-4
- 110: -12,-5
- 111: -5,-3
- 112: -5,-2
- 113: -5,-1
- 114: -5,0
- 115: -5,1
- 126: 8,-3
- 127: 8,-2
- 128: 8,-1
- 143: 14,-2
- 144: 14,-3
- 145: 14,-4
- 146: 14,-5
- 148: 8,0
- 158: 3,3
- 159: 3,4
- 160: 3,5
- - node:
- color: '#334E6DC8'
- id: BrickTileWhiteLineN
- decals:
- 24: -2,18
- 25: -1,18
- 26: 0,18
- 27: 1,18
- 28: 2,18
+ 22: 3,3
+ 23: 3,4
+ 24: 3,5
+ 69: -12,-5
+ 70: -12,-4
+ 74: -10,-2
+ 94: 14,-5
+ 95: 14,-4
+ 96: 14,0
+ 105: -5,-2
+ 106: -5,-1
+ 107: -5,0
+ 110: -5,1
+ 137: 7,2
+ 140: 8,0
+ 141: 8,-2
+ 142: 8,-3
+ 143: 8,-4
- node:
- color: '#9FED5896'
+ color: '#334E6DFF'
id: BrickTileWhiteLineN
decals:
- 147: 12,0
+ 509: -1,18
+ 510: 1,18
- node:
color: '#D381C9FF'
id: BrickTileWhiteLineN
decals:
- 102: -11,0
- 140: 11,0
- 153: -1,7
- 154: 0,7
- 155: 1,7
+ 18: -1,7
+ 19: 1,7
+ 65: -13,1
+ 86: -11,0
+ 87: 11,0
+ 98: 13,1
- node:
color: '#D381C9FF'
id: BrickTileWhiteLineS
decals:
- 106: -11,-2
- 136: 11,-2
+ 72: -11,-3
+ 91: 11,-3
+ 114: -2,1
+ 115: 2,1
- node:
- color: '#EFB34196'
+ color: '#EFB341FF'
id: BrickTileWhiteLineS
decals:
- 91: 0,2
- 92: 1,2
- 93: 2,2
- 94: 3,2
- 162: -1,2
- 163: -2,2
+ 116: -1,1
+ 117: 1,1
- node:
color: '#D381C9FF'
id: BrickTileWhiteLineW
decals:
- 95: -14,-5
- 96: -14,-4
- 97: -14,-3
- 98: -14,-2
- 118: -8,0
- 119: -8,-2
- 120: -8,-3
- 121: -8,-1
- 122: 5,-3
- 123: 5,-2
- 124: 5,-1
- 125: 5,1
- 133: 12,-3
- 134: 12,-4
- 135: 12,-5
- 138: 10,-1
- 156: -3,5
- 157: -3,4
- 176: -3,3
+ 20: -3,5
+ 21: -3,4
+ 63: -14,0
+ 67: -14,-4
+ 68: -14,-5
+ 90: 10,-2
+ 92: 12,-4
+ 93: 12,-5
+ 102: -8,-2
+ 103: -8,0
+ 104: -8,-4
+ 111: -3,3
+ 136: -7,2
+ 144: 5,-3
+ 145: 5,-2
+ 146: 5,-1
+ 147: 5,0
+ 148: 5,1
+ 395: -8,-3
- node:
color: '#951710FF'
id: Delivery
decals:
- 164: -1,3
- 165: 0,3
- 166: 1,3
- 167: -2,3
- 168: -2,4
- 169: -2,5
- 170: -1,5
- 171: 1,5
- 172: 1,5
- 173: 2,5
- 174: 2,4
- 175: 2,3
+ 25: 2,5
+ 50: -2,3
+ 51: 2,3
+ 52: 0,3
+ 53: -2,5
+ 54: 0,5
+ 55: -1,5
+ 56: -2,4
+ 57: -1,3
+ 58: 2,4
+ 59: 1,5
+ 60: 2,3
+ 61: 1,3
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 434: 2,-1
+ 435: 3,-1
+ - node:
+ cleanable: True
+ angle: -3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 234: 1,14
+ - node:
+ cleanable: True
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 400: -7,-2
+ 442: 16,-2
+ 450: 4,2
+ 451: 0,0
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 169: 1,2
+ 251: 1,11
+ 262: -2,13
+ 263: 0,20
+ 279: 0,13
+ 396: -8,-3
+ 397: -8,-4
+ 436: -16,-1
+ 475: -6,-4
+ 514: -1,17
+ 515: -1,18
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 233: 1,13
+ 236: 0,16
+ 264: 0,20
+ 267: 0,15
+ 275: 1,15
+ 276: 0,12
+ 280: 0,13
+ 281: 0,14
+ 284: 6,9
+ 285: 7,9
+ 323: 1,10
+ 347: 0,6
+ 348: 0,-1
+ 394: -8,-2
+ 398: -8,-2
+ 399: -7,-2
+ 437: -16,-2
+ 438: -16,-3
+ 439: 16,-3
+ 440: 16,-2
+ 441: 16,-1
+ - node:
+ cleanable: True
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 168: 0,2
+ 248: 0,12
+ 249: 1,12
+ 265: 0,21
+ 266: 0,15
+ 277: 0,12
+ 278: 0,13
+ 283: 6,9
+ 293: 12,3
+ 294: 12,4
+ 295: 0,7
+ 313: 0,11
+ 321: 0,9
+ 322: 1,9
+ 324: 1,10
+ 325: 1,11
+ 349: 0,-1
+ 350: 1,-2
+ 351: 1,-1
+ - node:
+ cleanable: True
+ angle: 4.71238898038469 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 199: 12,-1
+ 250: 0,11
+ 268: 0,16
+ 269: -1,15
+ 270: -1,16
+ 286: 7,9
+ 287: 7,8
+ 314: 0,11
+ 318: 0,10
+ 326: 1,11
+ 370: -12,-2
+ 474: -6,-4
+ - node:
+ cleanable: True
+ angle: 6.283185307179586 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 282: 6,9
+ 288: 7,8
+ 289: 7,9
+ 290: 6,10
+ 296: 0,2
+ 297: -1,2
+ 298: 0,1
+ 299: 1,1
+ 315: 0,11
+ 319: 0,10
+ 320: 0,9
+ 327: 1,11
+ 338: 0,18
+ 367: -12,-1
+ 368: -11,-1
+ - node:
+ cleanable: True
+ angle: 7.853981633974483 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 316: 0,11
+ 317: 0,10
+ 328: 1,11
+ 329: 1,12
+ 330: 1,13
+ 369: -11,-2
+ 371: -13,-2
+ 403: -7,-4
+ 404: -6,-2
+ - node:
+ cleanable: True
+ angle: 9.42477796076938 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 331: 2,14
+ 332: -2,15
+ 333: -2,16
+ 405: -6,-2
+ - node:
+ cleanable: True
+ angle: 10.995574287564276 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 406: -6,-2
+ - node:
+ cleanable: True
+ angle: 12.566370614359172 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 407: -6,-2
+ 408: -6,-1
+ 409: -7,-2
+ 410: -7,-1
+ - node:
+ cleanable: True
+ angle: 14.137166941154069 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 411: -7,-1
+ 412: -6,0
+ 413: -6,1
+ 414: -7,1
+ 415: -5,1
+ 416: -6,2
+ 417: -5,2
+ 427: 6,2
+ 428: 6,3
+ 429: 2,2
+ 430: 3,2
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 170: 1,1
+ 171: 2,2
+ 172: 2,3
+ 274: 1,15
+ 516: -1,18
+ 517: -2,18
+ 518: -2,17
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 237: -1,16
+ 238: -1,15
+ 388: -10,-1
+ 389: -8,-1
+ 390: -7,0
+ 476: -5,-4
+ - node:
+ cleanable: True
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 352: 1,-3
+ 493: -5,-4
+ - node:
+ cleanable: True
+ angle: 4.71238898038469 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 473: -7,-3
+ 477: -5,-4
+ - node:
+ cleanable: True
+ angle: 14.137166941154069 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 431: 3,3
+ 432: 1,6
+ 433: 6,10
+ - node:
+ cleanable: True
+ angle: -3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 221: 7,1
+ - node:
+ cleanable: True
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 177: -1,3
+ 178: -3,4
+ 208: 13,-3
+ 209: 13,-4
+ 210: 12,-4
+ 216: 6,-2
+ 219: 6,0
+ 220: 6,1
+ 452: 0,0
+ 453: 4,2
+ 456: -14,-4
+ 457: -14,-5
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 173: -3,2
+ 174: -3,3
+ 175: -2,3
+ 176: -2,4
+ 186: -14,-2
+ 187: -13,-3
+ 189: -13,0
+ 193: -11,-1
+ 194: -14,-1
+ 195: -12,1
+ 203: 12,1
+ 204: 14,0
+ 205: 14,-2
+ 206: 13,-2
+ 211: 10,-2
+ 215: 6,-3
+ 222: 5,1
+ 223: 6,-4
+ 224: 6,2
+ 225: 7,2
+ 226: 5,2
+ 227: 6,3
+ 228: 5,4
+ 229: 5,4
+ 230: 6,5
+ 231: 6,4
+ 232: 7,4
+ 239: 1,15
+ 255: 0,10
+ 256: 0,9
+ 257: 1,9
+ 258: 1,10
+ 259: -2,10
+ 260: -2,12
+ 261: -2,13
+ 519: -1,17
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 192: -12,-1
+ 202: 12,0
+ 207: 14,-1
+ 212: 10,-1
+ 213: 7,-2
+ 214: 7,-3
+ 391: -8,0
+ 392: -7,0
+ 393: -8,-1
+ - node:
+ cleanable: True
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 182: -6,-1
+ 190: -12,-2
+ 201: 13,0
+ 240: 1,16
+ 247: 2,14
+ 310: 1,6
+ 311: 1,7
+ 312: -1,7
+ - node:
+ cleanable: True
+ angle: 4.71238898038469 rad
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 183: -8,-2
+ 241: 0,17
+ 478: -5,-4
+ 479: -6,-4
+ - node:
+ cleanable: True
+ angle: 6.283185307179586 rad
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 184: -7,-1
+ 243: -2,15
+ 244: 1,17
+ 245: 0,18
+ 246: 2,17
+ 356: 1,-5
+ 357: 2,-5
+ 358: 0,-5
+ - node:
+ cleanable: True
+ angle: 7.853981633974483 rad
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 185: -7,0
+ - node:
+ cleanable: True
+ angle: -3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 217: 6,-1
+ 235: 0,15
+ - node:
+ cleanable: True
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 218: 7,0
+ 443: 16,-1
+ 444: 15,-1
+ 445: 15,-2
+ 446: 15,-3
+ 447: 17,-1
+ 448: 17,-2
+ 449: 17,-3
+ 454: -4,2
+ 455: -9,-1
+ 458: -13,-5
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 181: -6,-2
+ 188: -13,-2
+ 196: 12,-2
+ 252: 0,13
+ 253: 0,14
+ 254: -1,15
+ 272: 0,17
+ 273: 1,16
+ 459: -12,-5
+ 460: -8,0
+ 461: -6,4
+ 462: -4,2
+ 463: -9,-1
+ 464: 0,8
+ 465: 0,19
+ 466: 0,22
+ 467: 12,2
+ 520: -1,18
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 166: -1,1
+ 179: -7,-4
+ 305: -3,5
+ 306: -2,6
+ 307: 3,4
+ 381: -12,-3
+ 382: -13,-3
+ 383: -13,-4
+ 384: -12,-4
+ 385: -11,-3
+ 386: -10,-3
+ 387: -10,-2
+ - node:
+ cleanable: True
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 163: -1,2
+ 180: -7,-3
+ 191: -13,-1
+ 197: 11,-2
+ 200: 13,-1
+ 308: 3,5
+ 309: 2,6
+ 353: 2,-3
+ 354: 1,-4
+ - node:
+ cleanable: True
+ angle: 4.71238898038469 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 164: 0,2
+ 165: -2,2
+ 167: 0,1
+ 198: 11,-1
+ 304: -3,4
+ 521: -1,17
+ - node:
+ cleanable: True
+ angle: 6.283185307179586 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 291: 6,11
+ 292: 6,12
+ 300: 1,2
+ 301: -1,1
+ 302: -2,2
+ 303: -3,3
+ 355: 2,-4
+ 359: 0,-6
+ 360: 2,-3
+ 361: 1,-5
+ 362: 2,-5
+ 363: -6,-1
+ 364: -6,0
+ 365: -12,0
+ 366: -12,-1
+ 401: -7,-3
+ - node:
+ cleanable: True
+ angle: 7.853981633974483 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 372: -13,-1
+ 373: -14,-1
+ 374: -14,0
+ 375: -13,0
+ 376: -10,-1
+ 377: -10,-2
+ 378: -11,0
+ 379: -12,0
+ 380: -12,1
+ 402: -7,-4
+ - node:
+ cleanable: True
+ angle: 14.137166941154069 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 418: -7,2
+ 419: -6,3
+ 420: -5,3
+ 421: -6,4
+ 422: -5,4
+ 423: -6,5
+ 424: -7,4
+ 425: 6,4
+ 426: 5,2
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 49: 1,-6
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnBox
+ decals:
+ 155: 6,12
- node:
color: '#D381C996'
- id: HalfTileOverlayGreyscale180
+ id: WarnLineGreyscaleE
+ decals:
+ 79: -10,-1
+ 80: 8,-1
+ 82: 14,-1
+ 83: 14,-2
+ 84: 14,-3
+ 132: -5,2
+ 133: 3,2
+ - node:
+ color: '#334E6DC8'
+ id: WarnLineGreyscaleN
decals:
- 29: 4,2
- 76: -4,2
+ 126: 0,21
+ 127: 0,18
- node:
color: '#52B4E996'
- id: MiniTileWhiteLineN
+ id: WarnLineGreyscaleN
decals:
- 32: -12,0
+ 66: -12,1
- node:
color: '#5E7C16FF'
- id: MiniTileWhiteLineN
+ id: WarnLineGreyscaleN
decals:
- 195: 6,6
+ 470: 6,6
+ - node:
+ color: '#9FED5896'
+ id: WarnLineGreyscaleN
+ decals:
+ 99: 12,1
- node:
color: '#D381C996'
- id: MiniTileWhiteLineN
+ id: WarnLineGreyscaleN
decals:
- 31: -6,6
+ 131: 0,7
+ 149: -6,6
- node:
- color: '#334E6DC8'
- id: ThreeQuarterTileOverlayGreyscale
+ color: '#EFB34196'
+ id: WarnLineGreyscaleN
decals:
- 20: -1,22
+ 119: 0,-1
- node:
color: '#334E6DC8'
- id: ThreeQuarterTileOverlayGreyscale180
+ id: WarnLineGreyscaleS
decals:
- 22: 1,20
+ 128: 0,20
- node:
- color: '#334E6DC8'
- id: ThreeQuarterTileOverlayGreyscale270
+ color: '#52B4E996'
+ id: WarnLineGreyscaleS
decals:
- 23: -1,20
+ 501: -12,3
- node:
- color: '#334E6DC8'
- id: ThreeQuarterTileOverlayGreyscale90
+ color: '#5E7C16FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 469: 6,8
+ - node:
+ color: '#9FED5896'
+ id: WarnLineGreyscaleS
decals:
- 21: 1,22
+ 100: 12,3
+ 129: -2,15
+ - node:
+ color: '#D381C996'
+ id: WarnLineGreyscaleS
+ decals:
+ 130: 0,9
+ 158: -13,-5
+ 159: -7,-4
+ 160: 7,-4
+ 161: 13,-5
- node:
color: '#EFB34196'
- id: WarnFull
+ id: WarnLineGreyscaleS
+ decals:
+ 118: 0,1
+ - node:
+ color: '#D381C996'
+ id: WarnLineGreyscaleW
decals:
- 0: -7,-7
- 1: -8,-6
- 2: -7,-5
- 3: -6,-6
- 4: 7,-7
- 5: 6,-6
- 6: 7,-5
- 7: 8,-6
- 8: 13,-9
- 9: 12,-8
- 10: 13,-7
- 11: 14,-8
- 12: -13,-7
- 13: -12,-8
- 14: -13,-9
- 15: -14,-8
+ 75: -14,-1
+ 76: -14,-2
+ 77: -14,-3
+ 78: -8,-1
+ 81: 10,-1
+ 134: -3,2
+ 135: 5,2
- node:
- color: '#DE3A3A96'
+ color: '#FFFFFFFF'
id: WarnLineN
decals:
- 33: 14,-5
- 34: 13,-5
- 35: 12,-5
- 36: 8,-3
- 37: 7,-3
- 38: 6,-3
- 39: -6,-3
- 40: -7,-3
- 41: -7,-3
- 42: -8,-3
- 43: -6,-3
- 44: -8,-3
- 45: -12,-5
- 46: -12,-5
- 47: -13,-5
- 48: -13,-5
- 49: -14,-5
- 50: -14,-5
- 51: 14,-5
- 52: 14,-5
- 53: 13,-5
- 54: 13,-5
- 55: 12,-5
- 56: 12,-5
- 57: 8,-3
- 58: 7,-3
- 59: 6,-3
- 60: 6,-3
- 61: 7,-3
- 62: 8,-3
- 63: -6,-3
- 64: -7,-3
- 65: -8,-3
- 66: -12,-5
- 67: -13,-5
- 68: -14,-5
+ 62: -12,4
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: beepsky
+ decals:
+ 468: 6,9
+ - node:
+ cleanable: True
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: body
+ decals:
+ 506: 0.818092,15.075505
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: end
+ decals:
+ 157: 1,-8
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: engie
+ decals:
+ 156: 0,-2
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: guy
+ decals:
+ 162: 2,-5
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#1D1D2172'
+ id: splatter
+ decals:
+ 537: -5.9109426,-2.457674
+ 538: -6.4578176,-3.285799
+ - node:
+ cleanable: True
+ angle: 3.141592653589793 rad
+ color: '#1D1D2172'
+ id: splatter
+ decals:
+ 539: -4.6765676,-2.645174
+ 540: -6.1140676,-4.129549
+ - node:
+ cleanable: True
+ angle: 3.141592653589793 rad
+ color: '#1D1D2172'
+ id: splatter
+ decals:
+ 487: -5.236245,-3.889092
+ - node:
+ cleanable: True
+ angle: 4.71238898038469 rad
+ color: '#1D1D2172'
+ id: splatter
+ decals:
+ 480: -5.579995,-4.123467
+ 481: -5.81437,-3.873467
+ 503: -6.5091863,-4.169741
+ - node:
+ cleanable: True
+ color: '#1D421D72'
+ id: splatter
+ decals:
+ 522: 0.62113595,10.2771635
+ 523: -0.31636405,15.202867
+ 524: 0.16801095,11.280992
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#421D1D72'
+ id: splatter
+ decals:
+ 534: -5.9421926,-3.285799
+ 535: -5.4734426,-2.567049
+ 536: -4.7390676,-2.848299
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#601D1D72'
+ id: splatter
+ decals:
+ 531: -5.1140676,-2.817049
+ 532: -5.4578176,-3.254549
+ 533: -6.0359426,-2.879549
+ - node:
+ cleanable: True
+ color: '#811D1D72'
+ id: splatter
+ decals:
+ 529: -4.7859426,-3.160799
+ 530: -5.6453176,-2.942049
- type: GridAtmosphere
version: 2
data:
@@ -446,66 +1048,82 @@ entities:
1,1:
0: 65535
1,2:
- 0: 61167
+ 1: 1
+ 0: 61166
1,3:
- 0: 44778
- 1: 4
+ 0: 43758
+ 1: 1024
2,0:
- 0: 49151
+ 0: 39935
+ 1: 9216
2,1:
- 0: 39867
+ 0: 39321
+ 1: 546
2,2:
- 0: 2457
+ 0: 2203
+ 1: 256
3,0:
- 0: 32767
+ 0: 14335
+ 1: 18432
3,1:
0: 9011
3,2:
- 0: 818
+ 0: 50
+ 1: 768
-4,0:
- 0: 52991
+ 0: 36079
+ 1: 16912
-4,1:
0: 34952
-3,0:
- 0: 49151
+ 0: 15359
+ 1: 33792
-3,1:
- 0: 11195
+ 0: 9011
+ 1: 2184
-3,2:
- 0: 818
+ 0: 562
+ 1: 256
-2,0:
0: 65535
-2,1:
0: 65535
-2,2:
- 0: 61439
+ 0: 61183
+ 1: 256
-2,3:
0: 44782
-1,1:
0: 65535
-1,2:
- 0: 61167
+ 1: 1
+ 0: 61166
-1,3:
0: 61166
0,-3:
- 0: 30464
+ 1: 1792
+ 0: 28672
0,-2:
- 0: 65399
+ 0: 63351
+ 1: 2048
1,-1:
0: 65535
1,-3:
- 0: 8928
+ 0: 8736
+ 1: 192
1,-2:
0: 65262
2,-3:
- 0: 43704
+ 1: 16
+ 0: 43688
2,-2:
0: 48059
2,-1:
- 0: 65531
+ 0: 65535
2,-4:
0: 32768
3,-4:
- 0: 61440
+ 1: 61440
3,-3:
0: 65416
3,-2:
@@ -515,31 +1133,37 @@ entities:
0,4:
0: 65535
0,5:
- 0: 65535
+ 0: 65527
+ 1: 8
0,6:
0: 30719
0,7:
- 0: 30583
+ 0: 30519
+ 1: 64
1,4:
- 0: 238
+ 0: 46
+ 1: 192
-4,-4:
- 0: 57344
+ 1: 57344
-4,-3:
0: 60962
-4,-2:
- 0: 65518
+ 1: 256
+ 0: 65262
-4,-1:
0: 65535
-3,-4:
- 0: 12288
+ 1: 4096
+ 0: 8192
-3,-3:
0: 48034
-3,-2:
0: 48059
-3,-1:
- 0: 65531
+ 0: 65535
-2,-3:
- 0: 35056
+ 1: 112
+ 0: 34944
-2,-2:
0: 65535
-2,-1:
@@ -547,19 +1171,24 @@ entities:
-1,-1:
0: 65535
-1,-2:
- 0: 65228
+ 0: 64716
+ 1: 512
-1,-3:
- 0: 52224
+ 1: 3072
+ 0: 49152
-2,4:
- 0: 238
+ 0: 142
+ 1: 96
-1,4:
0: 61166
-1,5:
- 0: 61166
+ 1: 2
+ 0: 61164
-1,6:
0: 52462
-1,7:
- 0: 52428
+ 0: 52364
+ 1: 64
-1,8:
0: 52428
-1,9:
@@ -573,17 +1202,20 @@ entities:
0,10:
0: 1092
-4,2:
- 0: 2184
+ 0: 136
+ 1: 2048
-5,-2:
- 0: 32768
+ 1: 32768
-5,-1:
0: 34952
4,-2:
- 0: 12544
+ 1: 8448
+ 0: 4096
4,-1:
0: 13107
4,0:
- 0: 19
+ 0: 3
+ 1: 16
-5,0:
0: 8
uniqueMixes:
@@ -605,8 +1237,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 21.6852
- - 81.57766
+ - 0
+ - 0
- 0
- 0
- 0
@@ -622,120 +1254,164 @@ entities:
- type: RadiationGridResistance
- type: BecomesStation
id: Spectre
+ - type: NavMap
- proto: AirAlarm
entities:
- - uid: 738
+ - uid: 17
components:
- type: Transform
- pos: -2.5,7.5
+ pos: 10.5,1.5
parent: 3
- type: DeviceList
devices:
- - 685
- - 633
- - 449
- - 1469
- - 1470
- - 500
+ - 908
+ - 907
+ - 909
+ - 1103
+ - 1101
+ - 969
+ - 967
+ - 978
- type: AtmosDevice
joinedGrid: 3
- - uid: 798
+ - uid: 54
components:
- type: Transform
- pos: -10.5,1.5
+ pos: 3.5,7.5
parent: 3
- type: DeviceList
devices:
- - 674
- - 764
+ - 1093
+ - 1092
+ - 1094
+ - 1095
+ - 992
+ - 964
+ - 682
- type: AtmosDevice
joinedGrid: 3
- - uid: 932
+ - uid: 905
components:
- type: Transform
- pos: 11.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,23.5
parent: 3
- type: DeviceList
devices:
- - 686
- - 701
+ - 1099
+ - 1098
+ - 1113
+ - 1112
+ - 534
+ - 1114
- type: AtmosDevice
joinedGrid: 3
- - uid: 933
+ - uid: 972
components:
- type: Transform
- pos: 2.5,1.5
+ pos: 1.5,0.5
+ parent: 3
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 989
+ components:
+ - type: Transform
+ pos: -9.5,1.5
parent: 3
- type: DeviceList
devices:
- - 449
- - 633
- - 685
- - type: DeviceLinkSource
- linkedPorts:
- 939:
- - AirWarning: Close
- - AirNormal: Open
+ - 912
+ - 911
+ - 910
+ - 1090
+ - 1091
+ - 962
+ - 966
+ - 977
- type: AtmosDevice
joinedGrid: 3
- - uid: 934
+ - uid: 990
components:
- type: Transform
- pos: 0.5,-3.5
+ pos: -7.5,3.5
parent: 3
- type: DeviceList
devices:
- - 635
- - 1473
+ - 1102
+ - 1090
+ - 970
+ - 965
+ - 975
+ - 1092
+ - 1096
- type: AtmosDevice
joinedGrid: 3
- - uid: 1055
+ - uid: 991
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,23.5
+ pos: 8.5,3.5
parent: 3
- type: DeviceList
devices:
- - 1063
- - 1057
- - 1472
- - 534
+ - 976
+ - 968
+ - 959
+ - 1101
+ - 1104
+ - 1094
+ - 1097
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 3
+ - type: DeviceList
+ devices:
+ - 1095
+ - 1098
+ - 535
+ - 963
+ - 1110
- type: AtmosDevice
joinedGrid: 3
-- proto: AirlockAtmospherics
+- proto: AirCanister
entities:
- - uid: 607
+ - uid: 473
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 2.5,-3.5
+ pos: 0.5,-7.5
parent: 3
-- proto: AirlockCommand
+ - type: AtmosDevice
+ joinedGrid: 3
+- proto: Airlock
entities:
- - uid: 2
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 3
+- proto: AirlockCommandGlass
+ entities:
+ - uid: 1008
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,19.5
parent: 3
- - uid: 244
+ - uid: 1009
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 0.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,22.5
parent: 3
- proto: AirlockEngineering
entities:
- - uid: 114
+ - uid: 142
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 0.5,1.5
+ pos: 0.5,0.5
parent: 3
- proto: AirlockExternalGlass
entities:
@@ -761,23 +1437,34 @@ entities:
- type: Transform
pos: 15.5,-0.5
parent: 3
-- proto: AirlockGlass
- entities:
- - uid: 1551
+ - uid: 541
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,4.5
+ pos: -14.5,-1.5
parent: 3
- - uid: 1552
+ - uid: 740
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-1.5
+ parent: 3
+- proto: AirlockGlass
+ entities:
+ - uid: 1019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,8.5
parent: 3
- proto: AirlockGlassShuttle
entities:
- uid: 47
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-0.5
+ parent: 3
+ - uid: 130
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -799,103 +1486,168 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 17.5,-0.5
+ pos: 17.5,-1.5
parent: 3
-- proto: AirlockMaintGlass
- entities:
- - uid: 595
+ - uid: 514
components:
- type: Transform
- pos: 12.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-1.5
parent: 3
- - uid: 598
+- proto: AirlockMedical
+ entities:
+ - uid: 736
components:
- type: Transform
- pos: -5.5,7.5
+ pos: -11.5,2.5
parent: 3
-- proto: AirlockMedicalGlass
+- proto: AirlockMercenaryGlass
entities:
- - uid: 592
+ - uid: 1007
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,7.5
parent: 3
-- proto: AirlockMercenary
+- proto: AirlockScience
entities:
- - uid: 422
+ - uid: 1018
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 6.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,7.5
parent: 3
-- proto: AirlockScience
+- proto: AirlockScienceGlass
entities:
- - uid: 330
+ - uid: 475
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-5.5
+ pos: -6.5,-4.5
parent: 3
- - uid: 342
+ - uid: 1010
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,-3.5
+ pos: -8.5,-0.5
parent: 3
- - uid: 359
+ - uid: 1011
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,2.5
parent: 3
- - uid: 360
+ - uid: 1012
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,2.5
parent: 3
- - uid: 361
+ - uid: 1013
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-0.5
parent: 3
- - uid: 368
+ - uid: 1014
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
+ rot: 3.141592653589793 rad
pos: 13.5,-5.5
parent: 3
- - uid: 939
+ - uid: 1015
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 0.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-4.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 933
+ - uid: 1017
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,-5.5
+ parent: 3
+- proto: AirSensor
+ entities:
+ - uid: 974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 3
+ - uid: 975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,0.5
+ parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 990
+ - uid: 976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,0.5
+ parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 991
+ - uid: 977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,0.5
+ parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 989
+ - uid: 978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,0.5
+ parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 17
+ - uid: 992
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 54
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 1045
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: -0.5,21.5
+ parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 905
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: -0.5,26.5
+ parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 905
- proto: AmeController
entities:
- - uid: 601
+ - uid: 202
components:
- type: Transform
- pos: -1.5,0.5
+ pos: 0.5,-3.5
parent: 3
- type: AmeController
injectionAmount: 4
@@ -905,102 +1657,96 @@ entities:
AmeFuel: !type:ContainerSlot
showEnts: False
occludes: True
- ent: 602
+ ent: 32
- proto: AmeJar
entities:
- - uid: 40
+ - uid: 32
components:
- type: Transform
- pos: 3.5392103,-1.3966094
- parent: 3
- - uid: 160
+ parent: 202
+ - type: Physics
+ canCollide: False
+ - uid: 1037
components:
- type: Transform
- pos: 3.3517103,-1.4122344
+ pos: 0.7160515,-2.5026875
parent: 3
- - uid: 602
+ - uid: 1207
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 601
- - type: Physics
- canCollide: False
+ pos: 0.30980158,-2.5026875
+ parent: 3
- proto: AmeShielding
entities:
- - uid: 27
+ - uid: 14
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-0.5
+ pos: -0.5,-0.5
parent: 3
- - uid: 28
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 3
+ - uid: 41
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -1.5,-1.5
parent: 3
- type: PointLight
radius: 2
enabled: True
- - uid: 30
+ - uid: 42
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-0.5
+ pos: -2.5,-2.5
parent: 3
- - uid: 31
+ - uid: 43
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-0.5
+ pos: -1.5,-2.5
parent: 3
- - uid: 33
+ - type: PointLight
+ radius: 2
+ enabled: True
+ - uid: 44
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-1.5
+ pos: -1.5,-0.5
parent: 3
- - uid: 34
+ - uid: 351
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.5,-0.5
+ pos: -0.5,-3.5
parent: 3
- - uid: 36
+ - uid: 362
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.5,-2.5
+ pos: -2.5,-0.5
parent: 3
- - uid: 38
+ - uid: 367
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-2.5
+ pos: -2.5,-3.5
parent: 3
- - uid: 39
+ - uid: 372
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.5,-1.5
+ pos: -1.5,-3.5
parent: 3
- - uid: 398
+ - uid: 377
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -0.5,-1.5
parent: 3
- - type: PointLight
- radius: 2
- enabled: True
- - uid: 605
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-2.5
- parent: 3
- - uid: 613
+ - uid: 378
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -1008,4586 +1754,4243 @@ entities:
parent: 3
- proto: AnomalyLocator
entities:
- - uid: 79
+ - uid: 156
components:
- type: Transform
- pos: 5.6005936,0.1949054
+ pos: 5.5,-0.5
parent: 3
- - uid: 268
+- proto: APCBasic
+ entities:
+ - uid: 2
components:
- type: Transform
- pos: -4.474732,0.1949054
+ pos: -2.5,7.5
parent: 3
-- proto: AnomalyScanner
- entities:
- - uid: 67
+ - uid: 48
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.4982333,-0.275599
+ rot: -1.5707963267948966 rad
+ pos: 3.5,14.5
parent: 3
- - uid: 322
+ - uid: 304
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5017667,-0.306849
+ pos: -7.5,2.5
parent: 3
-- proto: APCBasic
- entities:
- - uid: 98
+ - uid: 318
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,10.5
+ pos: 8.5,2.5
parent: 3
- - uid: 304
+ - uid: 429
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,-3.5
+ pos: 3.5,-4.5
parent: 3
- - type: Apc
- hasAccess: True
- lastExternalState: Good
- lastChargeState: Full
- - uid: 390
+ - uid: 746
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 11.5,-3.5
+ pos: -1.5,23.5
parent: 3
- - type: Apc
- hasAccess: True
- lastExternalState: Good
- lastChargeState: Full
- - uid: 415
+ - uid: 874
components:
- type: Transform
- pos: 1.5,-3.5
+ pos: -10.5,1.5
parent: 3
- - type: Apc
- hasAccess: True
- lastExternalState: Good
- lastChargeState: Full
- - uid: 493
+ - uid: 875
components:
- type: Transform
- pos: 1.5,1.5
+ pos: 11.5,1.5
parent: 3
- - type: Apc
- hasAccess: True
- lastExternalState: Good
- lastChargeState: Full
- - uid: 494
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 416
components:
- type: Transform
- pos: -7.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-0.5
parent: 3
- - type: Apc
- hasAccess: True
- lastExternalState: Good
- lastChargeState: Full
- - uid: 495
+ - uid: 419
components:
- type: Transform
- pos: 8.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-2.5
parent: 3
- - type: Apc
- hasAccess: True
- lastExternalState: Good
- lastChargeState: Full
- - uid: 1064
- components:
- - type: Transform
- pos: 1.5,23.5
- parent: 3
- - uid: 1179
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,8.5
- parent: 3
- - uid: 1213
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,8.5
- parent: 3
-- proto: AtmosDeviceFanTiny
- entities:
- - uid: 416
+ - uid: 420
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -16.5,-0.5
+ pos: 17.5,-2.5
parent: 3
- - uid: 419
+ - uid: 505
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -16.5,-2.5
+ pos: 17.5,-0.5
parent: 3
- - uid: 420
+ - uid: 741
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 17.5,-2.5
+ pos: 17.5,-1.5
parent: 3
- - uid: 505
+ - uid: 742
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 17.5,-0.5
+ pos: -16.5,-1.5
parent: 3
- - uid: 1258
+ - uid: 1105
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -12.5,-5.5
parent: 3
- - uid: 1259
+ - uid: 1106
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-3.5
+ pos: -6.5,-4.5
parent: 3
- - uid: 1260
+ - uid: 1108
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-3.5
+ pos: 7.5,-4.5
parent: 3
- - uid: 1261
+ - uid: 1109
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 13.5,-5.5
parent: 3
-- proto: Autolathe
+- proto: AtmosFixBlockerMarker
entities:
- - uid: 947
+ - uid: 60
components:
- type: Transform
- pos: 2.5,10.5
+ pos: 0.5,-9.5
parent: 3
-- proto: BenchSofaCorpLeft
- entities:
- - uid: 1543
+ - uid: 170
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,15.5
+ pos: 9.5,5.5
parent: 3
- - type: Physics
- bodyType: Static
-- proto: BenchSofaCorpMiddle
- entities:
- - uid: 1542
+ - uid: 513
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,16.5
+ pos: 9.5,6.5
parent: 3
- - type: Physics
- bodyType: Static
-- proto: BenchSofaCorpRight
- entities:
- - uid: 1541
+ - uid: 1107
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,17.5
+ pos: -6.5,17.5
parent: 3
- - type: Physics
- bodyType: Static
-- proto: BlastDoor
- entities:
- - uid: 42
+ - uid: 1115
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-7.5
+ pos: -8.5,6.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 373
- - uid: 388
+ - uid: 1116
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-7.5
+ pos: -8.5,5.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 400
- - uid: 389
+ - uid: 1117
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-9.5
+ pos: -8.5,4.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 375
- - uid: 395
+ - uid: 1118
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-9.5
+ pos: -8.5,3.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 369
-- proto: BlastDoorOpen
- entities:
- - uid: 333
+ - uid: 1119
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-5.5
+ pos: -9.5,2.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 370
- - uid: 348
+ - uid: 1121
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-5.5
+ pos: -12.5,10.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 370
- - uid: 349
+ - uid: 1123
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-5.5
+ pos: -7.5,10.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 370
- - uid: 350
+ - uid: 1124
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-3.5
+ pos: -5.5,17.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 372
- - uid: 351
+ - uid: 1125
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-3.5
+ pos: 3.5,20.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 372
- - uid: 352
+ - uid: 1126
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-3.5
+ pos: -3.5,8.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 372
- - uid: 353
+ - uid: 1127
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-3.5
+ pos: -2.5,20.5
parent: 3
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 374
- - uid: 354
+ - uid: 1128
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-3.5
+ pos: -1.5,29.5
parent: 3
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 374
- - uid: 355
+ - uid: 1129
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-3.5
+ pos: 2.5,29.5
parent: 3
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 374
- - uid: 356
+ - uid: 1130
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-5.5
+ pos: 6.5,17.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 376
- - uid: 357
+ - uid: 1131
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-5.5
+ pos: 7.5,17.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 376
- - uid: 358
+ - uid: 1132
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-5.5
+ pos: 6.5,14.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 376
-- proto: BookshelfFilled
- entities:
- - uid: 1534
+ - uid: 1133
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -7.5,1.5
+ pos: 8.5,-10.5
parent: 3
- - uid: 1535
+ - uid: 1134
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 8.5,1.5
+ pos: 8.5,10.5
parent: 3
-- proto: BoozeDispenser
- entities:
- - uid: 1284
+ - uid: 1135
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,12.5
+ pos: 13.5,10.5
parent: 3
-- proto: CableApcExtension
- entities:
- - uid: 12
+ - uid: 1136
components:
- type: Transform
- pos: -4.5,16.5
+ pos: 14.5,3.5
parent: 3
- - uid: 13
+ - uid: 1137
components:
- type: Transform
- pos: -4.5,17.5
+ pos: 15.5,2.5
parent: 3
- - uid: 14
+ - uid: 1138
components:
- type: Transform
- pos: -4.5,16.5
+ pos: 16.5,1.5
parent: 3
- - uid: 22
+ - uid: 1139
components:
- type: Transform
- pos: 0.5,0.5
+ pos: 17.5,-4.5
parent: 3
- - uid: 43
+ - uid: 1140
components:
- type: Transform
- pos: -4.5,16.5
+ pos: 16.5,-5.5
parent: 3
- - uid: 61
+ - uid: 1141
components:
- type: Transform
- pos: 4.5,-3.5
+ pos: 15.5,-12.5
parent: 3
- - uid: 63
+ - uid: 1142
components:
- type: Transform
- pos: -5.5,17.5
+ pos: 14.5,-12.5
parent: 3
- - uid: 76
+ - uid: 1143
components:
- type: Transform
- pos: 3.5,20.5
+ pos: 13.5,-12.5
parent: 3
- - uid: 131
+ - uid: 1144
components:
- type: Transform
- pos: -0.5,0.5
+ pos: 12.5,-12.5
parent: 3
- - uid: 177
+ - uid: 1145
components:
- type: Transform
- pos: 4.5,-4.5
+ pos: 7.5,-10.5
parent: 3
- - uid: 210
+ - uid: 1146
components:
- type: Transform
- pos: 6.5,-3.5
+ pos: 6.5,-10.5
parent: 3
- - uid: 239
+ - uid: 1147
components:
- type: Transform
- pos: -4.5,14.5
+ pos: 3.5,-5.5
parent: 3
- - uid: 302
+ - uid: 1148
components:
- type: Transform
- pos: 2.5,-3.5
+ pos: 2.5,-9.5
parent: 3
- - uid: 323
+ - uid: 1151
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 1.5,-9.5
parent: 3
- - uid: 324
+ - uid: 1152
components:
- type: Transform
- pos: -0.5,1.5
+ pos: -1.5,-9.5
parent: 3
- - uid: 325
+ - uid: 1153
components:
- type: Transform
- pos: 14.5,-1.5
+ pos: -15.5,1.5
parent: 3
- - uid: 399
+ - uid: 1154
components:
- type: Transform
- pos: 1.5,1.5
+ pos: -2.5,-5.5
parent: 3
- - uid: 418
+ - uid: 1155
components:
- type: Transform
- pos: 1.5,2.5
+ pos: -5.5,-10.5
parent: 3
- - uid: 421
+ - uid: 1156
components:
- type: Transform
- pos: -10.5,-6.5
+ pos: -6.5,-10.5
parent: 3
- - uid: 429
+ - uid: 1157
components:
- type: Transform
- pos: -4.5,15.5
+ pos: -7.5,-10.5
parent: 3
- - uid: 440
+ - uid: 1158
components:
- type: Transform
- pos: -6.5,2.5
+ pos: -11.5,-12.5
parent: 3
- - uid: 444
+ - uid: 1159
components:
- type: Transform
- pos: 7.5,2.5
+ pos: -12.5,-12.5
parent: 3
- - uid: 452
+ - uid: 1160
components:
- type: Transform
- pos: -5.5,11.5
+ pos: -13.5,-12.5
parent: 3
- - uid: 453
+ - uid: 1161
components:
- type: Transform
- pos: 3.5,-3.5
+ pos: -14.5,-12.5
parent: 3
- - uid: 455
+ - uid: 1162
components:
- type: Transform
- pos: -10.5,-5.5
+ pos: -15.5,-5.5
parent: 3
- - uid: 458
+ - uid: 1163
components:
- type: Transform
- pos: 1.5,-3.5
+ pos: -16.5,-4.5
parent: 3
- - uid: 460
+ - uid: 1164
components:
- type: Transform
- pos: 5.5,-4.5
+ pos: -14.5,2.5
parent: 3
- - uid: 467
+ - uid: 1165
components:
- type: Transform
- pos: 5.5,-9.5
+ pos: -13.5,3.5
parent: 3
- - uid: 468
+ - uid: 1166
components:
- type: Transform
- pos: 5.5,-7.5
+ pos: -11.5,10.5
parent: 3
- - uid: 470
+ - uid: 1168
components:
- type: Transform
- pos: 5.5,-6.5
+ pos: 4.5,8.5
parent: 3
- - uid: 473
+ - uid: 1191
components:
- type: Transform
- pos: 5.5,-5.5
+ pos: 12.5,10.5
parent: 3
- - uid: 475
+ - uid: 1199
components:
- type: Transform
- pos: 1.5,20.5
+ pos: 9.5,4.5
parent: 3
- - uid: 487
+ - uid: 1200
components:
- type: Transform
- pos: -0.5,1.5
+ pos: 9.5,3.5
parent: 3
- - uid: 491
+ - uid: 1201
components:
- type: Transform
- pos: 1.5,1.5
+ pos: 10.5,2.5
parent: 3
- - uid: 496
+ - uid: 1208
components:
- type: Transform
- pos: 11.5,-5.5
+ pos: -0.5,-9.5
parent: 3
- - uid: 497
+- proto: Autolathe
+ entities:
+ - uid: 648
components:
- type: Transform
- pos: 11.5,-8.5
+ pos: -1.5,1.5
parent: 3
+- proto: BannerScience
+ entities:
- uid: 498
components:
- type: Transform
- pos: 11.5,-6.5
+ pos: 10.5,0.5
parent: 3
- - uid: 499
+ - uid: 550
components:
- type: Transform
- pos: -5.5,2.5
+ pos: 2.5,9.5
parent: 3
- - uid: 501
+ - uid: 647
components:
- type: Transform
- pos: -7.5,2.5
+ pos: -9.5,0.5
parent: 3
- - uid: 502
+- proto: Bed
+ entities:
+ - uid: 876
components:
- type: Transform
- pos: 11.5,-9.5
+ pos: -0.5,20.5
parent: 3
- - uid: 503
+ - uid: 1149
components:
- type: Transform
- pos: 11.5,-7.5
+ pos: -0.5,21.5
parent: 3
- - uid: 504
+- proto: BedsheetSpawner
+ entities:
+ - uid: 1249
components:
- type: Transform
- pos: 12.5,-9.5
+ pos: -0.5,20.5
parent: 3
- - uid: 506
+ - uid: 1250
components:
- type: Transform
- pos: 5.5,2.5
+ pos: -0.5,21.5
parent: 3
- - uid: 507
+- proto: BenchSofaCorpCorner
+ entities:
+ - uid: 529
components:
- type: Transform
- pos: 6.5,2.5
+ pos: 2.5,18.5
parent: 3
- - uid: 509
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - type: Fixtures
+ fixtures: {}
+- proto: BenchSofaCorpLeft
+ entities:
+ - uid: 484
components:
- type: Transform
- pos: 8.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,16.5
parent: 3
- - uid: 510
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorpMiddle
+ entities:
+ - uid: 637
components:
- type: Transform
- pos: 0.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,17.5
parent: 3
- - uid: 511
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorpRight
+ entities:
+ - uid: 549
components:
- type: Transform
- pos: 0.5,3.5
+ pos: 1.5,18.5
parent: 3
- - uid: 512
+ - type: Physics
+ bodyType: Static
+- proto: BlastDoor
+ entities:
+ - uid: 1026
components:
- type: Transform
- pos: 0.5,3.5
+ pos: 13.5,-9.5
parent: 3
- - uid: 514
+ - type: DeviceLinkSink
+ links:
+ - 762
+ - uid: 1027
components:
- type: Transform
- pos: 0.5,4.5
+ pos: 7.5,-7.5
parent: 3
- - uid: 515
+ - type: DeviceLinkSink
+ links:
+ - 766
+ - uid: 1028
components:
- type: Transform
- pos: 0.5,5.5
+ pos: -6.5,-7.5
parent: 3
- - uid: 516
+ - type: DeviceLinkSink
+ invokeCounter: 4
+ links:
+ - 767
+ - uid: 1029
components:
- type: Transform
- pos: 0.5,6.5
+ pos: -12.5,-9.5
parent: 3
- - uid: 517
+ - type: DeviceLinkSink
+ links:
+ - 765
+- proto: BlockGameArcade
+ entities:
+ - uid: 98
components:
- type: Transform
- pos: 0.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,15.5
parent: 3
- - uid: 520
+- proto: BoozeDispenser
+ entities:
+ - uid: 530
components:
- type: Transform
- pos: 0.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,9.5
parent: 3
- - uid: 521
+- proto: BorgCharger
+ entities:
+ - uid: 563
components:
- type: Transform
- pos: -0.5,10.5
+ pos: -7.5,1.5
parent: 3
- - uid: 522
+- proto: BoxInflatable
+ entities:
+ - uid: 993
components:
- type: Transform
- pos: -1.5,10.5
+ pos: 3.5,-1.5
parent: 3
- - uid: 523
+- proto: CableApcExtension
+ entities:
+ - uid: 49
components:
- type: Transform
- pos: -2.5,10.5
+ pos: -12.5,-1.5
parent: 3
- - uid: 525
+ - uid: 103
components:
- type: Transform
- pos: 0.5,11.5
+ pos: -12.5,6.5
parent: 3
- - uid: 526
+ - uid: 182
components:
- type: Transform
- pos: 0.5,12.5
+ pos: 8.5,-7.5
parent: 3
- - uid: 527
+ - uid: 193
components:
- type: Transform
- pos: 0.5,13.5
+ pos: 6.5,-7.5
parent: 3
- - uid: 528
+ - uid: 197
components:
- type: Transform
- pos: 0.5,14.5
+ pos: -6.5,-7.5
parent: 3
- - uid: 529
+ - uid: 226
components:
- type: Transform
- pos: 0.5,15.5
+ pos: -11.5,0.5
parent: 3
- - uid: 530
+ - uid: 349
components:
- type: Transform
- pos: 0.5,16.5
+ pos: -12.5,-0.5
parent: 3
- - uid: 531
+ - uid: 369
components:
- type: Transform
- pos: 0.5,17.5
+ pos: -2.5,7.5
parent: 3
- - uid: 533
+ - uid: 375
components:
- type: Transform
- pos: 0.5,19.5
+ pos: 2.5,2.5
parent: 3
- - uid: 545
+ - uid: 376
components:
- type: Transform
- pos: 5.5,-10.5
+ pos: 1.5,2.5
parent: 3
- - uid: 548
+ - uid: 381
components:
- type: Transform
- pos: -3.5,-4.5
+ pos: 0.5,2.5
parent: 3
- - uid: 566
+ - uid: 388
components:
- type: Transform
- pos: -6.5,-10.5
+ pos: -0.5,2.5
parent: 3
- - uid: 568
+ - uid: 389
components:
- type: Transform
- pos: -7.5,1.5
+ pos: -1.5,2.5
parent: 3
- - uid: 569
+ - uid: 392
components:
- type: Transform
- pos: -7.5,0.5
+ pos: -2.5,6.5
parent: 3
- - uid: 570
+ - uid: 395
components:
- type: Transform
- pos: -7.5,-0.5
+ pos: -2.5,5.5
parent: 3
- - uid: 571
+ - uid: 418
components:
- type: Transform
- pos: -8.5,-0.5
+ pos: 1.5,-7.5
parent: 3
- - uid: 573
+ - uid: 421
components:
- type: Transform
- pos: -10.5,-0.5
+ pos: -0.5,-7.5
parent: 3
- - uid: 574
+ - uid: 422
components:
- type: Transform
- pos: -10.5,-1.5
+ pos: 2.5,-4.5
parent: 3
- - uid: 575
+ - uid: 424
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: 3.5,-4.5
parent: 3
- - uid: 576
+ - uid: 425
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: 0.5,-4.5
parent: 3
- - uid: 577
+ - uid: 434
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: 0.5,-7.5
parent: 3
- - uid: 578
+ - uid: 435
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: 0.5,-6.5
parent: 3
- - uid: 580
+ - uid: 436
components:
- type: Transform
- pos: 11.5,-3.5
+ pos: 0.5,-5.5
parent: 3
- - uid: 581
+ - uid: 440
components:
- type: Transform
- pos: 12.5,-3.5
+ pos: 1.5,-4.5
parent: 3
- - uid: 582
+ - uid: 444
components:
- type: Transform
- pos: 11.5,-2.5
+ pos: 1.5,-3.5
parent: 3
- - uid: 583
+ - uid: 446
components:
- type: Transform
- pos: 11.5,-1.5
+ pos: 1.5,-2.5
parent: 3
- - uid: 585
+ - uid: 449
components:
- type: Transform
- pos: 2.5,20.5
+ pos: 1.5,-1.5
parent: 3
- - uid: 587
+ - uid: 477
components:
- type: Transform
- pos: 8.5,-0.5
+ pos: 13.5,9.5
parent: 3
- - uid: 588
+ - uid: 494
components:
- type: Transform
- pos: 8.5,0.5
+ pos: 2.5,6.5
parent: 3
- - uid: 589
+ - uid: 495
components:
- type: Transform
- pos: 8.5,1.5
+ pos: 0.5,25.5
parent: 3
- - uid: 590
+ - uid: 496
components:
- type: Transform
- pos: 8.5,2.5
+ pos: -12.5,7.5
parent: 3
- - uid: 612
+ - uid: 497
components:
- type: Transform
- pos: -10.5,-4.5
+ pos: 13.5,6.5
parent: 3
- - uid: 614
+ - uid: 520
components:
- type: Transform
- pos: -10.5,-7.5
+ pos: 6.5,14.5
parent: 3
- - uid: 700
+ - uid: 523
components:
- type: Transform
- pos: -10.5,-8.5
+ pos: -14.5,-1.5
parent: 3
- - uid: 718
+ - uid: 561
components:
- type: Transform
- pos: -10.5,-9.5
+ pos: 7.5,-6.5
parent: 3
- - uid: 719
+ - uid: 572
components:
- type: Transform
- pos: -11.5,-9.5
+ pos: 1.5,6.5
parent: 3
- - uid: 721
+ - uid: 574
components:
- type: Transform
- pos: 11.5,-4.5
+ pos: -1.5,6.5
parent: 3
- - uid: 725
+ - uid: 576
components:
- type: Transform
- pos: 5.5,-8.5
+ pos: -2.5,2.5
parent: 3
- - uid: 728
+ - uid: 581
components:
- type: Transform
- pos: 13.5,-1.5
+ pos: -2.5,4.5
parent: 3
- - uid: 731
+ - uid: 582
components:
- type: Transform
- pos: -14.5,-1.5
+ pos: -2.5,3.5
parent: 3
- - uid: 732
+ - uid: 591
components:
- type: Transform
- pos: -15.5,-1.5
+ pos: -7.5,-7.5
parent: 3
- - uid: 733
+ - uid: 592
components:
- type: Transform
- pos: 15.5,-1.5
+ pos: -5.5,-7.5
parent: 3
- - uid: 734
+ - uid: 593
components:
- type: Transform
- pos: 16.5,-1.5
+ pos: 7.5,-7.5
parent: 3
- - uid: 1086
+ - uid: 594
components:
- type: Transform
- pos: 0.5,19.5
+ pos: -6.5,-6.5
parent: 3
- - uid: 1104
+ - uid: 599
components:
- type: Transform
- pos: 2.5,20.5
+ pos: 0.5,6.5
parent: 3
- - uid: 1112
+ - uid: 616
components:
- type: Transform
- pos: 2.5,20.5
+ pos: -0.5,6.5
parent: 3
- - uid: 1113
+ - uid: 667
components:
- type: Transform
- pos: 2.5,21.5
+ pos: 6.5,13.5
parent: 3
- - uid: 1114
+ - uid: 668
components:
- type: Transform
- pos: 2.5,22.5
+ pos: -5.5,12.5
parent: 3
- - uid: 1115
+ - uid: 669
components:
- type: Transform
- pos: 2.5,22.5
+ pos: -5.5,13.5
parent: 3
- - uid: 1116
+ - uid: 670
components:
- type: Transform
- pos: 2.5,23.5
+ pos: -5.5,11.5
parent: 3
- - uid: 1117
+ - uid: 671
components:
- type: Transform
- pos: 1.5,23.5
+ pos: -5.5,14.5
parent: 3
- - uid: 1118
+ - uid: 672
components:
- type: Transform
- pos: 1.5,23.5
+ pos: -5.5,10.5
parent: 3
- - uid: 1119
+ - uid: 674
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: 6.5,12.5
parent: 3
- - uid: 1120
+ - uid: 675
components:
+ - type: MetaData
+ name: waste pump
- type: Transform
- pos: -10.5,-3.5
+ pos: 6.5,11.5
parent: 3
- - uid: 1121
+ - uid: 779
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: -1.5,23.5
parent: 3
- - uid: 1122
+ - uid: 780
components:
- type: Transform
- pos: -11.5,-3.5
+ pos: -0.5,23.5
parent: 3
- - uid: 1123
+ - uid: 781
components:
- type: Transform
- pos: -12.5,-3.5
+ pos: 0.5,23.5
parent: 3
- - uid: 1126
+ - uid: 782
components:
- type: Transform
- pos: -13.5,-1.5
+ pos: 0.5,24.5
parent: 3
- - uid: 1127
+ - uid: 783
components:
- type: Transform
- pos: -13.5,-1.5
+ pos: 0.5,22.5
parent: 3
- - uid: 1128
+ - uid: 784
components:
- type: Transform
- pos: -13.5,-0.5
+ pos: 0.5,21.5
parent: 3
- - uid: 1131
+ - uid: 802
components:
- type: Transform
- pos: -12.5,-4.5
+ pos: 3.5,14.5
parent: 3
- - uid: 1132
+ - uid: 803
components:
- type: Transform
- pos: -13.5,-0.5
+ pos: 2.5,14.5
parent: 3
- - uid: 1133
+ - uid: 804
components:
- type: Transform
- pos: -12.5,-0.5
+ pos: 1.5,14.5
parent: 3
- - uid: 1134
+ - uid: 805
components:
- type: Transform
- pos: -11.5,-0.5
+ pos: 0.5,14.5
parent: 3
- - uid: 1136
+ - uid: 806
components:
- type: Transform
- pos: -11.5,1.5
+ pos: 0.5,15.5
parent: 3
- - uid: 1137
+ - uid: 807
components:
- type: Transform
- pos: -12.5,-5.5
+ pos: 0.5,16.5
parent: 3
- - uid: 1139
+ - uid: 808
components:
- type: Transform
- pos: -12.5,-6.5
+ pos: 0.5,17.5
parent: 3
- - uid: 1141
+ - uid: 809
components:
- type: Transform
- pos: -4.5,8.5
+ pos: -0.5,17.5
parent: 3
- - uid: 1142
+ - uid: 810
components:
- type: Transform
- pos: -6.5,-5.5
+ pos: -0.5,21.5
parent: 3
- - uid: 1143
+ - uid: 811
components:
- type: Transform
- pos: -6.5,-5.5
+ pos: 1.5,21.5
parent: 3
- - uid: 1144
+ - uid: 812
components:
- type: Transform
- pos: -6.5,-4.5
+ pos: 0.5,13.5
parent: 3
- - uid: 1145
+ - uid: 813
components:
- type: Transform
- pos: -6.5,-3.5
+ pos: 0.5,12.5
parent: 3
- - uid: 1146
+ - uid: 814
components:
- type: Transform
- pos: -6.5,-2.5
+ pos: 0.5,11.5
parent: 3
- - uid: 1147
+ - uid: 815
components:
- type: Transform
- pos: -6.5,-1.5
+ pos: 0.5,10.5
parent: 3
- - uid: 1149
+ - uid: 816
components:
- type: Transform
- pos: -6.5,-0.5
+ pos: 0.5,9.5
parent: 3
- - uid: 1150
+ - uid: 817
components:
- type: Transform
- pos: -6.5,-0.5
+ pos: 1.5,17.5
parent: 3
- - uid: 1151
+ - uid: 837
components:
- type: Transform
- pos: -5.5,3.5
+ pos: -5.5,2.5
parent: 3
- - uid: 1152
+ - uid: 838
components:
- type: Transform
- pos: -5.5,4.5
+ pos: -6.5,2.5
parent: 3
- - uid: 1153
+ - uid: 839
components:
- type: Transform
- pos: -5.5,5.5
+ pos: -7.5,2.5
parent: 3
- - uid: 1155
+ - uid: 840
components:
- type: Transform
- pos: -5.5,7.5
+ pos: -5.5,3.5
parent: 3
- - uid: 1156
+ - uid: 841
components:
- type: Transform
- pos: -5.5,8.5
+ pos: -5.5,4.5
parent: 3
- - uid: 1157
+ - uid: 842
components:
- type: Transform
- pos: 6.5,3.5
+ pos: -5.5,5.5
parent: 3
- - uid: 1158
+ - uid: 843
components:
- type: Transform
- pos: 6.5,4.5
+ pos: -5.5,6.5
parent: 3
- - uid: 1159
+ - uid: 844
components:
- type: Transform
- pos: 6.5,5.5
+ pos: -5.5,7.5
parent: 3
- - uid: 1161
+ - uid: 845
components:
- type: Transform
- pos: 6.5,7.5
+ pos: -5.5,8.5
parent: 3
- - uid: 1162
+ - uid: 846
components:
- type: Transform
- pos: 6.5,8.5
+ pos: -5.5,9.5
parent: 3
- - uid: 1199
+ - uid: 847
components:
- type: Transform
- pos: 1.5,23.5
+ pos: -6.5,1.5
parent: 3
- - uid: 1200
+ - uid: 848
components:
- type: Transform
- pos: 0.5,23.5
+ pos: -6.5,0.5
parent: 3
- - uid: 1203
+ - uid: 849
components:
- type: Transform
- pos: 0.5,20.5
+ pos: -6.5,-0.5
parent: 3
- - uid: 1205
+ - uid: 850
components:
- type: Transform
- pos: 0.5,19.5
+ pos: -6.5,-1.5
parent: 3
- - uid: 1206
+ - uid: 851
components:
- type: Transform
- pos: 0.5,23.5
+ pos: -6.5,-2.5
parent: 3
- - uid: 1207
+ - uid: 852
components:
- type: Transform
- pos: 0.5,24.5
+ pos: -6.5,-3.5
parent: 3
- - uid: 1208
+ - uid: 853
components:
- type: Transform
- pos: 0.5,25.5
+ pos: -6.5,-4.5
parent: 3
- - uid: 1209
+ - uid: 854
components:
- type: Transform
- pos: 0.5,26.5
+ pos: -6.5,-5.5
parent: 3
- - uid: 1210
+ - uid: 855
components:
- type: Transform
- pos: -0.5,26.5
+ pos: 7.5,-5.5
parent: 3
- - uid: 1212
+ - uid: 856
components:
- type: Transform
- pos: 1.5,26.5
+ pos: 7.5,-4.5
parent: 3
- - uid: 1222
+ - uid: 857
components:
- type: Transform
- pos: 5.5,8.5
+ pos: 7.5,-3.5
parent: 3
- - uid: 1230
+ - uid: 858
components:
- type: Transform
- pos: 7.5,-0.5
+ pos: 7.5,-2.5
parent: 3
- - uid: 1231
+ - uid: 859
components:
- type: Transform
pos: 7.5,-1.5
parent: 3
- - uid: 1232
+ - uid: 860
components:
- type: Transform
- pos: 7.5,-3.5
+ pos: 7.5,-0.5
parent: 3
- - uid: 1233
+ - uid: 861
components:
- type: Transform
- pos: 7.5,-2.5
+ pos: 7.5,0.5
parent: 3
- - uid: 1234
+ - uid: 862
components:
- type: Transform
- pos: 7.5,-4.5
+ pos: 7.5,1.5
parent: 3
- - uid: 1235
+ - uid: 863
components:
- type: Transform
- pos: 7.5,-5.5
+ pos: 7.5,2.5
parent: 3
- - uid: 1236
+ - uid: 864
components:
- type: Transform
- pos: 13.5,-3.5
+ pos: 8.5,2.5
parent: 3
- - uid: 1237
+ - uid: 865
components:
- type: Transform
- pos: 13.5,-4.5
+ pos: 6.5,2.5
parent: 3
- - uid: 1238
+ - uid: 866
components:
- type: Transform
- pos: 13.5,-5.5
+ pos: 6.5,3.5
parent: 3
- - uid: 1239
+ - uid: 867
components:
- type: Transform
- pos: 13.5,-6.5
+ pos: 6.5,4.5
parent: 3
- - uid: 1240
+ - uid: 868
components:
- type: Transform
- pos: 13.5,-7.5
+ pos: 6.5,5.5
parent: 3
- - uid: 1262
+ - uid: 869
components:
- type: Transform
- pos: 12.5,-1.5
+ pos: 6.5,6.5
parent: 3
- - uid: 1303
+ - uid: 870
components:
- type: Transform
- pos: 1.5,-3.5
+ pos: 6.5,7.5
parent: 3
- - uid: 1304
+ - uid: 871
components:
- type: Transform
- pos: 1.5,-4.5
+ pos: 6.5,8.5
parent: 3
- - uid: 1305
+ - uid: 872
components:
- type: Transform
- pos: 1.5,-5.5
+ pos: 6.5,9.5
parent: 3
- - uid: 1306
+ - uid: 873
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: 6.5,10.5
parent: 3
- - uid: 1308
+ - uid: 877
components:
- type: Transform
- pos: 1.5,-6.5
+ pos: -10.5,-0.5
parent: 3
- - uid: 1310
+ - uid: 878
components:
- type: Transform
- pos: -11.5,1.5
+ pos: -11.5,-0.5
parent: 3
- - uid: 1311
+ - uid: 879
components:
- type: Transform
- pos: -11.5,2.5
+ pos: -12.5,-2.5
parent: 3
- - uid: 1314
+ - uid: 880
components:
- type: Transform
- pos: -11.5,5.5
+ pos: -12.5,-3.5
parent: 3
- - uid: 1315
+ - uid: 881
components:
- type: Transform
- pos: -5.5,9.5
+ pos: -12.5,-4.5
parent: 3
- - uid: 1316
+ - uid: 882
components:
- type: Transform
- pos: -5.5,10.5
+ pos: -12.5,-5.5
parent: 3
- - uid: 1319
+ - uid: 883
components:
- type: Transform
- pos: 6.5,8.5
+ pos: 13.5,-5.5
parent: 3
- - uid: 1320
+ - uid: 884
components:
- type: Transform
- pos: 6.5,9.5
+ pos: 13.5,-4.5
parent: 3
- - uid: 1321
+ - uid: 885
components:
- type: Transform
- pos: 6.5,10.5
+ pos: 13.5,-3.5
parent: 3
- - uid: 1322
+ - uid: 886
components:
- type: Transform
- pos: 6.5,10.5
+ pos: 13.5,-2.5
parent: 3
- - uid: 1323
+ - uid: 887
components:
- type: Transform
- pos: 6.5,11.5
+ pos: 13.5,-1.5
+ parent: 3
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 13.5,-0.5
parent: 3
- - uid: 1325
+ - uid: 889
components:
- type: Transform
pos: 12.5,-0.5
parent: 3
- - uid: 1326
+ - uid: 891
components:
- type: Transform
pos: 12.5,0.5
parent: 3
- - uid: 1327
+ - uid: 892
components:
- type: Transform
pos: 12.5,1.5
parent: 3
- - uid: 1328
+ - uid: 893
components:
- type: Transform
pos: 12.5,2.5
parent: 3
- - uid: 1329
+ - uid: 894
components:
- type: Transform
- pos: 12.5,2.5
+ pos: 12.5,3.5
parent: 3
- - uid: 1330
+ - uid: 896
components:
- type: Transform
- pos: 12.5,3.5
+ pos: 12.5,6.5
parent: 3
- - uid: 1331
+ - uid: 897
components:
- type: Transform
- pos: 12.5,4.5
+ pos: 12.5,5.5
parent: 3
- - uid: 1332
+ - uid: 898
components:
- type: Transform
pos: 12.5,4.5
parent: 3
- - uid: 1333
+ - uid: 899
components:
- type: Transform
- pos: 12.5,5.5
+ pos: -11.5,1.5
parent: 3
- - uid: 1343
+ - uid: 900
components:
- type: Transform
- pos: -4.5,17.5
+ pos: -11.5,2.5
parent: 3
- - uid: 1345
+ - uid: 901
components:
- type: Transform
- pos: -4.5,15.5
+ pos: -11.5,3.5
parent: 3
- - uid: 1346
+ - uid: 902
components:
- type: Transform
- pos: -4.5,14.5
+ pos: -11.5,4.5
parent: 3
- - uid: 1347
+ - uid: 903
components:
- type: Transform
- pos: -4.5,13.5
+ pos: -11.5,5.5
parent: 3
- - uid: 1348
+ - uid: 904
components:
- type: Transform
- pos: -4.5,12.5
+ pos: -11.5,6.5
parent: 3
- - uid: 1349
+ - uid: 961
components:
- type: Transform
- pos: -4.5,11.5
+ pos: -0.5,20.5
parent: 3
- - uid: 1355
+ - uid: 985
components:
- type: Transform
- pos: -10.5,8.5
+ pos: 1.5,20.5
parent: 3
- - uid: 1363
+ - uid: 1003
components:
- type: Transform
- pos: -10.5,2.5
+ pos: -12.5,8.5
parent: 3
- - uid: 1364
+ - uid: 1004
components:
- type: Transform
- pos: -10.5,3.5
+ pos: -12.5,9.5
parent: 3
- - uid: 1365
+ - uid: 1030
components:
- type: Transform
- pos: -10.5,4.5
+ pos: 13.5,7.5
parent: 3
- - uid: 1366
+ - uid: 1120
components:
- type: Transform
- pos: -10.5,5.5
+ pos: 13.5,8.5
parent: 3
- - uid: 1367
+ - uid: 1170
components:
- type: Transform
- pos: -10.5,5.5
+ pos: -13.5,-1.5
parent: 3
- - uid: 1368
+ - uid: 1179
components:
- type: Transform
- pos: -10.5,6.5
+ pos: -15.5,-1.5
parent: 3
- - uid: 1369
+ - uid: 1180
components:
- type: Transform
- pos: -10.5,7.5
+ pos: 16.5,-1.5
parent: 3
- - uid: 1370
+ - uid: 1181
components:
- type: Transform
- pos: -10.5,9.5
+ pos: 15.5,-1.5
parent: 3
- - uid: 1371
+ - uid: 1182
components:
- type: Transform
- pos: -10.5,10.5
+ pos: 14.5,-1.5
parent: 3
- - uid: 1372
+ - uid: 1224
components:
- type: Transform
- pos: -10.5,10.5
+ pos: -10.5,1.5
parent: 3
- - uid: 1374
+ - uid: 1241
components:
- type: Transform
- pos: -11.5,10.5
+ pos: 11.5,1.5
parent: 3
- - uid: 1375
+ - uid: 1242
components:
- type: Transform
- pos: -11.5,10.5
+ pos: -9.5,-0.5
parent: 3
- - uid: 1378
+ - uid: 1243
components:
- type: Transform
- pos: -5.5,-10.5
+ pos: 11.5,-0.5
parent: 3
- - uid: 1379
+ - uid: 1244
components:
- type: Transform
- pos: -4.5,-10.5
+ pos: 10.5,-0.5
parent: 3
- - uid: 1380
+- proto: CableHV
+ entities:
+ - uid: 50
components:
- type: Transform
- pos: -4.5,-9.5
+ pos: 3.5,-2.5
parent: 3
- - uid: 1381
+ - uid: 85
components:
- type: Transform
- pos: -4.5,-8.5
+ pos: 0.5,-3.5
parent: 3
- - uid: 1382
+ - uid: 203
components:
- type: Transform
- pos: 2.5,21.5
+ pos: 2.5,-3.5
parent: 3
- - uid: 1383
+ - uid: 337
components:
- type: Transform
- pos: -4.5,-7.5
+ pos: 1.5,-3.5
parent: 3
- - uid: 1384
+ - uid: 338
components:
- type: Transform
- pos: -4.5,-7.5
+ pos: 3.5,-3.5
parent: 3
- - uid: 1385
+ - uid: 1085
components:
- type: Transform
- pos: -4.5,-6.5
+ pos: 2.5,-2.5
parent: 3
- - uid: 1386
+- proto: CableMV
+ entities:
+ - uid: 12
components:
- type: Transform
- pos: -4.5,-6.5
+ pos: 3.5,-2.5
parent: 3
- - uid: 1387
+ - uid: 13
components:
- type: Transform
- pos: -4.5,-5.5
+ pos: 7.5,0.5
parent: 3
- - uid: 1388
+ - uid: 51
components:
- type: Transform
- pos: -4.5,-4.5
+ pos: 7.5,1.5
parent: 3
- - uid: 1389
+ - uid: 57
components:
- type: Transform
- pos: -4.5,-4.5
+ pos: 1.5,-3.5
parent: 3
- - uid: 1391
+ - uid: 71
components:
- type: Transform
- pos: -5.5,-3.5
+ pos: 2.5,-2.5
parent: 3
- - uid: 1392
+ - uid: 129
components:
- type: Transform
- pos: -3.5,-3.5
+ pos: 0.5,-0.5
parent: 3
- - uid: 1393
+ - uid: 178
components:
- type: Transform
- pos: -2.5,-3.5
+ pos: 1.5,-2.5
parent: 3
- - uid: 1394
+ - uid: 214
components:
- type: Transform
- pos: -2.5,-3.5
+ pos: 7.5,-0.5
parent: 3
- - uid: 1395
+ - uid: 216
components:
- type: Transform
- pos: -1.5,-3.5
+ pos: 0.5,-1.5
parent: 3
- - uid: 1396
+ - uid: 319
components:
- type: Transform
- pos: -0.5,-3.5
+ pos: 0.5,22.5
parent: 3
- - uid: 1397
+ - uid: 320
components:
- type: Transform
- pos: -0.5,-3.5
+ pos: 0.5,21.5
parent: 3
- - uid: 1398
+ - uid: 333
components:
- type: Transform
- pos: 0.5,-3.5
+ pos: -0.5,23.5
parent: 3
- - uid: 1399
+ - uid: 336
components:
- type: Transform
- pos: 1.5,-3.5
+ pos: 0.5,17.5
parent: 3
- - uid: 1400
+ - uid: 340
components:
- type: Transform
- pos: 2.5,-6.5
+ pos: 0.5,0.5
parent: 3
- - uid: 1401
+ - uid: 342
components:
- type: Transform
- pos: 2.5,-7.5
+ pos: 0.5,-2.5
parent: 3
- - uid: 1402
+ - uid: 343
components:
- type: Transform
- pos: 2.5,-7.5
+ pos: 0.5,19.5
parent: 3
- - uid: 1403
+ - uid: 345
components:
- type: Transform
- pos: 2.5,-8.5
+ pos: 0.5,15.5
parent: 3
- - uid: 1404
+ - uid: 346
components:
- type: Transform
- pos: 2.5,-8.5
+ pos: 0.5,18.5
parent: 3
- - uid: 1405
+ - uid: 348
components:
- type: Transform
- pos: 1.5,-8.5
+ pos: 0.5,16.5
parent: 3
- - uid: 1406
+ - uid: 394
components:
- type: Transform
- pos: 1.5,-9.5
+ pos: 1.5,-4.5
parent: 3
- - uid: 1407
+ - uid: 402
components:
- type: Transform
- pos: 0.5,-9.5
+ pos: -0.5,2.5
parent: 3
- - uid: 1408
+ - uid: 412
components:
- type: Transform
- pos: -0.5,-9.5
+ pos: -6.5,0.5
parent: 3
- - uid: 1410
+ - uid: 438
components:
- type: Transform
- pos: 6.5,-10.5
+ pos: 3.5,-4.5
parent: 3
- - uid: 1411
+ - uid: 439
components:
- type: Transform
- pos: 7.5,-10.5
+ pos: 2.5,-4.5
parent: 3
- - uid: 1423
+ - uid: 443
components:
- type: Transform
- pos: 9.5,2.5
+ pos: -6.5,-0.5
parent: 3
- - uid: 1424
+ - uid: 508
components:
- type: Transform
- pos: 10.5,2.5
+ pos: 0.5,23.5
parent: 3
- - uid: 1425
+ - uid: 509
components:
- type: Transform
- pos: 9.5,3.5
+ pos: 0.5,20.5
parent: 3
- - uid: 1426
+ - uid: 526
components:
- type: Transform
- pos: 9.5,4.5
+ pos: -6.5,1.5
parent: 3
- - uid: 1427
+ - uid: 634
components:
- type: Transform
- pos: 9.5,6.5
+ pos: 8.5,-0.5
parent: 3
- - uid: 1428
+ - uid: 652
components:
- type: Transform
- pos: 9.5,5.5
+ pos: -8.5,-0.5
parent: 3
- - uid: 1429
+ - uid: 761
components:
- type: Transform
- pos: 11.5,5.5
+ pos: -1.5,23.5
parent: 3
- - uid: 1430
+ - uid: 785
components:
- type: Transform
- pos: 11.5,6.5
+ pos: 0.5,1.5
parent: 3
- - uid: 1431
+ - uid: 786
components:
- type: Transform
- pos: 11.5,7.5
+ pos: 0.5,2.5
parent: 3
- - uid: 1432
+ - uid: 787
components:
- type: Transform
- pos: 11.5,8.5
+ pos: 0.5,3.5
parent: 3
- - uid: 1433
+ - uid: 788
components:
- type: Transform
- pos: 11.5,9.5
+ pos: 0.5,4.5
parent: 3
- - uid: 1434
+ - uid: 789
components:
- type: Transform
- pos: 11.5,10.5
+ pos: 0.5,5.5
parent: 3
- - uid: 1437
+ - uid: 790
components:
- type: Transform
- pos: 5.5,17.5
+ pos: 0.5,6.5
parent: 3
- - uid: 1438
+ - uid: 791
components:
- type: Transform
- pos: 5.5,16.5
+ pos: 0.5,7.5
parent: 3
- - uid: 1439
+ - uid: 792
components:
- type: Transform
- pos: 5.5,15.5
+ pos: 0.5,8.5
parent: 3
- - uid: 1440
+ - uid: 793
components:
- type: Transform
- pos: 5.5,14.5
+ pos: 0.5,9.5
parent: 3
- - uid: 1441
+ - uid: 794
components:
- type: Transform
- pos: 5.5,13.5
+ pos: 0.5,10.5
parent: 3
- - uid: 1442
+ - uid: 795
components:
- type: Transform
- pos: 5.5,12.5
+ pos: 0.5,11.5
parent: 3
- - uid: 1443
+ - uid: 796
components:
- type: Transform
- pos: 5.5,11.5
+ pos: 0.5,12.5
parent: 3
- - uid: 1446
+ - uid: 797
components:
- type: Transform
- pos: 2.5,20.5
+ pos: 0.5,13.5
parent: 3
- - uid: 1448
+ - uid: 798
components:
- type: Transform
- pos: -0.5,20.5
+ pos: 0.5,14.5
parent: 3
- - uid: 1449
+ - uid: 799
components:
- type: Transform
- pos: -1.5,20.5
+ pos: 1.5,14.5
parent: 3
- - uid: 1450
+ - uid: 800
components:
- type: Transform
- pos: -2.5,20.5
+ pos: 2.5,14.5
parent: 3
- - uid: 1452
+ - uid: 801
components:
- type: Transform
- pos: -4.5,17.5
+ pos: 3.5,14.5
parent: 3
- - uid: 1471
+ - uid: 818
components:
- type: Transform
- pos: -4.5,16.5
+ pos: -0.5,6.5
parent: 3
- - uid: 1474
+ - uid: 819
components:
- type: Transform
- pos: -8.5,3.5
+ pos: -1.5,6.5
parent: 3
- - uid: 1475
+ - uid: 820
components:
- type: Transform
- pos: -8.5,4.5
+ pos: -2.5,6.5
parent: 3
- - uid: 1476
+ - uid: 821
components:
- type: Transform
- pos: -8.5,5.5
+ pos: -2.5,7.5
parent: 3
- - uid: 1477
+ - uid: 822
components:
- type: Transform
- pos: -8.5,6.5
+ pos: -1.5,2.5
parent: 3
- - uid: 1478
+ - uid: 823
components:
- type: Transform
- pos: -8.5,2.5
+ pos: -2.5,2.5
parent: 3
- - uid: 1480
+ - uid: 824
components:
- type: Transform
- pos: -10.5,2.5
+ pos: -3.5,2.5
parent: 3
- - uid: 1481
+ - uid: 825
components:
- type: Transform
- pos: -10.5,3.5
+ pos: -4.5,2.5
parent: 3
- - uid: 1482
+ - uid: 826
components:
- type: Transform
- pos: -10.5,4.5
+ pos: -5.5,2.5
parent: 3
- - uid: 1483
+ - uid: 827
components:
- type: Transform
- pos: -9.5,2.5
+ pos: -6.5,2.5
parent: 3
- - uid: 1484
+ - uid: 828
components:
- type: Transform
- pos: -10.5,2.5
+ pos: -7.5,2.5
parent: 3
- - uid: 1485
+ - uid: 829
components:
- type: Transform
- pos: -8.5,2.5
+ pos: 1.5,2.5
parent: 3
- - uid: 1487
+ - uid: 830
components:
- type: Transform
- pos: -4.5,17.5
+ pos: 2.5,2.5
parent: 3
- - uid: 1489
+ - uid: 831
components:
- type: Transform
- pos: -1.5,20.5
+ pos: 3.5,2.5
parent: 3
- - uid: 1492
+ - uid: 832
components:
- type: Transform
- pos: 2.5,20.5
+ pos: 4.5,2.5
parent: 3
- - uid: 1493
+ - uid: 833
components:
- type: Transform
- pos: 6.5,17.5
+ pos: 5.5,2.5
parent: 3
- - uid: 1494
+ - uid: 834
components:
- type: Transform
- pos: 5.5,17.5
+ pos: 6.5,2.5
parent: 3
- - uid: 1495
+ - uid: 835
components:
- type: Transform
- pos: 12.5,10.5
+ pos: 7.5,2.5
parent: 3
- - uid: 1496
+ - uid: 836
components:
- type: Transform
- pos: 11.5,10.5
+ pos: 8.5,2.5
parent: 3
- - uid: 1553
+ - uid: 1122
components:
- type: Transform
- pos: -0.5,5.5
+ pos: -7.5,-0.5
parent: 3
- - uid: 1554
+ - uid: 1210
components:
- type: Transform
- pos: -1.5,5.5
+ pos: -9.5,-0.5
parent: 3
- - uid: 1555
+ - uid: 1223
components:
- type: Transform
- pos: 1.5,5.5
+ pos: -10.5,-0.5
parent: 3
- - uid: 1556
+ - uid: 1230
components:
- type: Transform
- pos: 2.5,5.5
+ pos: -10.5,1.5
parent: 3
-- proto: CableHV
- entities:
- - uid: 280
+ - uid: 1231
components:
- type: Transform
- pos: -0.5,0.5
+ pos: -11.5,1.5
parent: 3
- - uid: 476
+ - uid: 1232
components:
- type: Transform
- pos: 0.5,0.5
+ pos: -11.5,0.5
parent: 3
- - uid: 478
+ - uid: 1233
components:
- type: Transform
- pos: -1.5,0.5
+ pos: -11.5,-0.5
parent: 3
- - uid: 482
+ - uid: 1234
components:
- type: Transform
- pos: 2.5,-2.5
+ pos: 9.5,-0.5
parent: 3
- - uid: 489
+ - uid: 1235
components:
- type: Transform
- pos: 2.5,-1.5
+ pos: 10.5,-0.5
parent: 3
- - uid: 492
+ - uid: 1236
components:
- type: Transform
- pos: 3.5,-0.5
+ pos: 11.5,-0.5
parent: 3
- - uid: 554
+ - uid: 1237
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: 12.5,-0.5
parent: 3
- - uid: 723
+ - uid: 1238
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: 12.5,0.5
parent: 3
- - uid: 1061
+ - uid: 1239
components:
- type: Transform
- pos: 1.5,-0.5
+ pos: 12.5,1.5
parent: 3
- - uid: 1062
+ - uid: 1240
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 11.5,1.5
parent: 3
-- proto: CableMV
+- proto: CableTerminal
entities:
- - uid: 113
+ - uid: 163
components:
- type: Transform
- pos: 1.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-3.5
parent: 3
- - uid: 551
+- proto: CarpetBlue
+ entities:
+ - uid: 1254
components:
- type: Transform
- pos: -7.5,2.5
+ pos: -0.5,21.5
parent: 3
- - uid: 555
+- proto: CarpetPurple
+ entities:
+ - uid: 1255
components:
- type: Transform
- pos: 0.5,0.5
+ pos: -0.5,20.5
parent: 3
- - uid: 556
+- proto: ChairOfficeLight
+ entities:
+ - uid: 382
components:
- type: Transform
- pos: -0.5,0.5
+ pos: -0.5,24.5
parent: 3
- - uid: 557
+ - uid: 387
components:
- type: Transform
- pos: 1.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,25.5
parent: 3
- - uid: 558
+- proto: ChairPilotSeat
+ entities:
+ - uid: 483
components:
- type: Transform
- pos: 0.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,25.5
parent: 3
- - uid: 579
+- proto: CircuitImprinter
+ entities:
+ - uid: 649
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: 2.5,1.5
parent: 3
- - uid: 591
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 1214
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: -6.5,6.5
parent: 3
- - uid: 722
+- proto: ClosetFireFilled
+ entities:
+ - uid: 1215
components:
- type: Transform
- pos: 1.5,-0.5
+ pos: 5.5,6.5
parent: 3
- - uid: 724
+- proto: ClosetL3ScienceFilled
+ entities:
+ - uid: 1216
components:
- type: Transform
- pos: 1.5,-1.5
+ pos: -4.5,6.5
parent: 3
- - uid: 804
+- proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 1022
components:
- type: Transform
- pos: 1.5,1.5
+ pos: -12.5,1.5
parent: 3
- - uid: 806
+ - uid: 1023
components:
- type: Transform
- pos: -2.5,1.5
+ pos: 13.5,1.5
parent: 3
- - uid: 807
+- proto: ClosetWallMaintenanceFilledRandom
+ entities:
+ - uid: 427
components:
- type: Transform
- pos: -2.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-5.5
parent: 3
- - uid: 808
+- proto: ClothingBeltUtilityEngineering
+ entities:
+ - uid: 641
components:
- type: Transform
- pos: -3.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-0.5
parent: 3
- - uid: 809
+- proto: ClothingEyesGlassesThermal
+ entities:
+ - uid: 996
components:
- type: Transform
- pos: -4.5,2.5
+ pos: 3.5,-0.5
parent: 3
- - uid: 810
+- proto: ClothingHandsGlovesRobohands
+ entities:
+ - uid: 1086
components:
- type: Transform
- pos: -4.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-0.5
parent: 3
- - uid: 811
+- proto: ClothingNeckTieSci
+ entities:
+ - uid: 1209
components:
- type: Transform
- pos: -5.5,2.5
+ pos: 2.5,16.5
parent: 3
- - uid: 812
+- proto: ClothingUniformJumpsuitScientistFormal
+ entities:
+ - uid: 1089
components:
- type: Transform
- pos: -6.5,2.5
+ pos: 1.5,18.5
parent: 3
- - uid: 813
+- proto: ComputerResearchAndDevelopment
+ entities:
+ - uid: 1222
components:
- type: Transform
- pos: -7.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,8.5
parent: 3
- - uid: 814
+- proto: ComputerTabletopAnalysisConsole
+ entities:
+ - uid: 662
components:
- type: Transform
- pos: -7.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,-2.5
parent: 3
- - uid: 815
+ - type: DeviceLinkSource
+ linkedPorts:
+ 347:
+ - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+ - uid: 663
components:
- type: Transform
- pos: -7.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-2.5
parent: 3
- - uid: 816
+- proto: ComputerTabletopBodyScanner
+ entities:
+ - uid: 66
components:
- type: Transform
- pos: -7.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-1.5
parent: 3
- - uid: 817
+- proto: ComputerTabletopPowerMonitoring
+ entities:
+ - uid: 441
components:
- type: Transform
- pos: -7.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,23.5
parent: 3
- - uid: 818
+- proto: ComputerTabletopRadar
+ entities:
+ - uid: 65
components:
- type: Transform
- pos: -8.5,-0.5
+ pos: -0.5,26.5
parent: 3
- - uid: 819
+- proto: ComputerTabletopResearchAndDevelopment
+ entities:
+ - uid: 301
components:
- type: Transform
- pos: -9.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,0.5
parent: 3
- - uid: 820
+ - uid: 442
components:
- type: Transform
- pos: -10.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,23.5
parent: 3
- - uid: 821
+- proto: ComputerTabletopShuttle
+ entities:
+ - uid: 160
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: 0.5,26.5
parent: 3
- - uid: 822
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 428
components:
- type: Transform
- pos: -10.5,-1.5
+ pos: 1.5,26.5
parent: 3
- - uid: 823
+- proto: ComputerTelevision
+ entities:
+ - uid: 554
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: -0.5,14.5
parent: 3
- - uid: 824
+- proto: ComputerWallmountWithdrawBankATM
+ entities:
+ - uid: 533
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: -14.5,0.5
parent: 3
- - uid: 825
+ - type: Physics
+ canCollide: False
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ ents: []
+ bank-ATM-cashSlot: !type:ContainerSlot {}
+ - type: ItemSlots
+ - uid: 665
components:
- type: Transform
- pos: 1.5,1.5
+ pos: 15.5,0.5
parent: 3
- - uid: 826
+ - type: Physics
+ canCollide: False
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ ents: []
+ bank-ATM-cashSlot: !type:ContainerSlot {}
+ - type: ItemSlots
+- proto: CrateArtifactContainer
+ entities:
+ - uid: 1039
components:
- type: Transform
- pos: 2.5,1.5
+ pos: 7.5,5.5
parent: 3
- - uid: 827
+ - uid: 1041
components:
- type: Transform
- pos: 3.5,1.5
+ pos: -6.5,3.5
parent: 3
- - uid: 828
+ - uid: 1084
components:
- type: Transform
- pos: 3.5,2.5
+ pos: 7.5,6.5
parent: 3
- - uid: 829
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 986
components:
- type: Transform
- pos: 4.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,17.5
parent: 3
- - uid: 830
+ - uid: 1196
components:
- type: Transform
- pos: 5.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,3.5
parent: 3
- - uid: 831
+- proto: DisposalBend
+ entities:
+ - uid: 356
components:
- type: Transform
- pos: 6.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,0.5
parent: 3
- - uid: 832
+ - uid: 448
components:
- type: Transform
- pos: 7.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-3.5
parent: 3
- - uid: 833
+ - uid: 461
components:
- type: Transform
- pos: 8.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-3.5
parent: 3
- - uid: 834
+ - uid: 537
components:
- type: Transform
- pos: 8.5,1.5
+ pos: 14.5,0.5
parent: 3
- - uid: 835
+ - uid: 1589
components:
- type: Transform
- pos: 8.5,0.5
+ pos: 15.5,-3.5
parent: 3
- - uid: 836
+ - uid: 1604
components:
- type: Transform
- pos: 8.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-3.5
parent: 3
- - uid: 837
+- proto: DisposalPipe
+ entities:
+ - uid: 206
components:
- type: Transform
- pos: 8.5,-0.5
+ pos: -13.5,-2.5
parent: 3
- - uid: 838
+ - uid: 208
components:
- type: Transform
- pos: 9.5,-0.5
+ pos: 14.5,-1.5
parent: 3
- - uid: 839
+ - uid: 209
components:
- type: Transform
- pos: 10.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,0.5
parent: 3
- - uid: 840
+ - uid: 350
components:
- type: Transform
- pos: 10.5,-1.5
+ pos: -13.5,-1.5
parent: 3
- - uid: 841
+ - uid: 353
components:
- type: Transform
- pos: 11.5,-1.5
+ pos: -13.5,-0.5
parent: 3
- - uid: 842
+ - uid: 357
components:
- type: Transform
- pos: 11.5,-2.5
+ pos: 14.5,-2.5
parent: 3
- - uid: 844
+ - uid: 364
components:
- type: Transform
- pos: 11.5,-3.5
+ pos: 14.5,-0.5
parent: 3
- - uid: 845
+ - uid: 366
components:
- type: Transform
- pos: 1.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,0.5
parent: 3
- - uid: 846
+ - uid: 730
components:
- type: Transform
- pos: 1.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,0.5
parent: 3
- - uid: 847
+ - uid: 731
components:
- type: Transform
- pos: 1.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,0.5
parent: 3
- - uid: 848
+ - uid: 1590
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: 15.5,-4.5
parent: 3
- - uid: 849
+ - uid: 1591
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: 15.5,-6.5
parent: 3
- - uid: 850
+ - uid: 1592
components:
- type: Transform
- pos: 1.5,-3.5
+ pos: 15.5,-5.5
parent: 3
- - uid: 854
+ - uid: 1593
components:
- type: Transform
- pos: -1.5,0.5
+ pos: 15.5,-7.5
parent: 3
- - uid: 856
+ - uid: 1594
components:
- type: Transform
- pos: 0.5,0.5
+ pos: 15.5,-8.5
parent: 3
- - uid: 857
+ - uid: 1595
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 15.5,-9.5
parent: 3
- - uid: 859
+ - uid: 1596
components:
- type: Transform
- pos: 0.5,2.5
+ pos: 15.5,-10.5
parent: 3
- - uid: 860
+ - uid: 1597
components:
- type: Transform
- pos: 0.5,3.5
+ pos: 15.5,-11.5
parent: 3
- - uid: 861
+ - uid: 1605
components:
- type: Transform
- pos: 0.5,4.5
+ pos: -14.5,-4.5
parent: 3
- - uid: 862
+ - uid: 1606
components:
- type: Transform
- pos: 0.5,5.5
+ pos: -14.5,-5.5
parent: 3
- - uid: 863
+ - uid: 1607
components:
- type: Transform
- pos: 0.5,7.5
+ pos: -14.5,-6.5
parent: 3
- - uid: 864
+ - uid: 1608
components:
- type: Transform
- pos: 0.5,6.5
+ pos: -14.5,-7.5
parent: 3
- - uid: 865
+ - uid: 1609
components:
- type: Transform
- pos: 0.5,8.5
+ pos: -14.5,-8.5
parent: 3
- - uid: 866
+ - uid: 1610
components:
- type: Transform
- pos: 0.5,9.5
+ pos: -14.5,-9.5
parent: 3
- - uid: 870
+ - uid: 1611
components:
- type: Transform
- pos: -2.5,10.5
+ pos: -14.5,-10.5
parent: 3
- - uid: 871
+ - uid: 1612
components:
- type: Transform
- pos: 0.5,11.5
+ pos: -14.5,-11.5
parent: 3
- - uid: 872
+- proto: DisposalTrunk
+ entities:
+ - uid: 207
components:
- type: Transform
- pos: 0.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,0.5
parent: 3
- - uid: 873
+ - uid: 358
components:
- type: Transform
- pos: 0.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,0.5
parent: 3
- - uid: 874
+ - uid: 1567
components:
- type: Transform
- pos: 0.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-12.5
parent: 3
- - uid: 875
+ - uid: 1598
components:
- type: Transform
- pos: 0.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-12.5
parent: 3
- - uid: 876
+- proto: DisposalUnit
+ entities:
+ - uid: 503
components:
- type: Transform
- pos: 0.5,14.5
+ pos: 11.5,0.5
parent: 3
- - uid: 877
+ - uid: 545
components:
- type: Transform
- pos: 0.5,15.5
+ pos: -10.5,0.5
parent: 3
- - uid: 878
+- proto: DogBed
+ entities:
+ - uid: 1247
components:
- type: Transform
- pos: 0.5,16.5
+ pos: 2.5,14.5
parent: 3
- - uid: 879
+- proto: EncryptionKeyCommon
+ entities:
+ - uid: 587
components:
- type: Transform
- pos: 0.5,17.5
- parent: 3
- - uid: 880
+ parent: 998
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeyTraffic
+ entities:
+ - uid: 1000
components:
- type: Transform
- pos: 0.5,17.5
- parent: 3
- - uid: 881
+ parent: 998
+ - type: Physics
+ canCollide: False
+- proto: ExosuitFabricator
+ entities:
+ - uid: 735
components:
- type: Transform
- pos: 0.5,18.5
+ pos: -7.5,-1.5
parent: 3
- - uid: 882
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 987
components:
- type: Transform
- pos: 0.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,17.5
parent: 3
- - uid: 883
+ - uid: 1245
components:
- type: Transform
- pos: 0.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,1.5
parent: 3
- - uid: 896
+ - uid: 1246
components:
- type: Transform
- pos: -2.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,1.5
parent: 3
- - uid: 897
+- proto: FaxMachineShip
+ entities:
+ - uid: 655
components:
- type: Transform
- pos: -2.5,0.5
+ pos: 7.5,9.5
parent: 3
- - uid: 898
+- proto: filingCabinetRandom
+ entities:
+ - uid: 1087
components:
- type: Transform
- pos: -2.5,0.5
+ pos: -1.5,16.5
parent: 3
- - uid: 985
+- proto: FireAlarm
+ entities:
+ - uid: 673
components:
- type: Transform
- pos: -4.5,8.5
+ pos: -13.5,2.5
parent: 3
- - uid: 986
+ - type: DeviceList
+ devices:
+ - 912
+ - 911
+ - 910
+ - 1090
+ - 1091
+ - 1035
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 906
components:
- type: Transform
- pos: -4.5,8.5
+ pos: 14.5,2.5
parent: 3
- - uid: 987
+ - type: DeviceList
+ devices:
+ - 908
+ - 907
+ - 909
+ - 1103
+ - 1101
+ - 1100
+ - type: AtmosDevice
+ joinedGrid: 3
+- proto: FireAxeCabinetFilled
+ entities:
+ - uid: 210
components:
- type: Transform
- pos: -4.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,15.5
parent: 3
- - uid: 988
+- proto: FirelockGlass
+ entities:
+ - uid: 907
components:
- type: Transform
- pos: -4.5,7.5
+ pos: 13.5,-3.5
parent: 3
- - uid: 989
+ - type: DeviceNetwork
+ deviceLists:
+ - 906
+ - 17
+ - uid: 908
components:
- type: Transform
- pos: -3.5,7.5
+ pos: 14.5,-3.5
parent: 3
- - uid: 990
+ - type: DeviceNetwork
+ deviceLists:
+ - 906
+ - 17
+ - uid: 909
components:
- type: Transform
- pos: -3.5,7.5
+ pos: 12.5,-3.5
parent: 3
- - uid: 995
+ - type: DeviceNetwork
+ deviceLists:
+ - 906
+ - 17
+ - uid: 910
components:
- type: Transform
- pos: -3.5,7.5
+ pos: -13.5,-3.5
parent: 3
- - uid: 996
+ - type: DeviceNetwork
+ deviceLists:
+ - 673
+ - 989
+ - uid: 911
components:
- type: Transform
- pos: -2.5,7.5
+ pos: -12.5,-3.5
parent: 3
- - uid: 999
+ - type: DeviceNetwork
+ deviceLists:
+ - 673
+ - 989
+ - uid: 912
components:
- type: Transform
- pos: -2.5,7.5
+ pos: -11.5,-3.5
parent: 3
- - uid: 1001
+ - type: DeviceNetwork
+ deviceLists:
+ - 673
+ - 989
+ - uid: 1035
components:
- type: Transform
- pos: -2.5,8.5
+ pos: -12.5,-5.5
parent: 3
- - uid: 1002
+ - type: DeviceNetwork
+ deviceLists:
+ - 673
+ - uid: 1090
components:
- type: Transform
- pos: -1.5,8.5
+ pos: -8.5,-0.5
parent: 3
- - uid: 1004
+ - type: DeviceNetwork
+ deviceLists:
+ - 673
+ - 989
+ - 990
+ - uid: 1091
components:
- type: Transform
- pos: -0.5,8.5
+ pos: -11.5,2.5
parent: 3
- - uid: 1005
+ - type: DeviceNetwork
+ deviceLists:
+ - 673
+ - 989
+ - uid: 1092
components:
- type: Transform
- pos: -0.5,8.5
+ pos: -3.5,2.5
parent: 3
- - uid: 1006
+ - type: DeviceNetwork
+ deviceLists:
+ - 990
+ - 54
+ - uid: 1093
components:
- type: Transform
- pos: -0.5,8.5
+ pos: 0.5,0.5
parent: 3
- - uid: 1007
+ - type: DeviceNetwork
+ deviceLists:
+ - 54
+ - uid: 1094
components:
- type: Transform
- pos: 1.5,8.5
+ pos: 4.5,2.5
parent: 3
- - uid: 1008
+ - type: DeviceNetwork
+ deviceLists:
+ - 54
+ - 991
+ - uid: 1095
components:
- type: Transform
- pos: 2.5,8.5
+ pos: 0.5,8.5
parent: 3
- - uid: 1009
+ - type: DeviceNetwork
+ deviceLists:
+ - 54
+ - 1045
+ - uid: 1096
components:
- type: Transform
- pos: 2.5,8.5
+ pos: -5.5,7.5
parent: 3
- - uid: 1010
+ - type: DeviceNetwork
+ deviceLists:
+ - 990
+ - uid: 1097
components:
- type: Transform
- pos: 3.5,8.5
+ pos: 6.5,7.5
parent: 3
- - uid: 1013
+ - type: DeviceNetwork
+ deviceLists:
+ - 991
+ - uid: 1098
components:
- type: Transform
- pos: 3.5,8.5
+ pos: 0.5,19.5
parent: 3
- - uid: 1014
+ - type: DeviceNetwork
+ deviceLists:
+ - 1045
+ - 905
+ - uid: 1099
components:
- type: Transform
- pos: 3.5,7.5
+ pos: 0.5,22.5
parent: 3
- - uid: 1015
+ - type: DeviceNetwork
+ deviceLists:
+ - 905
+ - uid: 1100
components:
- type: Transform
- pos: 3.5,7.5
+ pos: 12.5,2.5
parent: 3
- - uid: 1016
+ - type: DeviceNetwork
+ deviceLists:
+ - 906
+ - uid: 1101
components:
- type: Transform
- pos: 4.5,7.5
+ pos: 9.5,-0.5
parent: 3
- - uid: 1019
+ - type: DeviceNetwork
+ deviceLists:
+ - 991
+ - 906
+ - 17
+ - uid: 1102
components:
- type: Transform
- pos: 5.5,7.5
+ pos: -6.5,-4.5
parent: 3
- - uid: 1020
+ - type: DeviceNetwork
+ deviceLists:
+ - 990
+ - uid: 1103
components:
- type: Transform
- pos: 5.5,7.5
+ pos: 13.5,-5.5
parent: 3
- - uid: 1021
+ - type: DeviceNetwork
+ deviceLists:
+ - 906
+ - 17
+ - uid: 1104
components:
- type: Transform
- pos: 5.5,7.5
+ pos: 7.5,-4.5
parent: 3
- - uid: 1023
+ - type: DeviceNetwork
+ deviceLists:
+ - 991
+- proto: FloorDrain
+ entities:
+ - uid: 479
components:
- type: Transform
- pos: 5.5,8.5
+ pos: 12.5,5.5
parent: 3
- - uid: 1077
+ - type: Fixtures
+ fixtures: {}
+- proto: FolderSpawner
+ entities:
+ - uid: 661
components:
- type: Transform
- pos: 0.5,19.5
+ pos: 11.5,-2.5
parent: 3
- - uid: 1085
+ - uid: 664
components:
- type: Transform
- pos: 1.5,23.5
+ pos: -10.5,-2.5
parent: 3
- - uid: 1180
+ - uid: 995
components:
- type: Transform
- pos: -4.5,8.5
+ pos: -4.5,-0.5
parent: 3
- - uid: 1182
+- proto: FoodBurgerRobot
+ entities:
+ - uid: 642
components:
- type: Transform
- pos: -5.5,6.5
+ pos: -4.5,0.5
parent: 3
- - uid: 1183
+- proto: GasMixer
+ entities:
+ - uid: 455
components:
- type: Transform
- pos: -5.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-4.5
parent: 3
- - uid: 1184
+ - type: AtmosDevice
+ joinedGrid: 3
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPassiveVent
+ entities:
+ - uid: 600
components:
- type: Transform
- pos: -5.5,7.5
+ pos: 6.5,14.5
parent: 3
- - uid: 1185
+ - type: AtmosDevice
+ joinedGrid: 3
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1062
components:
- type: Transform
- pos: -5.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-6.5
parent: 3
- - uid: 1186
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1063
components:
- type: Transform
- pos: -5.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-6.5
parent: 3
- - uid: 1187
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1064
components:
- type: Transform
- pos: -5.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-6.5
parent: 3
- - uid: 1188
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1066
components:
- type: Transform
- pos: -4.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-6.5
parent: 3
- - uid: 1189
- components:
- - type: Transform
- pos: -3.5,7.5
- parent: 3
- - uid: 1190
- components:
- - type: Transform
- pos: -2.5,7.5
- parent: 3
- - uid: 1191
- components:
- - type: Transform
- pos: -2.5,8.5
- parent: 3
- - uid: 1192
- components:
- - type: Transform
- pos: -2.5,9.5
- parent: 3
- - uid: 1193
- components:
- - type: Transform
- pos: 0.5,20.5
- parent: 3
- - uid: 1194
- components:
- - type: Transform
- pos: 0.5,21.5
- parent: 3
- - uid: 1195
- components:
- - type: Transform
- pos: 0.5,22.5
- parent: 3
- - uid: 1196
- components:
- - type: Transform
- pos: 0.5,22.5
- parent: 3
- - uid: 1197
- components:
- - type: Transform
- pos: 0.5,23.5
- parent: 3
- - uid: 1198
- components:
- - type: Transform
- pos: 1.5,23.5
- parent: 3
- - uid: 1214
- components:
- - type: Transform
- pos: 5.5,8.5
- parent: 3
- - uid: 1216
- components:
- - type: Transform
- pos: 6.5,7.5
- parent: 3
- - uid: 1217
- components:
- - type: Transform
- pos: 6.5,5.5
- parent: 3
- - uid: 1218
- components:
- - type: Transform
- pos: 6.5,6.5
- parent: 3
- - uid: 1219
- components:
- - type: Transform
- pos: 6.5,4.5
- parent: 3
- - uid: 1220
- components:
- - type: Transform
- pos: 6.5,4.5
- parent: 3
- - uid: 1221
- components:
- - type: Transform
- pos: 6.5,3.5
- parent: 3
- - uid: 1257
- components:
- - type: Transform
- pos: -10.5,-3.5
- parent: 3
- - uid: 1300
- components:
- - type: Transform
- pos: 1.5,-4.5
- parent: 3
- - uid: 1301
- components:
- - type: Transform
- pos: 1.5,-5.5
- parent: 3
- - uid: 1302
- components:
- - type: Transform
- pos: 0.5,-5.5
- parent: 3
-- proto: ChairOfficeLight
- entities:
- - uid: 1549
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-0.5
- parent: 3
- - uid: 1550
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-0.5
- parent: 3
-- proto: ChairPilotSeat
- entities:
- - uid: 65
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,25.5
- parent: 3
- - uid: 66
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,25.5
- parent: 3
- - uid: 72
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,25.5
- parent: 3
-- proto: ChemistryEmptyBottle01
- entities:
- - uid: 1532
- components:
- - type: MetaData
- name: bottle (Artifexium)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.2801228,-1.4821787
- parent: 3
- - type: Label
- originalName: bottle
- currentLabel: Artifexium
- - uid: 1533
- components:
- - type: MetaData
- name: bottle (Artifexium)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.7511272,-1.4978037
- parent: 3
- - type: Label
- originalName: bottle
- currentLabel: Artifexium
-- proto: CircuitImprinter
- entities:
- - uid: 19
- components:
- - type: Transform
- pos: 2.5,11.5
- parent: 3
-- proto: ClosetEmergencyFilledRandom
- entities:
- - uid: 1011
- components:
- - type: Transform
- pos: -1.5,7.5
- parent: 3
-- proto: ClosetL3Janitor
- entities:
- - uid: 1577
- components:
- - type: Transform
- pos: -2.5,5.5
- parent: 3
- - uid: 1578
- components:
- - type: Transform
- pos: 3.5,5.5
- parent: 3
-- proto: ClosetWallFireFilledRandom
- entities:
- - uid: 1519
- components:
- - type: Transform
- pos: 3.5,7.5
- parent: 3
-- proto: ClosetWallMaintenanceFilledRandom
- entities:
- - uid: 1520
- components:
- - type: Transform
- pos: -0.5,-3.5
- parent: 3
-- proto: ClothingBackpackEngineering
- entities:
- - uid: 1531
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.4341726,-2.4703193
- parent: 3
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 998
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.7952256,-2.4230478
- parent: 3
-- proto: ClothingOuterVestHazard
- entities:
- - uid: 1540
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.7113142,-2.5887642
- parent: 3
-- proto: ComputerAnalysisConsole
- entities:
- - uid: 943
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-4.5
- parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 347:
- - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
- - uid: 944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-4.5
- parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 346:
- - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
-- proto: ComputerRadar
- entities:
- - uid: 58
- components:
- - type: Transform
- pos: -0.5,26.5
- parent: 3
-- proto: ComputerResearchAndDevelopment
- entities:
- - uid: 735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,8.5
- parent: 3
-- proto: ComputerShuttle
- entities:
- - uid: 53
- components:
- - type: Transform
- pos: 0.5,26.5
- parent: 3
-- proto: ComputerStationRecords
- entities:
- - uid: 46
- components:
- - type: Transform
- pos: 1.5,26.5
- parent: 3
-- proto: ComputerWallmountWithdrawBankATM
- entities:
- - uid: 1521
- components:
- - type: Transform
- pos: -0.5,19.5
- parent: 3
- - type: Physics
- canCollide: False
- - type: ContainerContainer
- containers:
- board: !type:Container
- ents: []
- bank-ATM-cashSlot: !type:ContainerSlot {}
- - type: ItemSlots
-- proto: CrateArtifactContainer
- entities:
- - uid: 447
- components:
- - type: Transform
- pos: -11.5,-4.5
- parent: 3
- - uid: 448
- components:
- - type: Transform
- pos: 12.5,-4.5
- parent: 3
- - uid: 1267
- components:
- - type: Transform
- pos: -1.5,9.5
- parent: 3
- - uid: 1268
- components:
- - type: Transform
- pos: -1.5,10.5
- parent: 3
- - uid: 1269
- components:
- - type: Transform
- pos: -1.5,11.5
- parent: 3
-- proto: CrateMaterialPlasma
- entities:
- - uid: 1583
- components:
- - type: Transform
- pos: 1.5,3.5
- parent: 3
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateServiceJanitorialSupplies
- entities:
- - uid: 1465
- components:
- - type: Transform
- pos: 12.5,5.5
- parent: 3
-- proto: DefibrillatorCabinetFilled
- entities:
- - uid: 1523
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,3.5
- parent: 3
-- proto: DisposalBend
- entities:
- - uid: 1586
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-3.5
- parent: 3
- - uid: 1589
- components:
- - type: Transform
- pos: 15.5,-3.5
- parent: 3
- - uid: 1601
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-3.5
- parent: 3
- - uid: 1604
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-3.5
- parent: 3
-- proto: DisposalPipe
- entities:
- - uid: 1587
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-3.5
- parent: 3
- - uid: 1588
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-3.5
- parent: 3
- - uid: 1590
- components:
- - type: Transform
- pos: 15.5,-4.5
- parent: 3
- - uid: 1591
- components:
- - type: Transform
- pos: 15.5,-6.5
- parent: 3
- - uid: 1592
- components:
- - type: Transform
- pos: 15.5,-5.5
- parent: 3
- - uid: 1593
- components:
- - type: Transform
- pos: 15.5,-7.5
- parent: 3
- - uid: 1594
- components:
- - type: Transform
- pos: 15.5,-8.5
- parent: 3
- - uid: 1595
- components:
- - type: Transform
- pos: 15.5,-9.5
- parent: 3
- - uid: 1596
- components:
- - type: Transform
- pos: 15.5,-10.5
- parent: 3
- - uid: 1597
- components:
- - type: Transform
- pos: 15.5,-11.5
- parent: 3
- - uid: 1602
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-3.5
- parent: 3
- - uid: 1603
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-3.5
- parent: 3
- - uid: 1605
- components:
- - type: Transform
- pos: -14.5,-4.5
- parent: 3
- - uid: 1606
- components:
- - type: Transform
- pos: -14.5,-5.5
- parent: 3
- - uid: 1607
- components:
- - type: Transform
- pos: -14.5,-6.5
- parent: 3
- - uid: 1608
- components:
- - type: Transform
- pos: -14.5,-7.5
- parent: 3
- - uid: 1609
- components:
- - type: Transform
- pos: -14.5,-8.5
- parent: 3
- - uid: 1610
- components:
- - type: Transform
- pos: -14.5,-9.5
- parent: 3
- - uid: 1611
- components:
- - type: Transform
- pos: -14.5,-10.5
- parent: 3
- - uid: 1612
- components:
- - type: Transform
- pos: -14.5,-11.5
- parent: 3
-- proto: DisposalTrunk
- entities:
- - uid: 1567
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-12.5
- parent: 3
- - uid: 1585
- components:
- - type: Transform
- pos: 12.5,-2.5
- parent: 3
- - uid: 1598
+ - type: AtmosDevice
+ joinedGrid: 3
+- proto: GasPipeBend
+ entities:
+ - uid: 456
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-5.5
parent: 3
- - uid: 1600
+ - uid: 457
components:
- type: Transform
- pos: -11.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-4.5
parent: 3
-- proto: DisposalUnit
- entities:
- - uid: 1565
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 463
components:
- type: Transform
- pos: -11.5,-2.5
+ pos: 2.5,-0.5
parent: 3
- - uid: 1584
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 466
components:
- type: Transform
- pos: 12.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
parent: 3
-- proto: EmergencyLight
- entities:
- - uid: 1066
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 636
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,0.5
+ pos: 2.5,-5.5
parent: 3
- - uid: 1067
+ - uid: 914
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -4.5,0.5
- parent: 3
- - uid: 1068
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,0.5
- parent: 3
- - uid: 1069
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,0.5
+ pos: 6.5,-2.5
parent: 3
- - uid: 1070
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 921
components:
- type: Transform
- pos: 0.5,-4.5
+ pos: 7.5,2.5
parent: 3
- - uid: 1071
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 933
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 11.5,-1.5
parent: 3
- - uid: 1072
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 935
components:
- type: Transform
- pos: -0.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,4.5
parent: 3
- - uid: 1073
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 936
components:
- type: Transform
- pos: -0.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,2.5
parent: 3
- - uid: 1074
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 955
components:
- type: Transform
- pos: 1.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-0.5
parent: 3
- - uid: 1075
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 956
components:
- type: Transform
- pos: 1.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-1.5
parent: 3
- - uid: 1076
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 980
components:
- type: Transform
- pos: -0.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-0.5
parent: 3
-- proto: FaxMachineShip
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeFourway
entities:
- - uid: 1528
+ - uid: 913
components:
- type: Transform
- pos: 7.5,8.5
+ pos: 6.5,-1.5
parent: 3
-- proto: filingCabinet
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeStraight
entities:
- - uid: 1538
+ - uid: 19
components:
- type: Transform
- pos: -13.5,-1.5
+ pos: 6.5,7.5
parent: 3
- - uid: 1539
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 77
components:
- type: Transform
- pos: 14.5,-1.5
+ pos: 6.5,8.5
parent: 3
-- proto: FireAxeCabinetFilled
- entities:
- - uid: 81
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 125
components:
- type: Transform
- pos: 1.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-1.5
parent: 3
- - type: Lock
- locked: False
-- proto: Firelock
- entities:
- - uid: 68
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 232
components:
- type: Transform
- pos: -5.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-1.5
parent: 3
- - uid: 141
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 234
components:
- type: Transform
- pos: -11.5,1.5
+ pos: 6.5,9.5
parent: 3
- - uid: 449
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 235
components:
- type: Transform
- pos: 0.5,8.5
+ pos: 6.5,10.5
parent: 3
- - uid: 481
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 237
components:
- type: Transform
- pos: 12.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,6.5
parent: 3
- - uid: 483
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 458
components:
- type: Transform
- pos: 6.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-4.5
parent: 3
- - uid: 500
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 460
components:
- type: Transform
- pos: 0.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
parent: 3
- - uid: 534
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 462
components:
- type: Transform
- pos: 0.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-1.5
parent: 3
- - uid: 1469
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 467
components:
- type: Transform
- pos: -8.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,0.5
parent: 3
- - uid: 1470
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 470
components:
- type: Transform
- pos: 9.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,4.5
parent: 3
- - uid: 1472
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 478
components:
- type: Transform
- pos: 0.5,19.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,5.5
parent: 3
- - uid: 1473
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 482
components:
- type: Transform
- pos: 2.5,-3.5
+ pos: 6.5,12.5
parent: 3
-- proto: Floodlight
- entities:
- - uid: 1544
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 499
components:
- type: Transform
- pos: -9.498063,0.6183729
+ pos: -0.5,11.5
parent: 3
- - uid: 1545
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 502
components:
- type: Transform
- pos: 10.511866,0.5871229
+ pos: -0.5,10.5
parent: 3
- - uid: 1546
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 504
components:
- type: Transform
- pos: 2.512366,2.5137527
+ rot: -1.5707963267948966 rad
+ pos: 3.5,4.5
parent: 3
-- proto: FloorDrain
- entities:
- - uid: 336
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 515
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 13.5,-6.5
+ pos: 4.5,4.5
parent: 3
- - type: Fixtures
- fixtures: {}
- - uid: 343
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 516
components:
- type: Transform
- pos: -12.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-1.5
parent: 3
- - type: Fixtures
- fixtures: {}
- - uid: 396
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 517
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -10.5,0.5
+ pos: 2.5,-1.5
parent: 3
- - type: Fixtures
- fixtures: {}
- - uid: 397
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 532
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,13.5
parent: 3
- - type: Fixtures
- fixtures: {}
- - uid: 648
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 538
components:
- type: Transform
- pos: 12.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,12.5
parent: 3
- - type: Fixtures
- fixtures: {}
-- proto: GasDualPortVentPump
- entities:
- - uid: 618
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 539
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,12.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- type: AtmosPipeColor
color: '#0055CCFF'
-- proto: GasMixer
- entities:
- - uid: 387
+ - uid: 639
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,4.5
parent: 3
- - type: GasMixer
- inletTwoConcentration: 0.78
- inletOneConcentration: 0.22
- - type: AtmosDevice
- joinedGrid: 3
-- proto: GasPassiveVent
- entities:
- - uid: 600
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 643
components:
- type: Transform
- pos: 6.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
-- proto: GasPipeBend
- entities:
- - uid: 616
+ - uid: 680
components:
- type: Transform
- pos: 1.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,5.5
parent: 3
- - uid: 624
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 681
components:
- type: Transform
- pos: 2.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 626
+ color: '#990000FF'
+ - uid: 683
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,0.5
+ pos: 1.5,8.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 636
+ color: '#990000FF'
+ - uid: 684
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
parent: 3
- - uid: 637
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 685
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,4.5
parent: 3
- - uid: 639
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 686
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-2.5
+ pos: -1.5,4.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 663
+ - uid: 687
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,5.5
+ pos: -2.5,4.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 669
+ color: '#990000FF'
+ - uid: 688
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,4.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 680
+ color: '#990000FF'
+ - uid: 689
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,4.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 684
+ - uid: 690
components:
- type: Transform
- pos: 1.5,4.5
+ pos: 0.5,1.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 687
+ - uid: 693
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,2.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 693
+ - uid: 694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 3
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 695
components:
- type: Transform
- pos: 7.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 696
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,2.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 703
+ - uid: 697
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,0.5
+ parent: 3
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 745
+ - uid: 699
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,8.5
+ pos: 2.5,2.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 752
+ color: '#0055CCFF'
+ - uid: 700
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,2.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 756
+ color: '#0055CCFF'
+ - uid: 701
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -5.5,2.5
+ pos: 4.5,2.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 758
+ color: '#0055CCFF'
+ - uid: 702
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,2.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1051
+ color: '#0055CCFF'
+ - uid: 703
components:
- type: Transform
- pos: 2.5,23.5
+ pos: -0.5,3.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1054
+ color: '#0055CCFF'
+ - uid: 704
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,23.5
+ pos: -0.5,4.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1154
+ color: '#0055CCFF'
+ - uid: 705
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-2.5
+ pos: -0.5,5.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
-- proto: GasPipeFourway
- entities:
- - uid: 631
+ color: '#0055CCFF'
+ - uid: 706
components:
- type: Transform
- pos: 0.5,5.5
+ pos: -0.5,6.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 649
+ - uid: 708
components:
- type: Transform
- pos: 6.5,-0.5
+ pos: -0.5,8.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
-- proto: GasPipeStraight
- entities:
- - uid: 394
+ color: '#0055CCFF'
+ - uid: 709
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,0.5
+ pos: -0.5,9.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 457
+ - uid: 710
components:
- type: Transform
- pos: 2.5,20.5
+ pos: 1.5,9.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 508
+ - uid: 712
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,8.5
+ pos: -0.5,13.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 513
+ color: '#0055CCFF'
+ - uid: 713
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,9.5
+ pos: -0.5,14.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 519
+ color: '#0055CCFF'
+ - uid: 714
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,10.5
+ pos: -0.5,15.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 532
+ color: '#0055CCFF'
+ - uid: 715
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,13.5
+ pos: -0.5,16.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 535
+ color: '#0055CCFF'
+ - uid: 716
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,11.5
+ pos: -0.5,17.5
+ parent: 3
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 1.5,10.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 572
+ - uid: 718
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,7.5
+ pos: 1.5,11.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 584
+ - uid: 719
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,5.5
+ pos: 1.5,12.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 615
+ - uid: 721
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,6.5
+ pos: 1.5,14.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 617
+ - uid: 722
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-3.5
+ pos: 1.5,15.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 619
+ color: '#990000FF'
+ - uid: 723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-2.5
+ pos: 1.5,16.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 622
+ color: '#990000FF'
+ - uid: 724
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-0.5
+ pos: 1.5,17.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 623
+ - uid: 747
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: -0.5,18.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 625
+ - uid: 748
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,0.5
+ pos: 1.5,18.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 627
+ color: '#990000FF'
+ - uid: 751
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,1.5
+ pos: 1.5,19.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 628
+ color: '#990000FF'
+ - uid: 752
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,2.5
+ pos: -0.5,19.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 629
+ - uid: 753
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,3.5
+ pos: -0.5,20.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 634
+ - uid: 754
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,2.5
+ pos: 1.5,20.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 638
+ - uid: 755
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-3.5
+ pos: 1.5,21.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 640
+ - uid: 756
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-0.5
+ pos: -0.5,21.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 641
+ color: '#0055CCFF'
+ - uid: 757
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-2.5
+ pos: -0.5,22.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 642
+ color: '#0055CCFF'
+ - uid: 758
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-2.5
+ pos: 1.5,22.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 643
+ - uid: 915
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-2.5
+ pos: 6.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 644
+ - uid: 916
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-2.5
+ pos: 6.5,0.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 645
+ - uid: 917
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-0.5
+ pos: 6.5,1.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 646
+ - uid: 918
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-0.5
+ pos: 6.5,2.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 647
+ - uid: 919
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-0.5
+ pos: 6.5,3.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 650
+ - uid: 920
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,2.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 651
+ color: '#0055CCFF'
+ - uid: 922
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,0.5
+ pos: 7.5,1.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 652
+ color: '#0055CCFF'
+ - uid: 923
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,1.5
+ pos: 7.5,0.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 653
+ color: '#0055CCFF'
+ - uid: 925
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,-0.5
+ pos: 7.5,-1.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 654
+ - uid: 926
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,-0.5
+ pos: 8.5,-1.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 655
+ - uid: 927
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,-0.5
+ pos: 9.5,-1.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 656
+ - uid: 928
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,-0.5
+ pos: 10.5,-1.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 657
+ - uid: 929
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,5.5
+ pos: 9.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 658
+ - uid: 930
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,5.5
+ pos: 8.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 659
+ - uid: 931
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 660
+ - uid: 934
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,5.5
+ pos: 10.5,-1.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 661
+ - uid: 937
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,5.5
+ pos: -5.5,2.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 662
+ color: '#990000FF'
+ - uid: 938
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,5.5
+ pos: -5.5,3.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 664
+ color: '#990000FF'
+ - uid: 939
components:
- type: Transform
- pos: -6.5,4.5
+ pos: -5.5,1.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 665
+ color: '#990000FF'
+ - uid: 940
components:
- type: Transform
- pos: -6.5,3.5
+ pos: -5.5,0.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 666
+ color: '#990000FF'
+ - uid: 943
components:
- type: Transform
- pos: -6.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-0.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 667
+ color: '#990000FF'
+ - uid: 944
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -6.5,1.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 668
+ - uid: 945
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: -6.5,0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 670
+ - uid: 947
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.5,-0.5
+ pos: -5.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 671
+ - uid: 948
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,-0.5
+ pos: -7.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 672
+ - uid: 949
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,-0.5
+ pos: -8.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 673
+ - uid: 950
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -10.5,-0.5
- parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 675
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,3.5
+ pos: -6.5,-1.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 677
+ - uid: 951
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-1.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 678
+ - uid: 952
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-1.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 679
+ - uid: 954
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,4.5
+ pos: -9.5,-1.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 681
+ color: '#0055CCFF'
+ - uid: 957
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-1.5
parent: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 682
+ - uid: 971
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,2.5
parent: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 688
+ color: '#0055CCFF'
+ - uid: 979
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 689
+ - uid: 981
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 690
+ - uid: 982
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,1.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 691
+ - uid: 983
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,2.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 692
+ - uid: 1046
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,3.5
+ pos: -11.5,-5.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 694
+ - uid: 1047
components:
- type: Transform
- pos: 7.5,2.5
+ pos: -13.5,-5.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 695
+ - uid: 1048
components:
- type: Transform
- pos: 7.5,1.5
+ pos: 14.5,-3.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 697
+ - uid: 1049
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,0.5
+ pos: 12.5,-3.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 698
+ - uid: 1050
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,0.5
+ pos: -13.5,-3.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 699
+ - uid: 1051
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,0.5
+ pos: -11.5,-3.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 702
+ - uid: 1052
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,7.5
+ pos: 14.5,-5.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 704
+ - uid: 1053
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,6.5
+ pos: 12.5,-5.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 705
+- proto: GasPipeTJunction
+ entities:
+ - uid: 469
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,7.5
+ pos: 1.5,4.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 706
+ color: '#990000FF'
+ - uid: 480
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 707
+ - uid: 511
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,4.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 708
+ color: '#990000FF'
+ - uid: 531
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,7.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 709
+ color: '#990000FF'
+ - uid: 691
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,11.5
+ pos: 0.5,2.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 710
+ - uid: 692
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,12.5
+ pos: -0.5,2.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 711
+ - uid: 707
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,7.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 712
+ - uid: 711
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,12.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 713
+ - uid: 720
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,13.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 714
+ color: '#990000FF'
+ - uid: 924
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,16.5
+ pos: 7.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 715
+ - uid: 932
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,17.5
+ pos: 10.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 716
+ - uid: 941
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,18.5
+ pos: -5.5,-1.5
parent: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 717
+ color: '#990000FF'
+ - uid: 946
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,19.5
+ pos: -6.5,-0.5
parent: 3
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 742
+- proto: GasPort
+ entities:
+ - uid: 452
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 743
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 453
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-5.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 744
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1031
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,12.5
parent: 3
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 746
+ - uid: 1054
components:
- type: Transform
- pos: -1.5,7.5
+ pos: 12.5,-2.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 747
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1055
components:
- type: Transform
- pos: -1.5,6.5
+ pos: 14.5,-2.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 748
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1056
components:
- type: Transform
- pos: -1.5,5.5
+ pos: -11.5,-2.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 749
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1057
components:
- type: Transform
- pos: -1.5,3.5
+ pos: -13.5,-2.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 750
+ - type: AtmosDevice
+ joinedGrid: 3
+- proto: GasPressurePump
+ entities:
+ - uid: 236
components:
+ - type: MetaData
+ name: waste pump
- type: Transform
- pos: -1.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,11.5
parent: 3
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 751
+ - uid: 468
components:
+ - type: MetaData
+ name: distro pump
- type: Transform
- pos: -1.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-0.5
parent: 3
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 753
+ color: '#0055CCFF'
+ - uid: 1058
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,2.5
+ pos: -11.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 754
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1059
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 755
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1060
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 757
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1061
components:
- type: Transform
- pos: -5.5,1.5
+ pos: 12.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 759
+ - type: AtmosDevice
+ joinedGrid: 3
+- proto: GasVentPump
+ entities:
+ - uid: 963
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,0.5
+ pos: 2.5,12.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 1045
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 760
+ color: '#0055CCFF'
+ - uid: 964
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,7.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 54
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 761
+ color: '#0055CCFF'
+ - uid: 965
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,0.5
+ pos: -4.5,-0.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 990
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 762
+ color: '#0055CCFF'
+ - uid: 966
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,-2.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 989
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 763
+ color: '#0055CCFF'
+ - uid: 967
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-2.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 17
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 765
+ color: '#0055CCFF'
+ - uid: 968
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-0.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 991
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 766
+ color: '#0055CCFF'
+ - uid: 973
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
parent: 3
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 767
+ color: '#0055CCFF'
+ - uid: 984
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,11.5
+ pos: 12.5,3.5
parent: 3
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 768
+ color: '#0055CCFF'
+ - uid: 1114
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,12.5
+ pos: -0.5,23.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 905
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 769
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 534
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,13.5
+ pos: 1.5,23.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 905
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 770
+ - uid: 535
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,13.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 1045
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 771
+ - uid: 682
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,7.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 54
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 772
+ - uid: 958
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-1.5
parent: 3
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 773
+ - uid: 959
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-2.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 991
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 774
+ - uid: 962
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,18.5
+ pos: -10.5,-2.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 989
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 775
+ - uid: 969
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,19.5
+ pos: 11.5,-2.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 17
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 1038
+ - uid: 970
components:
- type: Transform
- pos: 1.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-1.5
parent: 3
+ - type: DeviceNetwork
+ deviceLists:
+ - 990
+ - type: AtmosDevice
+ joinedGrid: 3
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1039
+ color: '#990000FF'
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 407
components:
- type: Transform
- pos: 1.5,20.5
+ pos: -1.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1040
+- proto: Grille
+ entities:
+ - uid: 104
components:
- type: Transform
- pos: 1.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-7.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1041
+ - uid: 114
components:
- type: Transform
- pos: 1.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-7.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1042
+ - uid: 118
components:
- type: Transform
- pos: 1.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-7.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1043
+ - uid: 119
components:
- type: Transform
- pos: 2.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-7.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1044
+ - uid: 124
components:
- type: Transform
- pos: 2.5,19.5
+ pos: -3.5,4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1045
+ - uid: 263
components:
- type: Transform
- pos: 2.5,19.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1047
+ - uid: 265
components:
- type: Transform
- pos: 2.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1048
+ - uid: 300
components:
- type: Transform
- pos: 2.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1049
+ - uid: 354
components:
- type: Transform
- pos: 2.5,22.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1050
+ - uid: 481
components:
- type: Transform
- pos: 2.5,22.5
+ pos: -0.5,19.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1052
+ - uid: 521
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,23.5
+ pos: -0.5,8.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1053
+ - uid: 562
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,23.5
+ pos: 4.5,4.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
-- proto: GasPipeTJunction
- entities:
- - uid: 391
+ - uid: 567
components:
- type: Transform
- pos: 0.5,-4.5
+ pos: 1.5,8.5
parent: 3
- - uid: 620
+ - uid: 568
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,6.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 630
+ - uid: 575
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,4.5
+ pos: -2.5,11.5
parent: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 683
+ - uid: 577
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,7.5
+ pos: 3.5,12.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 741
+ - uid: 579
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,8.5
+ pos: 3.5,13.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1160
+ - uid: 580
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,4.5
+ pos: -2.5,13.5
parent: 3
- - type: AtmosPipeColor
- color: '#990000FF'
-- proto: GasPort
- entities:
- - uid: 609
+ - uid: 585
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,-5.5
+ pos: -3.5,5.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - uid: 610
+ - uid: 601
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-4.5
+ pos: -2.5,12.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - uid: 1536
+ - uid: 602
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,2.5
+ pos: 3.5,11.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#990000FF'
-- proto: GasPressurePump
- entities:
- - uid: 736
+ - uid: 612
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,12.5
- parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#990000FF'
-- proto: GasThermoMachineHeater
- entities:
- - uid: 606
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-1.5
+ parent: 3
+ - uid: 615
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-5.5
+ pos: 12.5,6.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
-- proto: GasVentPump
- entities:
- - uid: 621
+ - uid: 617
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-1.5
+ pos: -5.5,14.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 633
+ - uid: 618
components:
- type: Transform
- pos: 0.5,6.5
+ pos: 1.5,19.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 674
+ - uid: 619
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-0.5
+ pos: 1.5,22.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 701
+ - uid: 626
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,0.5
+ pos: -1.5,0.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1063
+ - uid: 627
components:
- type: Transform
- pos: 1.5,24.5
+ pos: 4.5,-1.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#0055CCFF'
-- proto: GasVentScrubber
- entities:
- - uid: 632
+ - uid: 629
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-0.5
+ pos: -0.5,22.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 635
+ - uid: 631
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,-4.5
- parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,7.5
+ pos: 4.5,5.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 686
+ - uid: 640
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-0.5
+ pos: -3.5,-1.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 764
+ - uid: 656
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -11.5,0.5
+ pos: 9.5,-1.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1057
+ - uid: 759
components:
- type: Transform
- pos: -0.5,24.5
+ pos: 5.5,11.5
parent: 3
- - type: AtmosDevice
- joinedGrid: 3
- - type: AtmosPipeColor
- color: '#990000FF'
-- proto: GravityGeneratorMini
- entities:
- - uid: 1292
+ - uid: 760
components:
- type: Transform
- pos: -0.5,-6.5
+ pos: 7.5,11.5
parent: 3
-- proto: Grille
- entities:
- uid: 1497
components:
- type: Transform
@@ -5648,26 +6051,6 @@ entities:
- type: Transform
pos: 14.5,-5.5
parent: 3
- - uid: 1509
- components:
- - type: Transform
- pos: 8.5,-3.5
- parent: 3
- - uid: 1510
- components:
- - type: Transform
- pos: 6.5,-3.5
- parent: 3
- - uid: 1511
- components:
- - type: Transform
- pos: -5.5,-3.5
- parent: 3
- - uid: 1512
- components:
- - type: Transform
- pos: -7.5,-3.5
- parent: 3
- uid: 1513
components:
- type: Transform
@@ -5680,4025 +6063,3297 @@ entities:
parent: 3
- proto: Gyroscope
entities:
- - uid: 963
+ - uid: 666
components:
- type: Transform
- pos: 0.5,-6.5
+ pos: -11.5,10.5
parent: 3
- - uid: 1294
+ - uid: 1036
components:
- type: Transform
- pos: 1.5,-6.5
+ pos: 12.5,10.5
parent: 3
-- proto: HandLabeler
+- proto: HospitalCurtainsOpen
entities:
- - uid: 1566
+ - uid: 890
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.120806,-1.5464296
+ pos: -0.5,21.5
parent: 3
- - uid: 1568
+ - uid: 1205
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.9039626,-1.5151796
+ pos: -0.5,20.5
parent: 3
- proto: KitchenMicrowave
entities:
- - uid: 957
+ - uid: 557
components:
- type: Transform
pos: 2.5,13.5
parent: 3
-- proto: LockerCaptainFilledHardsuit
+- proto: LockerCaptainFilled
entities:
- - uid: 6
+ - uid: 1252
components:
- type: Transform
- pos: -0.5,22.5
+ pos: 1.5,21.5
parent: 3
- proto: LockerEngineerFilledHardsuit
entities:
- - uid: 997
+ - uid: 445
components:
- type: Transform
- pos: 2.5,0.5
+ pos: 2.5,-0.5
parent: 3
-- proto: LockerResearchDirectorFilledHardsuit
+- proto: LockerResearchDirectorFilled
entities:
- - uid: 57
+ - uid: 1251
components:
- type: Transform
- pos: 1.5,22.5
+ pos: 1.5,20.5
parent: 3
- proto: LockerScienceFilled
entities:
- - uid: 1581
- components:
- - type: Transform
- pos: -4.5,1.5
- parent: 3
- - uid: 1582
+ - uid: 645
components:
- type: Transform
- pos: 5.5,1.5
+ pos: 8.5,1.5
parent: 3
-- proto: LockerWallMedicalDoctorFilled
- entities:
- - uid: 1518
+ - uid: 988
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,3.5
+ pos: 8.5,0.5
parent: 3
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: MachineAnomalyGenerator
entities:
- - uid: 1557
+ - uid: 400
components:
- type: Transform
pos: 0.5,4.5
parent: 3
- proto: MachineAnomalyVessel
entities:
- - uid: 392
+ - uid: 408
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-5.5
+ pos: -5.5,-6.5
parent: 3
- - uid: 393
+ - uid: 411
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-5.5
+ pos: 6.5,-6.5
parent: 3
- proto: MachineAPE
entities:
- - uid: 153
+ - uid: 287
components:
- - type: MetaData
- name: Left A.P.E
- type: Transform
- anchored: False
rot: -1.5707963267948966 rad
- pos: -4.5,-2.5
+ pos: 8.5,-3.5
parent: 3
- - type: ApcPowerReceiver
- powerLoad: 1
- - type: DeviceLinkSink
- links:
- - 83
- - type: Physics
- bodyType: Dynamic
- - uid: 216
+ - uid: 485
components:
- - type: MetaData
- name: Left A.P.E
- type: Transform
- anchored: False
- rot: 1.5707963267948966 rad
- pos: 5.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-2.5
parent: 3
- - type: ApcPowerReceiver
- powerLoad: 1
- - type: DeviceLinkSink
- links:
- - 82
- - type: Physics
- bodyType: Dynamic
- proto: MachineArtifactAnalyzer
entities:
- - uid: 346
+ - uid: 347
components:
- type: Transform
- pos: 13.5,-7.5
+ pos: -12.5,-7.5
parent: 3
- type: DeviceLinkSink
links:
- - 944
- - uid: 347
+ - 662
+ - uid: 1038
components:
- type: Transform
- pos: -12.5,-7.5
+ pos: 13.5,-7.5
parent: 3
- - type: DeviceLinkSink
- links:
- - 943
- proto: MachineCryoSleepPod
entities:
- - uid: 1000
+ - uid: 732
components:
- type: Transform
pos: -11.5,5.5
parent: 3
+- proto: MachineFrame
+ entities:
+ - uid: 80
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 3
- proto: MopBucketFull
entities:
- - uid: 1468
+ - uid: 447
components:
- type: Transform
- pos: 12.462342,3.6039221
+ pos: 12.5,4.5
parent: 3
- proto: MopItem
entities:
- - uid: 1467
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 3
+- proto: Morgue
+ entities:
+ - uid: 396
components:
- type: Transform
- pos: 12.527638,3.503134
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-3.5
parent: 3
- proto: NitrogenCanister
entities:
- - uid: 611
+ - uid: 492
components:
- type: Transform
- anchored: True
- pos: -0.5,-5.5
+ pos: -0.5,-7.5
parent: 3
- - type: Physics
- bodyType: Static
- type: AtmosDevice
joinedGrid: 3
+- proto: OperatingTable
+ entities:
+ - uid: 405
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 3
- proto: OxygenCanister
entities:
- - uid: 608
+ - uid: 491
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 3
+ - type: AtmosDevice
+ joinedGrid: 3
+- proto: PaperBin10
+ entities:
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 3
+- proto: PaperCaptainsThoughts
+ entities:
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: -5.5,10.5
+ parent: 3
+- proto: PortableScrubber
+ entities:
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 3
+- proto: PosterContrabandAtmosiaDeclarationIndependence
+ entities:
+ - uid: 1192
components:
- type: Transform
- anchored: True
- pos: -1.5,-4.5
+ pos: 2.5,-7.5
parent: 3
- - type: Physics
- bodyType: Static
- - type: AtmosDevice
- joinedGrid: 3
-- proto: Paper
+- proto: PosterContrabandLamarr
entities:
- - uid: 1530
+ - uid: 1176
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 1529
- - type: Physics
- canCollide: False
-- proto: PaperBin10
+ pos: -3.5,1.5
+ parent: 3
+- proto: PosterLegitSafetyMothDelam
entities:
- - uid: 1529
+ - uid: 1080
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,9.5
+ pos: 4.5,-3.5
parent: 3
- - type: Bin
- items:
- - 1530
- - type: ContainerContainer
- containers:
- bin-container: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1530
-- proto: PortableScrubber
- entities:
- - uid: 1537
+ - uid: 1197
components:
- type: Transform
- pos: -1.5,2.5
+ pos: 3.5,10.5
parent: 3
-- proto: PosterContrabandEAT
+- proto: PosterLegitSafetyMothPiping
entities:
- - uid: 1022
+ - uid: 1079
components:
- type: Transform
- pos: -13.5,0.5
+ pos: -1.5,-6.5
parent: 3
-- proto: PosterLegitEatMeat
+- proto: PosterLegitScience
entities:
- - uid: 1059
+ - uid: 1072
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,0.5
parent: 3
-- proto: PosterLegitScience
+ - uid: 1076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,0.5
+ parent: 3
+- proto: PosterLegitSMAnomalies
entities:
- - uid: 991
+ - uid: 164
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
parent: 3
- - uid: 992
+- proto: PosterLegitSMBoH
+ entities:
+ - uid: 490
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,1.5
+ pos: -2.5,0.5
parent: 3
- proto: PottedPlantBioluminscent
entities:
- - uid: 1575
+ - uid: 999
components:
- type: Transform
pos: -2.5,6.5
parent: 3
- - uid: 1576
+ - uid: 1001
components:
- type: Transform
pos: 3.5,6.5
parent: 3
-- proto: PowerCellRecharger
+- proto: PottedPlantRandom
entities:
- - uid: 9
+ - uid: 1021
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,0.5
+ pos: -13.5,1.5
parent: 3
- - uid: 15
+ - uid: 1024
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,0.5
+ pos: 14.5,1.5
parent: 3
-- proto: Poweredlight
- entities:
- - uid: 49
+ - uid: 1167
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,24.5
+ pos: 2.5,10.5
parent: 3
- - uid: 52
+- proto: PowerCellRecharger
+ entities:
+ - uid: 1025
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,24.5
+ pos: 5.5,-2.5
parent: 3
- - uid: 77
+- proto: Poweredlight
+ entities:
+ - uid: 510
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,20.5
+ pos: 5.5,6.5
parent: 3
- - uid: 1089
+ - uid: 512
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,9.5
parent: 3
- - uid: 1090
+ - uid: 525
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,15.5
+ pos: -4.5,6.5
parent: 3
- - uid: 1091
+ - uid: 768
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,15.5
+ pos: -2.5,3.5
parent: 3
- - uid: 1092
+ - uid: 769
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,16.5
parent: 3
- - uid: 1095
+ - uid: 770
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -10.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,1.5
parent: 3
- - uid: 1096
+ - uid: 771
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 11.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,3.5
parent: 3
- - uid: 1097
+ - uid: 772
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,-7.5
+ pos: 8.5,1.5
parent: 3
- - uid: 1098
+ - uid: 773
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,23.5
parent: 3
- - uid: 1099
+ - uid: 775
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -7.5,-5.5
parent: 3
- - uid: 1100
+ - uid: 777
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-5.5
parent: 3
- - uid: 1102
+ - uid: 778
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 3
+ - uid: 1069
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: -4.5,-2.5
+ pos: 2.5,11.5
parent: 3
- - uid: 1103
+ - uid: 1171
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,-2.5
+ pos: -13.5,-6.5
parent: 3
- - uid: 1105
+ - uid: 1172
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,-1.5
+ pos: 14.5,-6.5
parent: 3
- - uid: 1106
+ - uid: 1173
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -0.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,4.5
parent: 3
- - uid: 1107
+ - uid: 1174
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 1.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,4.5
parent: 3
- - uid: 1108
+ - uid: 1177
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,2.5
+ pos: -6.5,9.5
parent: 3
- - uid: 1109
+ - uid: 1178
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,2.5
+ pos: 11.5,0.5
parent: 3
- - uid: 1163
+- proto: PoweredlightColoredRed
+ entities:
+ - uid: 151
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-7.5
parent: 3
- - uid: 1164
+ - uid: 152
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-4.5
+ pos: 2.5,-0.5
parent: 3
- - uid: 1165
+- proto: PoweredSmallLight
+ entities:
+ - uid: 1183
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-2.5
parent: 3
- - uid: 1166
+ - uid: 1184
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 12.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-2.5
parent: 3
- - uid: 1167
+- proto: Protolathe
+ entities:
+ - uid: 644
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -11.5,5.5
+ pos: -2.5,1.5
parent: 3
- - uid: 1168
+- proto: Rack
+ entities:
+ - uid: 53
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,-4.5
+ pos: 3.5,-1.5
parent: 3
- - uid: 1169
+ - uid: 75
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,-2.5
+ pos: 3.5,-0.5
parent: 3
- - uid: 1170
+ - uid: 201
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-2.5
parent: 3
- - uid: 1171
+- proto: RandomDrinkGlass
+ entities:
+ - uid: 527
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-4.5
+ pos: -0.5,12.5
parent: 3
- - uid: 1172
+- proto: RandomFoodMeal
+ entities:
+ - uid: 1002
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-4.5
+ pos: 2.5,12.5
+ parent: 3
+- proto: RandomFoodSingle
+ entities:
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 2.5,11.5
parent: 3
- - uid: 1173
+- proto: RandomPosterContraband
+ entities:
+ - uid: 1228
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-1.5
+ pos: 11.5,5.5
parent: 3
- - uid: 1174
+ - uid: 1229
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,2.5
+ pos: 7.5,12.5
parent: 3
- - uid: 1175
+- proto: RandomPosterLegit
+ entities:
+ - uid: 1070
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,2.5
+ pos: 3.5,16.5
parent: 3
- - uid: 1176
+ - uid: 1071
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -5.5,12.5
+ pos: -7.5,5.5
parent: 3
- - uid: 1177
+ - uid: 1073
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 6.5,12.5
+ pos: -7.5,6.5
parent: 3
- - uid: 1178
+ - uid: 1074
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -0.5,22.5
+ pos: 8.5,6.5
parent: 3
- - uid: 1547
+ - uid: 1075
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -0.5,7.5
+ pos: 8.5,5.5
parent: 3
- - uid: 1569
+ - uid: 1077
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 1.5,7.5
+ pos: -2.5,14.5
parent: 3
- - uid: 1570
+ - uid: 1082
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -6.5,6.5
+ pos: -8.5,0.5
parent: 3
- - uid: 1571
+ - uid: 1083
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 7.5,6.5
+ pos: 9.5,0.5
parent: 3
-- proto: Protolathe
- entities:
- - uid: 946
+ - uid: 1257
components:
- type: Transform
- pos: 2.5,9.5
+ pos: 3.5,15.5
parent: 3
-- proto: Rack
+- proto: RandomSpawner
entities:
- - uid: 1
+ - uid: 1016
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-1.5
+ pos: 1.5,16.5
parent: 3
- - uid: 18
+ - uid: 1212
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,3.5
+ pos: -10.5,0.5
parent: 3
- - uid: 44
+ - uid: 1217
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-2.5
+ pos: 5.5,5.5
parent: 3
- - uid: 69
+ - uid: 1218
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-1.5
+ pos: 5.5,4.5
parent: 3
- - uid: 597
+ - uid: 1219
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-1.5
+ pos: 0.5,-5.5
parent: 3
-- proto: RandomDrinkGlass
- entities:
- - uid: 541
+ - uid: 1220
components:
- type: Transform
- pos: -0.5,14.5
+ pos: 12.5,3.5
parent: 3
- - uid: 542
+ - uid: 1221
components:
- type: Transform
pos: -0.5,15.5
parent: 3
-- proto: RandomFoodMeal
- entities:
- - uid: 80
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,12.5
- parent: 3
-- proto: RandomInstruments
+- proto: RandomSpawner100
entities:
- - uid: 1572
+ - uid: 650
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,12.5
+ pos: 12.5,5.5
parent: 3
-- proto: ReinforcedPlasmaWindow
- entities:
- - uid: 331
+ - uid: 651
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-5.5
+ pos: 1.5,11.5
parent: 3
- - uid: 332
+ - uid: 1185
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-5.5
+ pos: -4.5,5.5
parent: 3
- - uid: 337
+ - uid: 1186
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-3.5
+ pos: 12.5,-2.5
parent: 3
- - uid: 338
+ - uid: 1187
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-3.5
+ pos: 10.5,-1.5
parent: 3
- - uid: 339
+ - uid: 1188
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-5.5
+ pos: 6.5,9.5
parent: 3
- - uid: 340
+ - uid: 1189
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-3.5
+ pos: -9.5,-1.5
parent: 3
- - uid: 341
+ - uid: 1190
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-3.5
+ pos: -0.5,13.5
parent: 3
- - uid: 385
+ - uid: 1202
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-5.5
+ pos: 2.5,17.5
parent: 3
-- proto: ReinforcedWindow
+- proto: ReinforcedPlasmaWindow
entities:
- - uid: 90
+ - uid: 199
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-4.5
parent: 3
- - uid: 431
+ - uid: 200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-4.5
parent: 3
- - uid: 524
+ - uid: 256
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-4.5
parent: 3
- - uid: 727
+ - uid: 290
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-4.5
parent: 3
- - uid: 737
+ - uid: 331
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-5.5
parent: 3
- - uid: 942
+ - uid: 332
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-5.5
parent: 3
- - uid: 1344
+ - uid: 339
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-5.5
parent: 3
- - uid: 1376
+ - uid: 385
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-5.5
parent: 3
- - uid: 1412
+ - uid: 571
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,25.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-7.5
parent: 3
-- proto: RemoteSignaller
- entities:
- - uid: 82
+ - uid: 608
components:
- - type: MetaData
- name: Left APE controller
- type: Transform
- pos: 5.5852942,-1.4258032
+ rot: 3.141592653589793 rad
+ pos: -5.5,-7.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 216:
- - Pressed: Toggle
- - uid: 83
+ - uid: 609
components:
- - type: MetaData
- name: Left APE controller
- type: Transform
- pos: -4.453634,-1.4258032
+ rot: 3.141592653589793 rad
+ pos: -7.5,-7.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 153:
- - Pressed: Toggle
-- proto: ResearchAndDevelopmentServer
- entities:
- - uid: 941
+ - uid: 613
components:
- type: Transform
- pos: -6.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-7.5
parent: 3
-- proto: SignalButton
+- proto: ReinforcedWindow
entities:
- - uid: 369
+ - uid: 81
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-4.5
+ pos: -0.5,22.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 395:
- - Pressed: Toggle
- - uid: 370
+ - uid: 90
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,-3.5
+ pos: 2.5,25.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 333:
- - Pressed: Toggle
- 348:
- - Pressed: Toggle
- 349:
- - Pressed: Toggle
- - uid: 372
+ - uid: 162
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-1.5
+ pos: 4.5,-1.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 350:
- - Pressed: Toggle
- 351:
- - Pressed: Toggle
- 352:
- - Pressed: Toggle
- - uid: 373
+ - uid: 414
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-2.5
+ pos: 1.5,22.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 42:
- - Pressed: Toggle
- - uid: 374
+ - uid: 431
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,24.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 353:
- - Pressed: Toggle
- 354:
- - Pressed: Toggle
- 355:
- - Pressed: Toggle
- - uid: 375
+ - uid: 471
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-4.5
+ pos: -0.5,8.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 389:
- - Pressed: Toggle
- - uid: 376
+ - uid: 506
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,6.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 358:
- - Pressed: Toggle
- 357:
- - Pressed: Toggle
- 356:
- - Pressed: Toggle
- - uid: 400
+ - uid: 524
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,-2.5
+ pos: 1.5,27.5
parent: 3
- - type: DeviceLinkSource
- linkedPorts:
- 388:
- - Pressed: Toggle
-- proto: SignAnomaly
- entities:
- - uid: 1558
+ - uid: 578
components:
- type: Transform
- pos: -3.5,5.5
+ pos: -2.5,13.5
parent: 3
- - uid: 1559
+ - uid: 611
components:
- type: Transform
- pos: 4.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-1.5
parent: 3
-- proto: SignAnomaly2
- entities:
- - uid: 226
+ - uid: 622
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,14.5
+ pos: 1.5,19.5
parent: 3
-- proto: SignAtmosMinsky
- entities:
- - uid: 459
+ - uid: 623
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-5.5
+ pos: 1.5,8.5
parent: 3
-- proto: SignDanger
- entities:
- - uid: 1560
+ - uid: 624
components:
- type: Transform
- pos: -3.5,3.5
+ pos: -3.5,4.5
parent: 3
- - uid: 1561
+ - uid: 628
components:
- type: Transform
- pos: 4.5,3.5
+ pos: -3.5,-1.5
parent: 3
-- proto: SignDirectionalBar
- entities:
- - uid: 1270
+ - uid: 630
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,1.5
+ pos: -0.5,19.5
parent: 3
-- proto: SignDirectionalBridge
- entities:
- - uid: 1017
+ - uid: 632
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,8.5
+ pos: 4.5,4.5
parent: 3
-- proto: SignDirectionalCryo
- entities:
- - uid: 955
+ - uid: 638
components:
- type: Transform
- pos: -1.5,8.5
+ pos: -2.5,12.5
parent: 3
- - uid: 1012
+ - uid: 657
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-1.5
parent: 3
- - uid: 1056
+ - uid: 725
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,1.5
+ pos: -2.5,11.5
parent: 3
-- proto: SignDirectionalEng
- entities:
- - uid: 994
+ - uid: 726
components:
- type: Transform
- pos: 1.5,8.5
+ pos: 3.5,13.5
parent: 3
-- proto: SignDirectionalJanitor
- entities:
- - uid: 1466
+ - uid: 727
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,26.5
parent: 3
-- proto: SignDirectionalSci
- entities:
- - uid: 970
+ - uid: 728
components:
- type: Transform
- pos: -0.5,8.5
+ pos: 3.5,12.5
parent: 3
-- proto: SignDisposalSpace
- entities:
- - uid: 1291
+ - uid: 729
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-2.5
+ pos: 3.5,11.5
parent: 3
- - uid: 1599
+ - uid: 737
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,27.5
parent: 3
-- proto: SignEngine
- entities:
- - uid: 1058
+ - uid: 739
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,1.5
+ pos: 5.5,11.5
parent: 3
-- proto: SignEngineering
- entities:
- - uid: 993
+ - uid: 895
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 3.5,0.5
+ pos: 12.5,6.5
parent: 3
-- proto: SignMedical
- entities:
- - uid: 1517
+ - uid: 942
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -12.5,2.5
+ pos: -0.5,27.5
parent: 3
-- proto: SinkWide
- entities:
- - uid: 676
+ - uid: 1044
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,4.5
+ pos: -5.5,14.5
parent: 3
-- proto: SMESBasic
- entities:
- - uid: 488
+ - uid: 1067
components:
- type: Transform
- pos: 3.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,5.5
parent: 3
-- proto: soda_dispenser
- entities:
- - uid: 1286
+ - uid: 1068
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,13.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,5.5
parent: 3
-- proto: SpawnPointBartender
- entities:
- - uid: 1271
+ - uid: 1175
components:
- type: Transform
- pos: -1.5,13.5
+ pos: -1.5,0.5
parent: 3
-- proto: SpawnPointLatejoin
- entities:
- - uid: 1339
+ - uid: 1225
components:
- type: Transform
- pos: -11.5,4.5
+ pos: 7.5,11.5
parent: 3
-- proto: SpawnPointResearchDirector
- entities:
- - uid: 1288
+ - uid: 1344
components:
- type: Transform
- pos: 0.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,24.5
parent: 3
-- proto: SpawnPointScientist
- entities:
- - uid: 1579
+ - uid: 1376
components:
- type: Transform
- pos: -12.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,26.5
parent: 3
- - uid: 1580
+ - uid: 1412
components:
- type: Transform
- pos: 13.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,25.5
parent: 3
-- proto: SpawnPointStationEngineer
+- proto: ResearchAndDevelopmentServer
entities:
- - uid: 543
+ - uid: 159
components:
- type: Transform
- pos: 2.5,-0.5
+ pos: -6.5,9.5
parent: 3
-- proto: StoolBar
+- proto: ScienceTechFab
entities:
- - uid: 1272
+ - uid: 646
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,14.5
+ pos: 5.5,-3.5
parent: 3
- - uid: 1273
+- proto: SignalButton
+ entities:
+ - uid: 762
components:
+ - type: MetaData
+ name: blast door button
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-3.5
+ parent: 3
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1026:
+ - Pressed: Toggle
+ - uid: 765
+ components:
+ - type: MetaData
+ name: blast door button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-3.5
parent: 3
- - uid: 1274
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1029:
+ - Pressed: Toggle
+ - uid: 766
components:
+ - type: MetaData
+ name: blast door button
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,16.5
+ pos: 9.5,-2.5
parent: 3
-- proto: SubstationBasic
- entities:
- - uid: 490
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1027:
+ - Pressed: Toggle
+ - uid: 767
components:
+ - type: MetaData
+ name: blast door button
- type: Transform
- pos: 1.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-2.5
parent: 3
-- proto: TableCounterMetal
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1028:
+ - Pressed: Toggle
+- proto: SignAnomaly
entities:
- - uid: 7
+ - uid: 749
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-4.5
parent: 3
- - uid: 8
+ - uid: 750
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-4.5
parent: 3
- - uid: 84
+ - uid: 764
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-0.5
+ pos: -14.5,-3.5
parent: 3
- - uid: 115
+ - uid: 1193
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,0.5
+ pos: 15.5,-3.5
parent: 3
- - uid: 450
+- proto: SignAnomaly2
+ entities:
+ - uid: 733
components:
- type: Transform
- pos: 7.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,0.5
parent: 3
- - uid: 451
+ - uid: 743
components:
- type: Transform
- pos: 7.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,0.5
parent: 3
- - uid: 954
+ - uid: 1040
components:
- type: Transform
- pos: 2.5,12.5
+ pos: -3.5,3.5
parent: 3
- - uid: 956
+ - uid: 1042
components:
- type: Transform
- pos: 2.5,13.5
+ pos: 4.5,3.5
parent: 3
-- proto: TableCounterWood
+- proto: SignAtmosMinsky
entities:
- - uid: 1275
+ - uid: 459
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,12.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-5.5
parent: 3
- - uid: 1276
+- proto: SignBar
+ entities:
+ - uid: 734
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,10.5
parent: 3
- - uid: 1277
+- proto: SignBridge
+ entities:
+ - uid: 1043
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,13.5
+ pos: -1.5,19.5
parent: 3
- - uid: 1278
+- proto: SignCryogenicsMed
+ entities:
+ - uid: 542
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,14.5
+ pos: -12.5,2.5
parent: 3
- - uid: 1279
+- proto: SignDanger
+ entities:
+ - uid: 1194
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,14.5
+ pos: -3.5,6.5
parent: 3
- - uid: 1280
+ - uid: 1195
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,15.5
+ pos: 4.5,6.5
parent: 3
- - uid: 1281
+- proto: SignDirectionalBar
+ entities:
+ - uid: 1034
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,8.5
parent: 3
-- proto: TelecomServerFilledShuttle
+- proto: SignDirectionalBridge
entities:
- - uid: 445
+ - uid: 1033
components:
- type: Transform
- pos: -5.5,12.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,8.5
parent: 3
-- proto: Thruster
+- proto: SignEngine
entities:
- - uid: 48
+ - uid: 24
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-4.5
+ pos: -0.5,0.5
parent: 3
- - uid: 59
+- proto: SignEngineering
+ entities:
+ - uid: 1081
components:
- type: Transform
- pos: 3.5,20.5
+ pos: 2.5,0.5
parent: 3
- - uid: 70
+- proto: SignJanitor
+ entities:
+ - uid: 489
components:
- type: Transform
- pos: 6.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,2.5
parent: 3
- - uid: 74
+- proto: SignMorgue
+ entities:
+ - uid: 401
components:
- type: Transform
- pos: 12.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-3.5
parent: 3
- - uid: 217
+- proto: SignRND
+ entities:
+ - uid: 744
components:
- type: Transform
- pos: 10.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-0.5
parent: 3
- - uid: 326
+- proto: SignRobo
+ entities:
+ - uid: 488
components:
- type: Transform
- pos: -11.5,10.5
+ pos: -3.5,-0.5
parent: 3
- - uid: 327
+- proto: SignScience1
+ entities:
+ - uid: 745
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,5.5
+ pos: -16.5,-3.5
parent: 3
- - uid: 328
+ - uid: 1227
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,19.5
parent: 3
- - uid: 329
+- proto: SignScience2
+ entities:
+ - uid: 738
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,6.5
+ pos: 17.5,-3.5
parent: 3
- - uid: 334
+ - uid: 1226
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,19.5
parent: 3
- - uid: 335
+- proto: SignSurgery
+ entities:
+ - uid: 398
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-2.5
parent: 3
- - uid: 344
+- proto: SignTelecomms
+ entities:
+ - uid: 1006
components:
- type: Transform
- pos: -2.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,7.5
parent: 3
- - uid: 377
+- proto: SinkWide
+ entities:
+ - uid: 676
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,4.5
parent: 3
- - uid: 378
+- proto: SMESBasic
+ entities:
+ - uid: 23
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,3.5
+ pos: 3.5,-3.5
parent: 3
- - uid: 381
+- proto: SolidSecretDoor
+ entities:
+ - uid: 625
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-10.5
+ pos: -5.5,12.5
parent: 3
- - uid: 383
+- proto: SpawnMobSmile
+ entities:
+ - uid: 1211
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-10.5
+ pos: 0.5,14.5
parent: 3
- - uid: 384
+- proto: SpawnPointBartender
+ entities:
+ - uid: 528
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-10.5
+ pos: -1.5,11.5
parent: 3
- - uid: 386
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 1339
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-10.5
+ pos: -11.5,4.5
parent: 3
- - uid: 401
+- proto: SpawnPointScientist
+ entities:
+ - uid: 546
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-9.5
+ pos: 7.5,-0.5
parent: 3
- - uid: 540
+ - uid: 1088
components:
- type: Transform
- pos: -5.5,17.5
+ pos: -6.5,-0.5
parent: 3
- - uid: 544
+- proto: SpawnPointStationEngineer
+ entities:
+ - uid: 415
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,3.5
+ pos: 2.5,-1.5
parent: 3
- - uid: 546
+- proto: StoolBar
+ entities:
+ - uid: 543
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-9.5
+ pos: 0.5,13.5
parent: 3
- - uid: 547
+ - uid: 555
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,12.5
parent: 3
- - uid: 549
+ - uid: 556
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,6.5
+ pos: 0.5,11.5
parent: 3
- - uid: 552
+ - uid: 1169
components:
- type: Transform
- pos: -9.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,10.5
parent: 3
-- proto: ToyAi
+- proto: StorageCanister
entities:
- - uid: 1562
+ - uid: 487
components:
- type: Transform
- pos: 0.49317026,4.358873
+ pos: 1.5,-7.5
parent: 3
-- proto: VendingMachineEngiDrobe
- entities:
- - uid: 1574
+ - type: AtmosDevice
+ joinedGrid: 3
+ - uid: 1213
components:
- type: Transform
- pos: 1.5,7.5
+ pos: 1.5,-6.5
parent: 3
-- proto: VendingMachineSciDrobe
+ - type: AtmosDevice
+ joinedGrid: 3
+- proto: SubstationBasic
entities:
- - uid: 1573
+ - uid: 341
components:
- type: Transform
- pos: -0.5,7.5
+ pos: 3.5,-2.5
parent: 3
-- proto: WallReinforced
+- proto: SuitStorageCaptain
entities:
- - uid: 5
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -16.5,0.5
- parent: 3
- - uid: 10
+ - uid: 1253
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,9.5
+ pos: -1.5,18.5
parent: 3
- - uid: 11
+- proto: SuitStorageRD
+ entities:
+ - uid: 1256
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,16.5
+ pos: -1.5,17.5
parent: 3
- - uid: 17
+- proto: Table
+ entities:
+ - uid: 277
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -10.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-2.5
parent: 3
- - uid: 24
+ - uid: 391
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 16.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-0.5
parent: 3
- - uid: 26
+ - uid: 397
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 16.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-1.5
parent: 3
- - uid: 32
+ - uid: 476
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-7.5
+ pos: -4.5,0.5
parent: 3
- - uid: 51
+ - uid: 519
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-3.5
+ pos: -9.5,-2.5
parent: 3
- - uid: 54
+ - uid: 547
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 15.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,12.5
parent: 3
- - uid: 55
+ - uid: 548
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 17.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,11.5
parent: 3
- - uid: 56
+ - uid: 654
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,13.5
parent: 3
- - uid: 60
+ - uid: 658
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,13.5
+ pos: -10.5,-2.5
parent: 3
- - uid: 64
+ - uid: 659
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,16.5
+ pos: 11.5,-2.5
parent: 3
- - uid: 71
+ - uid: 660
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,17.5
+ pos: 10.5,-2.5
parent: 3
- - uid: 73
+ - uid: 677
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,7.5
+ pos: 5.5,-0.5
parent: 3
- - uid: 75
+ - uid: 678
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,13.5
+ pos: 5.5,-1.5
parent: 3
- - uid: 78
+ - uid: 679
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 17.5,-3.5
+ pos: 5.5,0.5
parent: 3
- - uid: 86
+- proto: TableCarpet
+ entities:
+ - uid: 1248
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,16.5
+ pos: 1.5,17.5
parent: 3
- - uid: 87
+- proto: TableCounterMetal
+ entities:
+ - uid: 450
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,15.5
+ pos: 7.5,9.5
parent: 3
- - uid: 88
+ - uid: 451
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,7.5
+ pos: 7.5,8.5
parent: 3
- - uid: 89
+- proto: TableReinforced
+ entities:
+ - uid: 6
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,28.5
+ pos: -0.5,23.5
parent: 3
- - uid: 91
+ - uid: 383
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,18.5
+ pos: 1.5,26.5
parent: 3
- - uid: 92
+ - uid: 384
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,19.5
+ pos: -0.5,26.5
parent: 3
- - uid: 93
+ - uid: 386
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,17.5
+ pos: 0.5,26.5
parent: 3
- - uid: 94
+ - uid: 406
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,18.5
+ pos: 1.5,23.5
parent: 3
- - uid: 95
+- proto: TableWoodReinforced
+ entities:
+ - uid: 167
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,16.5
+ pos: -0.5,13.5
parent: 3
- - uid: 96
+ - uid: 500
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,15.5
+ pos: -0.5,9.5
parent: 3
- - uid: 97
+ - uid: 501
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,14.5
+ pos: -0.5,10.5
parent: 3
- - uid: 99
+ - uid: 544
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,7.5
+ pos: -0.5,11.5
parent: 3
- - uid: 100
+ - uid: 551
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,8.5
+ pos: -0.5,12.5
parent: 3
- - uid: 101
+ - uid: 553
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,10.5
+ pos: -0.5,14.5
parent: 3
- - uid: 102
+- proto: TelecomServerFilledShuttle
+ entities:
+ - uid: 998
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,7.5
+ pos: -5.5,11.5
parent: 3
- - uid: 103
+ - type: ContainerContainer
+ containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1000
+ - 587
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+- proto: Thruster
+ entities:
+ - uid: 21
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-9.5
parent: 3
- - uid: 104
+ - uid: 28
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-9.5
parent: 3
- - uid: 105
+ - uid: 46
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.5,8.5
+ pos: -1.5,-9.5
parent: 3
- - uid: 106
+ - uid: 52
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,20.5
+ pos: -8.5,6.5
parent: 3
- - uid: 107
+ - uid: 58
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-9.5
parent: 3
- - uid: 108
+ - uid: 59
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,22.5
+ pos: 3.5,20.5
parent: 3
- - uid: 109
+ - uid: 61
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,22.5
+ pos: 9.5,6.5
parent: 3
- - uid: 110
+ - uid: 62
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,-10.5
parent: 3
- - uid: 112
+ - uid: 64
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-10.5
parent: 3
- - uid: 116
+ - uid: 70
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,9.5
+ pos: 6.5,17.5
parent: 3
- - uid: 117
+ - uid: 74
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-10.5
parent: 3
- - uid: 118
+ - uid: 76
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,3.5
parent: 3
- - uid: 119
+ - uid: 79
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,4.5
parent: 3
- - uid: 120
+ - uid: 83
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,5.5
parent: 3
- - uid: 121
+ - uid: 134
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,19.5
+ pos: -9.5,2.5
parent: 3
- - uid: 122
+ - uid: 138
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 7.5,14.5
+ pos: -8.5,3.5
parent: 3
- - uid: 123
+ - uid: 140
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 7.5,13.5
+ pos: -8.5,4.5
parent: 3
- - uid: 124
+ - type: Thruster
+ enabled: False
+ - uid: 217
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 5.5,10.5
+ pos: 10.5,2.5
parent: 3
- - uid: 125
+ - uid: 280
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 5.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,5.5
parent: 3
- - uid: 126
+ - uid: 344
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 7.5,10.5
+ pos: -2.5,20.5
parent: 3
- - uid: 127
+ - uid: 540
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,17.5
+ pos: -5.5,17.5
parent: 3
- - uid: 128
+ - uid: 559
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 7.5,12.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-10.5
parent: 3
- - uid: 129
+ - uid: 560
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,-3.5
+ pos: -7.5,-10.5
parent: 3
- - uid: 130
+ - uid: 653
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 7.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-10.5
parent: 3
- - uid: 132
+ - uid: 1150
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 5.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-9.5
parent: 3
- - uid: 133
+- proto: ToyAi
+ entities:
+ - uid: 1198
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,16.5
+ pos: 0.5,3.5
parent: 3
- - uid: 134
+- proto: VendingMachineBooze
+ entities:
+ - uid: 552
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,15.5
+ pos: -1.5,9.5
parent: 3
- - uid: 135
+- proto: VendingMachineEngiDrobe
+ entities:
+ - uid: 472
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,14.5
+ pos: 2.5,7.5
parent: 3
- - uid: 136
+- proto: VendingMachineGeneDrobe
+ entities:
+ - uid: 558
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,10.5
+ pos: -5.5,13.5
parent: 3
- - uid: 137
+- proto: VendingMachineRoboDrobe
+ entities:
+ - uid: 566
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,9.5
+ pos: -7.5,-3.5
parent: 3
- - uid: 138
+- proto: VendingMachineRobotics
+ entities:
+ - uid: 175
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,6.5
+ pos: -7.5,-2.5
parent: 3
- - uid: 139
+- proto: VendingMachineSciDrobe
+ entities:
+ - uid: 522
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,8.5
+ pos: -1.5,7.5
parent: 3
- - uid: 140
+- proto: WallReinforced
+ entities:
+ - uid: 1
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-8.5
parent: 3
- - uid: 142
+ - uid: 4
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,17.5
parent: 3
- - uid: 143
+ - uid: 5
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 11.5,5.5
+ pos: -16.5,0.5
parent: 3
- - uid: 144
+ - uid: 7
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 11.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,16.5
parent: 3
- - uid: 145
+ - uid: 8
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 11.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,15.5
parent: 3
- - uid: 146
+ - uid: 9
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 11.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,13.5
parent: 3
- - uid: 147
+ - uid: 10
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 11.5,1.5
+ pos: -2.5,9.5
parent: 3
- - uid: 149
+ - uid: 11
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 13.5,3.5
+ pos: -6.5,16.5
parent: 3
- - uid: 150
+ - uid: 15
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 13.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-7.5
parent: 3
- - uid: 151
+ - uid: 16
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-10.5
parent: 3
- - uid: 152
+ - uid: 18
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-4.5
parent: 3
- - uid: 154
+ - uid: 20
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-9.5
parent: 3
- - uid: 155
+ - uid: 22
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 13.5,4.5
+ pos: -10.5,10.5
parent: 3
- - uid: 156
+ - uid: 26
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-4.5
+ pos: 16.5,-3.5
parent: 3
- - uid: 157
+ - uid: 27
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,-5.5
+ pos: 2.5,20.5
parent: 3
- - uid: 158
+ - uid: 29
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-9.5
parent: 3
- - uid: 159
+ - uid: 30
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-6.5
parent: 3
- - uid: 161
+ - uid: 31
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-8.5
parent: 3
- - uid: 162
+ - uid: 33
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-7.5
parent: 3
- - uid: 163
+ - uid: 34
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 15.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-5.5
parent: 3
- - uid: 164
+ - uid: 36
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 15.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,14.5
parent: 3
- - uid: 165
+ - uid: 45
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 15.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-8.5
parent: 3
- - uid: 166
+ - uid: 55
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-12.5
+ pos: 17.5,0.5
parent: 3
- - uid: 167
+ - uid: 56
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 11.5,-10.5
+ pos: 3.5,17.5
parent: 3
- - uid: 168
+ - uid: 63
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 8.5,5.5
+ pos: 2.5,-8.5
parent: 3
- - uid: 169
+ - uid: 67
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 9.5,-7.5
+ pos: -4.5,-4.5
parent: 3
- - uid: 170
+ - uid: 68
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-7.5
parent: 3
- - uid: 171
+ - uid: 69
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 9.5,-6.5
+ pos: -4.5,-5.5
parent: 3
- - uid: 172
+ - uid: 72
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-5.5
+ pos: 11.5,-5.5
parent: 3
- - uid: 174
+ - uid: 73
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 15.5,-10.5
+ pos: -12.5,7.5
parent: 3
- - uid: 175
+ - uid: 78
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,9.5
+ pos: 17.5,-3.5
parent: 3
- - uid: 176
+ - uid: 82
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 15.5,-11.5
+ pos: 0.5,-8.5
parent: 3
- - uid: 178
+ - uid: 84
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,7.5
parent: 3
- - uid: 179
+ - uid: 86
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 11.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,16.5
parent: 3
- - uid: 180
+ - uid: 87
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 11.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,15.5
parent: 3
- - uid: 181
+ - uid: 88
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 2.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,6.5
parent: 3
- - uid: 182
+ - uid: 89
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.5,-3.5
+ pos: 2.5,28.5
parent: 3
- - uid: 183
+ - uid: 91
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 3.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,18.5
parent: 3
- - uid: 184
+ - uid: 92
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 2.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,19.5
parent: 3
- - uid: 185
+ - uid: 93
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,-7.5
+ pos: -2.5,17.5
parent: 3
- - uid: 186
+ - uid: 94
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,-8.5
+ pos: -2.5,18.5
parent: 3
- - uid: 187
+ - uid: 95
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,-8.5
+ pos: -2.5,16.5
parent: 3
- - uid: 188
+ - uid: 96
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,-7.5
+ pos: -2.5,15.5
parent: 3
- - uid: 189
+ - uid: 97
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -2.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,14.5
parent: 3
- - uid: 191
+ - uid: 100
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-9.5
+ pos: 11.5,8.5
parent: 3
- - uid: 192
+ - uid: 101
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,10.5
parent: 3
- - uid: 193
+ - uid: 102
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-7.5
+ pos: 11.5,9.5
parent: 3
- - uid: 194
+ - uid: 105
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-6.5
+ pos: 11.5,5.5
parent: 3
- - uid: 195
+ - uid: 106
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,16.5
parent: 3
- - uid: 196
+ - uid: 107
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -1.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,21.5
parent: 3
- - uid: 197
+ - uid: 108
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -1.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,22.5
parent: 3
- - uid: 198
+ - uid: 109
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,17.5
parent: 3
- - uid: 199
+ - uid: 110
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,14.5
parent: 3
- - uid: 201
+ - uid: 111
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,15.5
parent: 3
- - uid: 202
+ - uid: 112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,13.5
+ parent: 3
+ - uid: 113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,12.5
+ parent: 3
+ - uid: 115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,12.5
+ parent: 3
+ - uid: 116
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,-9.5
+ pos: 3.5,9.5
parent: 3
- - uid: 203
+ - uid: 117
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,-10.5
+ pos: 3.5,10.5
parent: 3
- - uid: 204
+ - uid: 121
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,1.5
+ pos: 3.5,19.5
parent: 3
- - uid: 205
+ - uid: 122
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,14.5
parent: 3
- - uid: 206
+ - uid: 123
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,13.5
parent: 3
- - uid: 207
+ - uid: 126
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-7.5
+ pos: 7.5,10.5
parent: 3
- - uid: 208
+ - uid: 127
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-8.5
+ pos: -7.5,2.5
parent: 3
- - uid: 209
+ - uid: 128
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-9.5
+ pos: 7.5,12.5
parent: 3
- - uid: 211
+ - uid: 131
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-10.5
+ pos: -8.5,2.5
parent: 3
- - uid: 212
+ - uid: 132
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-9.5
+ pos: -10.5,2.5
parent: 3
- - uid: 213
+ - uid: 133
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-8.5
+ pos: -10.5,3.5
parent: 3
- - uid: 214
+ - uid: 135
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,-2.5
+ pos: -1.5,-6.5
parent: 3
- - uid: 215
+ - uid: 136
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 10.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
parent: 3
- - uid: 219
+ - uid: 137
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 11.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-8.5
parent: 3
- - uid: 220
+ - uid: 139
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 8.5,3.5
+ pos: 2.5,-6.5
parent: 3
- - uid: 221
+ - uid: 141
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,7.5
parent: 3
- - uid: 222
+ - uid: 143
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,10.5
parent: 3
- - uid: 223
+ - uid: 144
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,6.5
+ pos: 11.5,4.5
parent: 3
- - uid: 224
+ - uid: 145
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,7.5
+ pos: 11.5,2.5
parent: 3
- - uid: 225
+ - uid: 146
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 8.5,8.5
+ pos: 11.5,3.5
parent: 3
- - uid: 227
+ - uid: 147
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 8.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,1.5
parent: 3
- - uid: 228
+ - uid: 149
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,15.5
+ pos: 13.5,3.5
parent: 3
- - uid: 229
+ - uid: 150
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,13.5
+ pos: 13.5,5.5
parent: 3
- - uid: 230
+ - uid: 153
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,14.5
+ pos: -10.5,9.5
parent: 3
- - uid: 231
+ - uid: 154
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -4.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-11.5
parent: 3
- - uid: 232
+ - uid: 155
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -4.5,10.5
+ pos: 13.5,4.5
parent: 3
- - uid: 233
+ - uid: 157
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -4.5,12.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,22.5
parent: 3
- - uid: 235
+ - uid: 158
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -4.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,19.5
parent: 3
- - uid: 236
+ - uid: 161
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,13.5
+ pos: 14.5,2.5
parent: 3
- - uid: 237
+ - uid: 165
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,12.5
+ pos: 15.5,-4.5
parent: 3
- - uid: 238
+ - uid: 166
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -5.5,16.5
+ pos: 11.5,-12.5
parent: 3
- - uid: 240
+ - uid: 168
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -6.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,5.5
parent: 3
- - uid: 241
+ - uid: 169
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -6.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-7.5
parent: 3
- - uid: 242
+ - uid: 171
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -6.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-6.5
parent: 3
- - uid: 243
+ - uid: 172
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -7.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-5.5
parent: 3
- - uid: 245
+ - uid: 174
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -7.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-10.5
parent: 3
- - uid: 246
+ - uid: 176
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.5,7.5
+ pos: 15.5,-11.5
parent: 3
- - uid: 247
+ - uid: 177
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -10.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-5.5
parent: 3
- - uid: 248
+ - uid: 179
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -7.5,3.5
+ pos: 11.5,-4.5
parent: 3
- - uid: 249
+ - uid: 180
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,2.5
+ pos: 11.5,-3.5
parent: 3
- - uid: 250
+ - uid: 181
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -7.5,4.5
+ pos: 2.5,-5.5
parent: 3
- - uid: 251
+ - uid: 183
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,1.5
+ pos: 3.5,-4.5
parent: 3
- - uid: 252
+ - uid: 184
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -7.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-6.5
parent: 3
- - uid: 253
+ - uid: 185
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -7.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,20.5
parent: 3
- - uid: 254
+ - uid: 186
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -12.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,8.5
parent: 3
- - uid: 255
+ - uid: 187
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -12.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-8.5
parent: 3
- - uid: 256
+ - uid: 188
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -10.5,6.5
+ pos: 2.5,-7.5
parent: 3
- - uid: 257
+ - uid: 189
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,9.5
+ pos: -2.5,-4.5
parent: 3
- - uid: 258
+ - uid: 190
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,23.5
parent: 3
- - uid: 259
+ - uid: 191
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-9.5
parent: 3
- - uid: 260
+ - uid: 192
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-8.5
parent: 3
- - uid: 261
+ - uid: 194
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,6.5
+ pos: 11.5,-6.5
+ parent: 3
+ - uid: 195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-5.5
parent: 3
- - uid: 262
+ - uid: 196
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -10.5,4.5
+ pos: -1.5,-5.5
parent: 3
- - uid: 263
+ - uid: 198
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -10.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,21.5
parent: 3
- - uid: 264
+ - uid: 204
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -12.5,3.5
+ pos: 10.5,1.5
parent: 3
- - uid: 265
+ - uid: 205
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,1.5
+ pos: 11.5,-7.5
parent: 3
- - uid: 267
+ - uid: 211
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -13.5,2.5
+ pos: 9.5,-10.5
parent: 3
- - uid: 269
+ - uid: 212
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -13.5,0.5
+ pos: 9.5,-9.5
parent: 3
- - uid: 270
+ - uid: 213
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,-1.5
+ pos: 9.5,-8.5
parent: 3
- - uid: 271
+ - uid: 215
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-5.5
+ pos: 9.5,2.5
parent: 3
- - uid: 272
+ - uid: 218
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-6.5
+ pos: 8.5,2.5
parent: 3
- - uid: 273
+ - uid: 219
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-7.5
+ pos: -10.5,6.5
parent: 3
- - uid: 274
+ - uid: 220
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,3.5
parent: 3
- - uid: 275
+ - uid: 221
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,1.5
parent: 3
- - uid: 276
+ - uid: 222
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,-4.5
+ pos: 8.5,4.5
parent: 3
- - uid: 277
+ - uid: 223
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,-3.5
+ pos: 8.5,6.5
parent: 3
- - uid: 278
+ - uid: 224
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -10.5,-12.5
+ pos: 8.5,7.5
parent: 3
- - uid: 279
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 3
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 8.5,9.5
+ parent: 3
+ - uid: 228
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -10.5,-11.5
+ pos: -6.5,15.5
parent: 3
- - uid: 281
+ - uid: 229
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -10.5,-10.5
+ pos: -6.5,13.5
parent: 3
- - uid: 282
+ - uid: 230
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,1.5
+ pos: -6.5,14.5
parent: 3
- - uid: 283
+ - uid: 231
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -10.5,2.5
+ pos: -10.5,5.5
parent: 3
- - uid: 284
+ - uid: 233
+ components:
+ - type: Transform
+ pos: -10.5,7.5
+ parent: 3
+ - uid: 238
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,-10.5
+ pos: -5.5,16.5
parent: 3
- - uid: 285
+ - uid: 239
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,-9.5
+ pos: -4.5,-9.5
parent: 3
- - uid: 286
+ - uid: 240
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-8.5
+ pos: -6.5,12.5
parent: 3
- - uid: 287
+ - uid: 241
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-7.5
+ pos: -6.5,11.5
parent: 3
- - uid: 288
+ - uid: 242
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-6.5
+ pos: -6.5,10.5
parent: 3
- - uid: 289
+ - uid: 243
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-5.5
+ pos: -7.5,8.5
parent: 3
- - uid: 291
+ - uid: 244
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-6.5
parent: 3
- - uid: 292
+ - uid: 245
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,14.5
+ pos: -7.5,9.5
parent: 3
- - uid: 293
+ - uid: 246
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,-2.5
+ pos: -7.5,7.5
parent: 3
- - uid: 294
+ - uid: 247
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -10.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-8.5
parent: 3
- - uid: 295
+ - uid: 248
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-7.5
+ pos: -7.5,3.5
parent: 3
- - uid: 296
+ - uid: 249
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-6.5
+ pos: -10.5,4.5
parent: 3
- - uid: 297
+ - uid: 250
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-5.5
+ pos: -7.5,4.5
parent: 3
- - uid: 298
+ - uid: 251
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,1.5
parent: 3
- - uid: 299
+ - uid: 252
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-3.5
+ pos: -7.5,6.5
parent: 3
- - uid: 300
+ - uid: 253
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -10.5,-3.5
+ pos: -7.5,5.5
parent: 3
- - uid: 301
+ - uid: 254
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-2.5
+ pos: -12.5,4.5
parent: 3
- - uid: 303
+ - uid: 255
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-10.5
+ pos: -12.5,5.5
parent: 3
- - uid: 305
+ - uid: 257
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-9.5
+ pos: -3.5,7.5
parent: 3
- - uid: 306
+ - uid: 258
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,1.5
+ pos: -12.5,8.5
parent: 3
- - uid: 307
+ - uid: 259
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -8.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
parent: 3
- - uid: 308
+ - uid: 260
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,7.5
parent: 3
- - uid: 309
+ - uid: 261
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,6.5
parent: 3
- - uid: 310
+ - uid: 262
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,-5.5
+ pos: 5.5,-9.5
parent: 3
- - uid: 311
+ - uid: 264
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,3.5
parent: 3
- - uid: 312
+ - uid: 267
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,2.5
parent: 3
- - uid: 314
+ - uid: 269
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-9.5
+ pos: -10.5,8.5
parent: 3
- - uid: 315
+ - uid: 270
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: -11.5,-9.5
+ pos: -10.5,-3.5
parent: 3
- - uid: 316
+ - uid: 271
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-5.5
parent: 3
- - uid: 317
+ - uid: 272
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-6.5
parent: 3
- - uid: 318
+ - uid: 273
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-7.5
parent: 3
- - uid: 319
+ - uid: 274
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-8.5
parent: 3
- - uid: 320
+ - uid: 275
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-9.5
parent: 3
- - uid: 321
+ - uid: 276
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-9.5
+ pos: 5.5,8.5
parent: 3
- - uid: 362
+ - uid: 278
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -3.5,-3.5
+ pos: -10.5,-12.5
parent: 3
- - uid: 364
+ - uid: 279
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,-1.5
+ pos: -10.5,-11.5
parent: 3
- - uid: 366
+ - uid: 281
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-4.5
parent: 3
- - uid: 371
+ - uid: 282
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,1.5
parent: 3
- - uid: 379
+ - uid: 283
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: -16.5,-3.5
+ pos: 5.5,-10.5
parent: 3
- - uid: 380
+ - uid: 284
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 6.5,16.5
+ pos: -14.5,-10.5
parent: 3
- - uid: 382
+ - uid: 285
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,8.5
+ pos: -12.5,9.5
parent: 3
- - uid: 414
+ - uid: 286
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: -15.5,-3.5
+ pos: -4.5,-10.5
parent: 3
- - uid: 423
+ - uid: 288
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,19.5
+ pos: 13.5,6.5
parent: 3
- - uid: 424
+ - uid: 291
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,19.5
+ pos: -14.5,-11.5
parent: 3
- - uid: 426
+ - uid: 292
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.5,16.5
+ pos: 3.5,14.5
parent: 3
- - uid: 430
+ - uid: 295
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,-7.5
parent: 3
- - uid: 432
+ - uid: 296
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,-6.5
parent: 3
- - uid: 433
+ - uid: 297
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,-5.5
parent: 3
- - uid: 435
+ - uid: 298
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -11.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,-4.5
parent: 3
- - uid: 436
+ - uid: 299
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: -16.5,-1.5
+ pos: -8.5,-3.5
parent: 3
- - uid: 438
+ - uid: 306
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,23.5
- parent: 3
- - uid: 441
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,6.5
+ pos: -9.5,1.5
parent: 3
- - uid: 442
+ - uid: 308
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -4.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-9.5
parent: 3
- - uid: 443
+ - uid: 314
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-9.5
parent: 3
- - uid: 446
+ - uid: 316
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -4.5,-8.5
+ pos: -8.5,-10.5
parent: 3
- - uid: 474
+ - uid: 321
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 9.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-9.5
parent: 3
- - uid: 518
+ - uid: 355
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-4.5
parent: 3
- - uid: 536
+ - uid: 360
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-4.5
parent: 3
- - uid: 550
+ - uid: 368
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 5.5,-3.5
+ pos: -4.5,7.5
parent: 3
- - uid: 564
+ - uid: 370
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-4.5
+ pos: -4.5,9.5
parent: 3
- - uid: 565
+ - uid: 371
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-8.5
+ pos: -4.5,8.5
parent: 3
- - uid: 567
+ - uid: 379
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -4.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-3.5
parent: 3
- - uid: 586
+ - uid: 380
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,16.5
parent: 3
- - uid: 599
+ - uid: 390
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 5.5,12.5
+ pos: 5.5,10.5
parent: 3
- - uid: 720
+ - uid: 393
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 17.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-3.5
parent: 3
- - uid: 726
+ - uid: 409
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 4.5,-3.5
+ pos: 5.5,9.5
parent: 3
- - uid: 729
+ - uid: 423
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -15.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,19.5
parent: 3
- - uid: 730
+ - uid: 426
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -14.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,16.5
parent: 3
- - uid: 953
+ - uid: 430
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,27.5
+ pos: 3.5,15.5
parent: 3
- - uid: 1307
+ - uid: 432
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,27.5
+ pos: -1.5,23.5
parent: 3
-- proto: WallSolid
- entities:
- - uid: 16
+ - uid: 433
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,28.5
parent: 3
- - uid: 20
+ - uid: 474
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -12.5,9.5
+ pos: 9.5,-4.5
parent: 3
- - uid: 23
+ - uid: 507
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-7.5
+ pos: 10.5,-3.5
parent: 3
- - uid: 29
+ - uid: 518
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,-7.5
+ pos: -14.5,1.5
parent: 3
- - uid: 45
+ - uid: 536
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,-8.5
+ pos: 15.5,1.5
parent: 3
- - uid: 62
+ - uid: 564
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,1.5
+ pos: -15.5,-4.5
parent: 3
- - uid: 85
+ - uid: 565
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -1.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-8.5
parent: 3
- - uid: 111
+ - uid: 569
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-8.5
+ pos: -4.5,11.5
parent: 3
- - uid: 148
+ - uid: 570
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,9.5
+ pos: 16.5,0.5
parent: 3
- - uid: 190
+ - uid: 584
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,7.5
+ pos: 11.5,-9.5
parent: 3
- - uid: 200
+ - uid: 586
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 8.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-4.5
parent: 3
- - uid: 218
+ - uid: 588
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-8.5
+ pos: -9.5,-3.5
parent: 3
- - uid: 234
+ - uid: 589
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -5.5,13.5
+ pos: 15.5,-7.5
parent: 3
- - uid: 290
+ - uid: 590
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,1.5
+ pos: 15.5,-6.5
parent: 3
- - uid: 345
+ - uid: 595
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 4.5,-1.5
+ pos: 11.5,-10.5
parent: 3
- - uid: 363
+ - uid: 598
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,0.5
+ pos: -4.5,10.5
parent: 3
- - uid: 365
+ - uid: 603
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-9.5
parent: 3
- - uid: 367
+ - uid: 605
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-3.5
+ pos: -14.5,-4.5
parent: 3
- - uid: 402
+ - uid: 606
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-3.5
+ pos: -15.5,0.5
parent: 3
- - uid: 403
+ - uid: 610
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,-2.5
+ pos: 11.5,-8.5
parent: 3
- - uid: 404
+ - uid: 614
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 4.5,-2.5
+ pos: -15.5,-3.5
parent: 3
- - uid: 405
+ - uid: 763
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 3.5,0.5
+ pos: -11.5,9.5
parent: 3
- - uid: 406
+ - uid: 774
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-3.5
+ pos: 13.5,7.5
parent: 3
- - uid: 407
+ - uid: 776
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -2.5,0.5
+ pos: 13.5,8.5
parent: 3
- - uid: 408
+ - uid: 953
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,27.5
parent: 3
- - uid: 409
+ - uid: 1005
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,-1.5
+ pos: 12.5,9.5
parent: 3
- - uid: 410
+ - uid: 1020
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 1.5,1.5
+ pos: 13.5,9.5
parent: 3
- - uid: 411
+ - uid: 1307
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 2.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,27.5
parent: 3
- - uid: 412
+- proto: WallReinforcedDiagonal
+ entities:
+ - uid: 35
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 3.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,10.5
parent: 3
- - uid: 413
+ - uid: 293
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,-0.5
+ pos: -1.5,29.5
parent: 3
- - uid: 417
+ - uid: 294
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,29.5
parent: 3
- - uid: 425
+ - uid: 302
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -0.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-5.5
parent: 3
- - uid: 427
+ - uid: 303
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,19.5
+ pos: 7.5,17.5
parent: 3
- - uid: 428
+ - uid: 305
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,19.5
+ pos: -15.5,1.5
parent: 3
- - uid: 434
+ - uid: 307
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 1.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,8.5
parent: 3
- - uid: 439
+ - uid: 309
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,1.5
+ pos: -6.5,17.5
parent: 3
- - uid: 456
+ - uid: 310
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,1.5
+ pos: -3.5,8.5
parent: 3
- - uid: 462
+ - uid: 311
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -12.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,1.5
parent: 3
- - uid: 463
+ - uid: 312
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 4.5,-0.5
+ pos: -7.5,10.5
parent: 3
- - uid: 464
+ - uid: 315
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 4.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-5.5
parent: 3
- - uid: 486
+ - uid: 317
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -6.5,7.5
+ pos: -13.5,3.5
parent: 3
- - uid: 594
+ - uid: 322
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 13.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,3.5
parent: 3
- - uid: 596
+ - uid: 323
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 7.5,7.5
+ pos: -14.5,2.5
parent: 3
- - uid: 603
+ - uid: 324
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -2.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-5.5
parent: 3
- - uid: 604
+ - uid: 325
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 3.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-4.5
parent: 3
- - uid: 935
+ - uid: 326
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -0.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-4.5
parent: 3
- - uid: 936
+ - uid: 327
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -1.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-5.5
parent: 3
- - uid: 937
+ - uid: 328
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 2.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,2.5
parent: 3
- - uid: 938
+ - uid: 329
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 1.5,8.5
+ pos: -12.5,10.5
parent: 3
- - uid: 958
+ - uid: 334
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,10.5
parent: 3
- - uid: 960
+- proto: WallSolid
+ entities:
+ - uid: 37
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,2.5
+ pos: 2.5,8.5
parent: 3
- - uid: 1065
+ - uid: 39
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,2.5
+ pos: -1.5,8.5
parent: 3
- - uid: 1093
+ - uid: 40
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 4.5,2.5
+ pos: -2.5,7.5
parent: 3
- - uid: 1094
+ - uid: 148
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,2.5
+ pos: 4.5,-0.5
parent: 3
- - uid: 1110
+ - uid: 268
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 4.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,0.5
parent: 3
- - uid: 1111
+ - uid: 289
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 4.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,0.5
parent: 3
- - uid: 1289
+ - uid: 352
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-3.5
parent: 3
- - uid: 1290
+ - uid: 359
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 4.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-3.5
parent: 3
- - uid: 1548
+ - uid: 361
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,0.5
parent: 3
-- proto: WallSolidDiagonal
- entities:
- - uid: 35
+ - uid: 363
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,0.5
parent: 3
- - uid: 37
+ - uid: 365
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,29.5
+ pos: -8.5,0.5
parent: 3
- - uid: 41
+ - uid: 373
components:
- type: Transform
- pos: -1.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,0.5
parent: 3
- - uid: 50
+ - uid: 374
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,-9.5
+ pos: 2.5,0.5
parent: 3
- - uid: 461
+ - uid: 399
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,10.5
+ pos: 4.5,1.5
parent: 3
- - uid: 466
+ - uid: 403
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,17.5
+ pos: -3.5,-2.5
parent: 3
- - uid: 469
+ - uid: 404
components:
- type: Transform
- pos: -13.5,3.5
+ pos: 4.5,-2.5
parent: 3
- - uid: 471
+ - uid: 410
components:
- type: Transform
- pos: -3.5,8.5
+ pos: -3.5,1.5
parent: 3
- - uid: 472
+ - uid: 413
components:
- type: Transform
- pos: -6.5,17.5
+ pos: -3.5,-0.5
parent: 3
- - uid: 477
+ - uid: 417
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,8.5
+ pos: -3.5,0.5
parent: 3
- - uid: 479
+ - uid: 464
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,3.5
+ pos: 4.5,0.5
parent: 3
- - uid: 480
+ - uid: 486
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,10.5
+ pos: -6.5,7.5
parent: 3
- - uid: 484
+ - uid: 573
components:
- type: Transform
- pos: -7.5,10.5
+ pos: 15.5,0.5
parent: 3
- - uid: 485
+ - uid: 583
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-5.5
+ pos: 15.5,-3.5
parent: 3
- - uid: 537
+ - uid: 596
components:
- type: Transform
- pos: -15.5,1.5
+ pos: 7.5,7.5
parent: 3
- - uid: 538
+ - uid: 597
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,2.5
+ pos: 9.5,-2.5
parent: 3
- - uid: 539
+ - uid: 604
components:
- type: Transform
- pos: -14.5,2.5
+ pos: 3.5,7.5
parent: 3
- - uid: 553
+ - uid: 607
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-5.5
+ pos: -8.5,-2.5
parent: 3
- - uid: 559
+ - uid: 620
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-4.5
+ pos: -14.5,-3.5
parent: 3
- - uid: 560
+ - uid: 621
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-5.5
+ pos: -14.5,0.5
parent: 3
- - uid: 561
+ - uid: 633
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-5.5
+ pos: -3.5,3.5
parent: 3
- - uid: 562
+ - uid: 635
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-4.5
+ pos: 4.5,3.5
parent: 3
- - uid: 563
+ - uid: 960
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,2.5
parent: 3
- - uid: 593
+ - uid: 1065
components:
- type: Transform
- pos: -12.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,2.5
parent: 3
-- proto: WarpPointShip
- entities:
- - uid: 4
+ - uid: 1111
components:
- type: Transform
- pos: 0.5,0.5
+ pos: 4.5,6.5
parent: 3
-- proto: WaterTankFull
- entities:
- - uid: 21
+ - uid: 1548
components:
- type: Transform
- pos: -12.5,0.5
+ pos: -3.5,6.5
parent: 3
- - uid: 961
+- proto: WarningWaste
+ entities:
+ - uid: 997
components:
- type: Transform
- anchored: True
- pos: 2.5,7.5
+ pos: 5.5,12.5
parent: 3
- - type: Physics
- bodyType: Static
- - uid: 1003
+- proto: WarpPointShip
+ entities:
+ - uid: 1203
components:
- type: Transform
- anchored: True
- pos: 2.5,14.5
+ pos: 0.5,3.5
parent: 3
- - type: Physics
- bodyType: Static
- - uid: 1515
+- proto: WetFloorSign
+ entities:
+ - uid: 493
components:
- type: Transform
- pos: 13.5,0.5
+ pos: 12.5,1.5
parent: 3
- proto: Windoor
entities:
- - uid: 1285
+ - uid: 99
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,16.5
+ pos: -1.5,14.5
parent: 3
- proto: Window
entities:
@@ -9707,4 +9362,11 @@ entities:
- type: Transform
pos: 6.5,13.5
parent: 3
+- proto: Wrench
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 5.5,-0.5
+ parent: 3
...
diff --git a/Resources/Prototypes/Datasets/ion_storm.yml b/Resources/Prototypes/Datasets/ion_storm.yml
index 1f198d91d9d..41bb40d0e71 100644
--- a/Resources/Prototypes/Datasets/ion_storm.yml
+++ b/Resources/Prototypes/Datasets/ion_storm.yml
@@ -852,6 +852,8 @@
- SLIME PEOPLE
- SKELETONS
- ONIS # Frontier
+ - GOBLINS # Frontier
+ - HARPY # Frontier
- VULPS
- FELINIDS
diff --git a/Resources/Prototypes/DeltaV/typing_indicator.yml b/Resources/Prototypes/DeltaV/typing_indicator.yml
new file mode 100644
index 00000000000..a3fc2fbcfb9
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/typing_indicator.yml
@@ -0,0 +1,5 @@
+- type: typingIndicator
+ id: felinid
+ spritePath: /Textures/DeltaV/Effects/speech.rsi
+ typingState: felinid0
+ offset: 0, 0.2 # 0625
diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml
index 6e7d2ba7a6e..fe2a10d60a7 100644
--- a/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml
+++ b/Resources/Prototypes/Entities/Clothing/Uniforms/base_clothinguniforms.yml
@@ -36,6 +36,11 @@
- type: Clothing
slots: [innerclothing]
femaleMask: UniformTop
+ - type: Tag
+ tags:
+ - ClothMade
+ - WhitelistChameleon
+ - Skirt #Frontier, needed for Harpies
- type: entity
diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml
index 1f77059841b..a96f74ec636 100644
--- a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml
+++ b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml
@@ -1,6 +1,6 @@
# White Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorWhite
name: white jumpskirt
description: A generic white jumpskirt with no rank markings.
@@ -27,7 +27,7 @@
# Grey Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorGrey
name: grey jumpskirt
description: A tasteful grey jumpskirt that reminds you of the good old days.
@@ -58,7 +58,7 @@
# Black Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorBlack
name: black jumpskirt
description: A generic black jumpskirt with no rank markings.
@@ -89,7 +89,7 @@
# Blue Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorBlue
name: blue jumpskirt
description: A generic blue jumpskirt with no rank markings.
@@ -120,7 +120,7 @@
# Dark Blue Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorDarkBlue
name: dark blue jumpskirt
description: A generic dark blue jumpskirt with no rank markings.
@@ -151,7 +151,7 @@
# Teal Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorTeal
name: teal jumpskirt
description: A generic teal jumpskirt with no rank markings.
@@ -182,7 +182,7 @@
# Green Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorGreen
name: green jumpskirt
description: A generic green jumpskirt with no rank markings.
@@ -213,7 +213,7 @@
# Dark Green Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorDarkGreen
name: dark green jumpskirt
description: A generic dark green jumpskirt with no rank markings.
@@ -244,7 +244,7 @@
# Orange Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorOrange
name: orange jumpskirt
description: Don't wear this near paranoid security officers.
@@ -275,7 +275,7 @@
# Pink Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorPink
name: pink jumpskirt
description: Just looking at this makes you feel fabulous.
@@ -306,7 +306,7 @@
# Red Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorRed
name: red jumpskirt
description: A generic red jumpskirt with no rank markings.
@@ -337,7 +337,7 @@
# Yellow Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorYellow
name: yellow jumpskirt
description: A generic yellow jumpskirt with no rank markings.
@@ -368,7 +368,7 @@
# Purple Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorPurple
name: purple jumpskirt
description: A generic light purple jumpskirt with no rank markings.
@@ -399,7 +399,7 @@
# Light Brown Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorLightBrown
name: light brown jumpskirt
description: A generic light brown jumpskirt with no rank markings.
@@ -427,10 +427,13 @@
- state: equipped-INNERCLOTHING
color: "#c59431"
- state: trinkets-equipped-INNERCLOTHING
+ - type: SuitSensor # Frontier
+ randomMode: false # Frontier
+ mode: SensorOff # Frontier
# Brown Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorBrown
name: brown jumpskirt
description: A generic brown jumpskirt with no rank markings.
@@ -461,7 +464,7 @@
# Maroon Jumpskirt
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtColorMaroon
name: maroon jumpskirt
description: A generic maroon jumpskirt with no rank markings.
diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml
index 63c5879ed7a..e887c2a8b05 100644
--- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml
+++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml
@@ -263,7 +263,7 @@
sprite: Clothing/Uniforms/Jumpskirt/brigmedic.rsi
- type: entity
- parent: ClothingUniformBase
+ parent: ClothingUniformSkirtBase
id: ClothingUniformJumpskirtPrisoner
name: prisoner jumpskirt
description: Busted.
diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml
index 31cd255da9c..b4cad10be56 100644
--- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml
+++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml
@@ -1052,6 +1052,9 @@
sprite: Clothing/Uniforms/Jumpsuit/pirate.rsi
- type: AddAccentClothing
accent: PirateAccent
+ - type: SuitSensor # Frontier
+ randomMode: false # Frontier
+ mode: SensorOff # Frontier
- type: entity
parent: ClothingUniformBase
diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml
index e369d6ee1c4..123f3ea2c0d 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml
@@ -40,6 +40,7 @@
whitelist:
tags:
- BookSpaceLaw
+ - BookNfsdSop
idSlot:
name: access-id-card-component-default
ejectSound: /Audio/Machines/id_swipe.ogg
diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml
index 4dc879b0f6a..e5439ab140c 100644
--- a/Resources/Prototypes/Entities/Structures/conveyor.yml
+++ b/Resources/Prototypes/Entities/Structures/conveyor.yml
@@ -12,7 +12,7 @@
- type: Transform
anchored: true
- type: Sprite
- sprite: Structures/conveyor.rsi
+ sprite: _NF/Structures/conveyor.rsi # Frontier
state: conveyor_started_cw
drawdepth: FloorObjects
- type: ApcPowerReceiver
diff --git a/Resources/Prototypes/Guidebook/species.yml b/Resources/Prototypes/Guidebook/species.yml
index 5b9efd03661..f19049dc3ae 100644
--- a/Resources/Prototypes/Guidebook/species.yml
+++ b/Resources/Prototypes/Guidebook/species.yml
@@ -6,6 +6,7 @@
- Arachnid
- Diona
- Dwarf
+ - Goblin # Frontier
- Human
- Moth
- Reptilian
@@ -26,6 +27,11 @@
name: species-name-dwarf
text: "/ServerInfo/Guidebook/Mobs/Dwarf.xml"
+- type: guideEntry # Frontier
+ id: Goblin # Frontier
+ name: species-name-goblin # Frontier
+ text: "/ServerInfo/Guidebook/Mobs/Goblin.xml" # Frontier
+
- type: guideEntry
id: Human
name: species-name-human
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml
index d95014d1675..8e1242d2d7c 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml
@@ -24,21 +24,30 @@
prototype: Felinid
- type: Damageable
damageModifierSet: Felinid
+ - type: SlowOnDamage
+ speedModifierThresholds:
+ 60: 0.85 # 0.7 is base speed.
+ 80: 0.75 # 0.5 is base speed.
- type: MeleeWeapon
soundHit:
collection: Punch
animation: WeaponArcClaw
damage:
types:
- Blunt: 3
- Slash: 2
+ Slash: 4
+ Piercing: 1
+# - type: DiseaseCarrier
+# naturalImmunities:
+# - OwOnavirus
- type: Speech
speechSounds: Alto
- - type: DamageOnHighSpeedImpact
+ - type: DamageOnHighSpeedImpact # Landing on all fours!
damage:
types:
Blunt: 1
- type: Stamina
+ - type: TypingIndicator
+ proto: felinid
- type: PseudoItem
- type: Vocal
wilhelm: "/Audio/Nyanotrasen/Voice/Felinid/cat_wilhelm.ogg"
@@ -54,6 +63,22 @@
- type: SizeAttributeWhitelist # Frontier
tall: true
tallscale: 1
+ - type: Reactive
+ groups:
+ Flammable: [ Touch ]
+ Extinguish: [ Touch ]
+ reactions:
+ - reagents: [ Water, SpaceCleaner ]
+ methods: [ Touch ]
+ effects:
+ - !type:WashCreamPieReaction
+ - reagents: [ Water ]
+ methods: [ Touch ]
+ effects:
+ - !type:Emote
+ emote: Scream
+ probability: 0.2
+ - type: NoShoesSilentFootsteps
- type: entity
save: false
@@ -65,5 +90,3 @@
components:
- type: HumanoidAppearance
species: Felinid
-
-#Nya~~
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml
index 6c119b4f43c..9b91f619039 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml
@@ -29,6 +29,23 @@
- Book
- BookSpaceLaw #Frontier
+- type: entity
+ parent: BaseHyperlinkBook
+ id: HyperlinkBookNfsdSop
+ name: nfsd sop's
+ description: A book defining nfsd standard operating procedures.
+ components:
+ - type: Sprite
+ sprite: Nyanotrasen/Objects/Misc/books.rsi
+ layers:
+ - state: nfsd_sop
+ - type: HyperlinkBook
+ url: https://frontierstation14.com/index.php/NFSDSOP #Frontier
+ - type: Tag
+ tags:
+ - Book
+ - BookNfsdSop #Frontier
+
#- type: entity
# parent: BaseHyperlinkBook
# id: HyperlinkBookSupernanny
diff --git a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/devices.yml b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/devices.yml
index e915baf50f8..8b25b85d531 100644
--- a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/devices.yml
+++ b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/devices.yml
@@ -1,5 +1,5 @@
- type: entity
- parent: MarkerBase
+ parent: MarkerBasePlaceFree # Frontier
id: RandomBoards
name: random machine board spawner
components:
diff --git a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/randomitems.yml b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/randomitems.yml
index 768d284743a..e5906018e01 100644
--- a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/randomitems.yml
+++ b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/randomitems.yml
@@ -1,5 +1,5 @@
- type: entity
- parent: MarkerBase
+ parent: MarkerBasePlaceFree # Frontier
id: RandomItem
name: random item spawner
components:
diff --git a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/seeds.yml b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/seeds.yml
index db10b9c2f0a..ebc11f6c942 100644
--- a/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/seeds.yml
+++ b/Resources/Prototypes/Nyanotrasen/Markers/Spawners/Random/seeds.yml
@@ -3,7 +3,7 @@
name: Salvage Seed Spawner
id: SalvageSeedSpawnerLow
suffix: Low
- parent: MarkerBase
+ parent: MarkerBasePlaceFree # Frontier
components:
- type: Sprite
layers:
diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/biome_templates.yml b/Resources/Prototypes/Nyanotrasen/Procedural/biome_templates.yml
deleted file mode 100644
index f2dbff3b781..00000000000
--- a/Resources/Prototypes/Nyanotrasen/Procedural/biome_templates.yml
+++ /dev/null
@@ -1,65 +0,0 @@
-# Post-apocalyptic megacity
-- type: biomeTemplate
- id: RuinedMegacity
- layers:
- # Rocks
- - !type:BiomeEntityLayer
- threshold: 0.95
- noise:
- seed: 0
- frequency: 2
- noiseType: OpenSimplex2
- allowedTiles:
- - FloorLowDesert
- entities:
- - FloraRockSolid01
- - FloraRockSolid02
- - FloraRockSolid03
- # Sparse vegetation
- - !type:BiomeDecalLayer
- threshold: 0.95
- noise:
- seed: 0
- noiseType: OpenSimplex2
- frequency: 2
- divisions: 2
- allowedTiles:
- - FloorPlanetDirt
- decals:
- - BushDOne
- - BushDTwo
- - BushDThree
- # Loot
- - !type:BiomeDummyLayer
- id: Loot
- # Roads
- - !type:BiomeTileLayer
- tile: FloorAsteroidSand
- threshold: -0.5
- noise:
- seed: 3
- noiseType: OpenSimplex2
- frequency: 0.003
- lacunarity: 1.50
- fractalType: Ridged
- octaves: 1
- # Dirt
- - !type:BiomeTileLayer
- tile: FloorPlanetDirt
- threshold: 0
- noise:
- seed: 1
- frequency: 0.02
- # Fill layer
- - !type:BiomeTileLayer
- threshold: -1
- variants:
- - 0
- tile: FloorLowDesert
- - !type:BiomeTileLayer
- threshold: 0.6
- tile: FloorLowDesert
- noise:
- seed: 0
- noiseType: Cellular
- frequency: 0.1
diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_presets.yml b/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_presets.yml
deleted file mode 100644
index 2cf6ed15b45..00000000000
--- a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_presets.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-# 4 blocks of 27x27 arranged in a square.
-#
-# This makes use of the size-tagged rooms mentioned in dungeon_room_packs.yml
-- type: dungeonPreset
- id: NyanoCompound
- roomPacks:
- - -27,28,0,55
- - 1,28,28,55
- - 1,0,28,27
- - -27,0,0,27
-
-# 3 blocks of 17x15 in a row of 17x47.
-#
-# By using a non-square dimension of blocks, I can control the directionality
-# of each block, allowing for hallways which extend through the entire dungeon.
-- type: dungeonPreset
- id: NyanoStack
- roomPacks:
- - -8,32,9,47
- - -8,16,9,31
- - -8,0,9,15
-
-# A single block of 9x9
-#
-# Used for selecting a random 9x9 building on its own.
-- type: dungeonPreset
- id: NyanoSolo9
- roomPacks:
- - -4,0,5,9
diff --git a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_room_packs.yml b/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_room_packs.yml
deleted file mode 100644
index 8c0070f0b10..00000000000
--- a/Resources/Prototypes/Nyanotrasen/Procedural/dungeon_room_packs.yml
+++ /dev/null
@@ -1,159 +0,0 @@
-## SIZE-TAGGING
-#
-# I'm doing a little black magic here.
-#
-# Every area below is 27x27 which is a specific size, used like a namespace,
-# because we don't have ways to specify the spawning of certain tagged rooms in
-# room packs. Inside each of these 27x27 room packs is a set of rooms according
-# to a certain format.
-#
-# 3xY rooms are hallways.
-# 4x4 rooms are maintenance.
-# 5x5 rooms are general facilities.
-# 6x5 rooms are offices.
-# 7x7 rooms are larger, specialized facilities.
-#
-# The 8x5 room is a generator.
-# The 9x7 room is a larger variant of a specialized facility.
-#
-# There's some overlap with what is what, but that's the general trend.
-#
-# Now, this will cease to work as I intended if another 27x27 area is added
-# which does not conform to the room sizes that the others have, which is why I
-# chose such a large and odd number.
-#
-# Wizard's Den will hopefully never add another area set of the same size.
-#
-# In the future, room pack namespaces should probably have large, uneven sizes
-# to ensure this. It is sufficient to add or subtract one pixel to create a new
-# namespace.
-#
-# I will likely make more comprehensive size-tagged room pack namespaces in the
-# future. This was my first foray into dungeon generation.
-
-- type: dungeonRoomPack
- id: NyanoHugeArea1
- size: 27,27
- rooms:
- - 12,12,15,15
- - 16,12,27,15
- - 0,12,11,15
- - 16,22,22,27
- - 6,22,11,27
- - 16,16,22,21
- - 6,16,11,21
- - 0,16,5,21
- - 7,7,11,11
- - 16,4,23,11
- - 1,1,6,9
- - 7,0,11,4
- - 12,16,15,27
- - 12,0,15,11
-
-- type: dungeonRoomPack
- id: NyanoHugeArea2
- size: 27,27
- rooms:
- - 4,12,11,15
- - 12,0,15,11
- - 6,22,10,26
- - 1,22,5,26
- - 17,16,24,23
- - 11,16,16,21
- - 5,16,10,21
- - 4,6,9,11
- - 16,1,23,10
- - 6,0,11,5
- - 12,22,15,27
- - 24,12,27,15
- - 16,12,23,15
- - 12,12,15,15
- - 0,12,3,15
-
-- type: dungeonRoomPack
- id: NyanoHugeArea3
- size: 27,27
- rooms:
- - 12,16,15,23
- - 16,12,23,15
- - 4,12,11,15
- - 12,4,15,11
- - 16,16,23,23
- - 4,16,11,23
- - 16,4,23,11
- - 4,4,11,11
- - 12,24,15,27
- - 24,12,27,15
- - 12,12,15,15
- - 0,12,3,15
- - 12,0,15,3
-
-- type: dungeonRoomPack
- id: NyanoHugeArea4
- size: 27,27
- rooms:
- - 12,16,15,27
- - 4,16,7,23
- - 16,12,27,15
- - 0,12,11,15
- - 12,0,15,11
- - 16,16,23,23
- - 22,6,27,11
- - 16,6,21,11
- - 5,6,11,11
- - 22,0,27,5
- - 16,0,21,5
- - 5,0,11,5
- - 12,12,15,15
-
-- type: dungeonRoomPack
- id: NyanoHugeArea5
- size: 27,27
- rooms:
- - 12,16,15,27
- - 16,12,27,15
- - 0,12,11,15
- - 20,4,23,11
- - 12,0,15,11
- - 6,19,11,24
- - 18,16,24,21
- - 3,6,11,11
- - 12,12,15,15
-
-# What was written above, applies below.
-# This is the 17x15 edition.
-
-- type: dungeonRoomPack
- id: NyanoLargeArea1
- size: 17,15
- rooms:
- - 14,12,17,15
- - 10,12,13,15
- - 0,10,5,15
- - 14,8,17,11
- - 10,8,13,11
- - 2,6,5,9
- - 10,0,17,7
- - 6,0,9,15
- - 0,0,5,5
-
-- type: dungeonRoomPack
- id: NyanoLargeArea2
- size: 17,15
- rooms:
- - 10,12,13,15
- - 0,10,5,15
- - 10,8,13,11
- - 2,6,5,9
- - 10,4,13,7
- - 10,0,13,3
- - 6,0,9,15
- - 0,0,5,5
-
-# Solo 9x9
-
-- type: dungeonRoomPack
- id: NyanoBigArea1
- size: 9,9
- rooms:
- - 0,0,9,9
diff --git a/Resources/Prototypes/Procedural/Themes/experiment.yml b/Resources/Prototypes/Procedural/Themes/experiment.yml
index 2027e3e1c20..efc8fc7a886 100644
--- a/Resources/Prototypes/Procedural/Themes/experiment.yml
+++ b/Resources/Prototypes/Procedural/Themes/experiment.yml
@@ -4,7 +4,7 @@
- type: dungeonRoom
id: Science17x5a
size: 17,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 0,0
tags:
- SalvageExperiment
@@ -12,7 +12,7 @@
- type: dungeonRoom
id: Science17x5b
size: 17,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 18,0
tags:
- SalvageExperiment
@@ -20,7 +20,7 @@
- type: dungeonRoom
id: Science17x5c
size: 17,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 36,0
tags:
- SalvageExperiment
@@ -29,7 +29,7 @@
- type: dungeonRoom
id: Science7x7a
size: 7,7
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 0,42
tags:
- SalvageExperiment
@@ -37,7 +37,7 @@
- type: dungeonRoom
id: Science7x7b
size: 7,7
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 8,42
tags:
- SalvageExperiment
@@ -45,7 +45,7 @@
- type: dungeonRoom
id: Science7x7c
size: 7,7
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 16,42
tags:
- SalvageExperiment
@@ -55,7 +55,7 @@
- type: dungeonRoom
id: Science11x5a
size: 11,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 0,6
tags:
- SalvageExperiment
@@ -63,7 +63,7 @@
- type: dungeonRoom
id: Science11x5b
size: 11,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 12,6
tags:
- SalvageExperiment
@@ -71,7 +71,7 @@
- type: dungeonRoom
id: Science11x5c
size: 11,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 24,6
tags:
- SalvageExperiment
@@ -80,7 +80,7 @@
- type: dungeonRoom
id: Science7x5a
size: 7,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 0,12
tags:
- SalvageExperiment
@@ -88,7 +88,7 @@
- type: dungeonRoom
id: Science7x5b
size: 7,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 8,12
tags:
- SalvageExperiment
@@ -96,7 +96,7 @@
- type: dungeonRoom
id: Science7x5c
size: 7,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 16,12
tags:
- SalvageExperiment
@@ -104,7 +104,7 @@
- type: dungeonRoom
id: Science7x5d
size: 7,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 24,12
tags:
- SalvageExperiment
@@ -112,7 +112,7 @@
- type: dungeonRoom
id: Science7x5e
size: 7,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 32,12
tags:
- SalvageExperiment
@@ -120,7 +120,7 @@
- type: dungeonRoom
id: Science7x5f
size: 7,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 40,12
tags:
- SalvageExperiment
@@ -129,7 +129,7 @@
- type: dungeonRoom
id: Science13x3a
size: 13,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 0,30
tags:
- SalvageExperiment
@@ -137,7 +137,7 @@
- type: dungeonRoom
id: Science13x3b
size: 13,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 14,30
tags:
- SalvageExperiment
@@ -145,7 +145,7 @@
- type: dungeonRoom
id: Science13x3c
size: 13,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 28,30
tags:
- SalvageExperiment
@@ -154,7 +154,7 @@
- type: dungeonRoom
id: Science11x3a
size: 11,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 0,34
tags:
- SalvageExperiment
@@ -162,7 +162,7 @@
- type: dungeonRoom
id: Science11x3b
size: 11,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 12,34
tags:
- SalvageExperiment
@@ -170,7 +170,7 @@
- type: dungeonRoom
id: Science11x3c
size: 11,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 24,34
tags:
- SalvageExperiment
@@ -179,7 +179,7 @@
- type: dungeonRoom
id: Science7x3a
size: 7,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 0,38
tags:
- SalvageExperiment
@@ -187,7 +187,7 @@
- type: dungeonRoom
id: Science7x3b
size: 7,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 8,38
tags:
- SalvageExperiment
@@ -195,7 +195,7 @@
- type: dungeonRoom
id: Science7x3c
size: 7,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 16,38
tags:
- SalvageExperiment
@@ -203,7 +203,7 @@
- type: dungeonRoom
id: Science7x3d
size: 7,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 24,38
tags:
- SalvageExperiment
@@ -211,7 +211,7 @@
- type: dungeonRoom
id: Science7x3e
size: 7,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 32,38
tags:
- SalvageExperiment
@@ -219,7 +219,7 @@
- type: dungeonRoom
id: Science7x3f
size: 7,3
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 40,38
tags:
- SalvageExperiment
@@ -229,7 +229,7 @@
- type: dungeonRoom
id: Science5x5a
size: 5,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 0,18
tags:
- SalvageExperiment
@@ -237,7 +237,7 @@
- type: dungeonRoom
id: Science5x5b
size: 5,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 6,18
tags:
- SalvageExperiment
@@ -245,7 +245,7 @@
- type: dungeonRoom
id: Science5x5c
size: 5,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 12,18
tags:
- SalvageExperiment
@@ -253,7 +253,7 @@
- type: dungeonRoom
id: Science5x5d
size: 5,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 18,18
tags:
- SalvageExperiment
@@ -261,7 +261,7 @@
- type: dungeonRoom
id: Science5x5e
size: 5,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 24,18
tags:
- SalvageExperiment
@@ -269,7 +269,7 @@
- type: dungeonRoom
id: Science5x5f
size: 5,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 30,18
tags:
- SalvageExperiment
@@ -278,7 +278,7 @@
- type: dungeonRoom
id: Science3x5a
size: 3,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 0,24
tags:
- SalvageExperiment
@@ -286,7 +286,7 @@
- type: dungeonRoom
id: Science3x5b
size: 3,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 4,24
tags:
- SalvageExperiment
@@ -294,7 +294,7 @@
- type: dungeonRoom
id: Science3x5c
size: 3,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 8,24
tags:
- SalvageExperiment
@@ -302,7 +302,7 @@
- type: dungeonRoom
id: Science3x5d
size: 3,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 12,24
tags:
- SalvageExperiment
@@ -310,7 +310,7 @@
- type: dungeonRoom
id: Science3x5e
size: 3,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 16,24
tags:
- SalvageExperiment
@@ -318,7 +318,7 @@
- type: dungeonRoom
id: Science3x5f
size: 3,5
- atlas: /Maps/Dungeon/experiment.yml
+ atlas: /Maps/_NF/Dungeon/experiment.yml # Frontier
offset: 20,24
tags:
- - SalvageExperiment
+ - SalvageExperiment
\ No newline at end of file
diff --git a/Resources/Prototypes/Procedural/Themes/haunted.yml b/Resources/Prototypes/Procedural/Themes/haunted.yml
index 9a69b4daa35..b89e1268aa9 100644
--- a/Resources/Prototypes/Procedural/Themes/haunted.yml
+++ b/Resources/Prototypes/Procedural/Themes/haunted.yml
@@ -4,7 +4,7 @@
- type: dungeonRoom
id: Haunted17x5a
size: 17,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 0,0
tags:
- Haunted
@@ -12,7 +12,7 @@
- type: dungeonRoom
id: Haunted17x5b
size: 17,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 18,0
tags:
- Haunted
@@ -21,7 +21,7 @@
- type: dungeonRoom
id: Haunted7x7a
size: 7,7
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 0,42
tags:
- Haunted
@@ -29,7 +29,7 @@
- type: dungeonRoom
id: Haunted7x7b
size: 7,7
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 8,42
tags:
- Haunted
@@ -37,7 +37,7 @@
- type: dungeonRoom
id: Haunted7x7c
size: 7,7
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 16,42
tags:
- Haunted
@@ -45,7 +45,7 @@
- type: dungeonRoom
id: Haunted7x7d
size: 7,7
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 24,42
tags:
- Haunted
@@ -55,7 +55,7 @@
- type: dungeonRoom
id: Haunted11x5a
size: 11,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 0,6
tags:
- Haunted
@@ -63,7 +63,7 @@
- type: dungeonRoom
id: Haunted11x5b
size: 11,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 12,6
tags:
- Haunted
@@ -71,7 +71,7 @@
- type: dungeonRoom
id: Haunted11x5c
size: 11,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 24,6
tags:
- Haunted
@@ -80,7 +80,7 @@
- type: dungeonRoom
id: Haunted7x5a
size: 7,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 0,12
tags:
- Haunted
@@ -88,7 +88,7 @@
- type: dungeonRoom
id: Haunted7x5b
size: 7,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 8,12
tags:
- Haunted
@@ -96,7 +96,7 @@
- type: dungeonRoom
id: Haunted7x5c
size: 7,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 16,12
tags:
- Haunted
@@ -104,7 +104,7 @@
- type: dungeonRoom
id: Haunted7x5d
size: 7,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 24,12
tags:
- Haunted
@@ -113,7 +113,7 @@
- type: dungeonRoom
id: Haunted13x3a
size: 13,3
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 0,30
tags:
- Haunted
@@ -121,7 +121,7 @@
- type: dungeonRoom
id: Haunted13x3b
size: 13,3
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 14,30
tags:
- Haunted
@@ -130,7 +130,7 @@
- type: dungeonRoom
id: Haunted11x3a
size: 11,3
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 0,34
tags:
- Haunted
@@ -138,7 +138,7 @@
- type: dungeonRoom
id: Haunted11x3b
size: 11,3
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 12,34
tags:
- Haunted
@@ -146,7 +146,7 @@
- type: dungeonRoom
id: Haunted11x3c
size: 11,3
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 24,34
tags:
- Haunted
@@ -155,7 +155,7 @@
- type: dungeonRoom
id: Haunted7x3a
size: 7,3
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 0,38
tags:
- Haunted
@@ -163,7 +163,7 @@
- type: dungeonRoom
id: Haunted7x3b
size: 7,3
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 8,38
tags:
- Haunted
@@ -171,7 +171,7 @@
- type: dungeonRoom
id: Haunted7x3c
size: 7,3
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 16,38
tags:
- Haunted
@@ -179,7 +179,7 @@
- type: dungeonRoom
id: Haunted7x3d
size: 7,3
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 24,38
tags:
- Haunted
@@ -189,7 +189,7 @@
- type: dungeonRoom
id: Haunted5x5a
size: 5,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 0,18
tags:
- Haunted
@@ -197,7 +197,7 @@
- type: dungeonRoom
id: Haunted5x5b
size: 5,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 6,18
tags:
- Haunted
@@ -205,7 +205,7 @@
- type: dungeonRoom
id: Haunted5x5c
size: 5,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 12,18
tags:
- Haunted
@@ -213,7 +213,7 @@
- type: dungeonRoom
id: Haunted5x5d
size: 5,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 18,18
tags:
- Haunted
@@ -221,7 +221,7 @@
- type: dungeonRoom
id: Haunted5x5e
size: 5,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 24,18
tags:
- Haunted
@@ -229,7 +229,7 @@
- type: dungeonRoom
id: Haunted5x5f
size: 5,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 30,18
tags:
- Haunted
@@ -238,7 +238,7 @@
- type: dungeonRoom
id: Haunted3x5a
size: 3,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 0,24
tags:
- Haunted
@@ -246,7 +246,7 @@
- type: dungeonRoom
id: Haunted3x5b
size: 3,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 4,24
tags:
- Haunted
@@ -254,7 +254,7 @@
- type: dungeonRoom
id: Haunted3x5c
size: 3,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 8,24
tags:
- Haunted
@@ -262,7 +262,7 @@
- type: dungeonRoom
id: Haunted3x5d
size: 3,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 12,24
tags:
- Haunted
@@ -270,7 +270,7 @@
- type: dungeonRoom
id: Haunted3x5e
size: 3,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 16,24
tags:
- Haunted
@@ -278,7 +278,7 @@
- type: dungeonRoom
id: Haunted3x5f
size: 3,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 20,24
tags:
- Haunted
@@ -286,7 +286,7 @@
- type: dungeonRoom
id: Haunted3x5g
size: 3,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 24,24
tags:
- Haunted
@@ -294,7 +294,7 @@
- type: dungeonRoom
id: Haunted3x5h
size: 3,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 28,24
tags:
- Haunted
@@ -302,7 +302,7 @@
- type: dungeonRoom
id: Haunted3x5i
size: 3,5
- atlas: /Maps/Dungeon/haunted.yml
+ atlas: /Maps/_NF/Dungeon/haunted.yml # Frontier
offset: 32,24
tags:
- Haunted
diff --git a/Resources/Prototypes/Procedural/Themes/lava_brig.yml b/Resources/Prototypes/Procedural/Themes/lava_brig.yml
index 29c97243fe7..04b2eb4c28a 100644
--- a/Resources/Prototypes/Procedural/Themes/lava_brig.yml
+++ b/Resources/Prototypes/Procedural/Themes/lava_brig.yml
@@ -4,7 +4,7 @@
- type: dungeonRoom
id: LavaBrig17x5a
size: 17,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 0,0
tags:
- LavaBrig
@@ -12,7 +12,7 @@
- type: dungeonRoom
id: LavaBrig17x5b
size: 17,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 18,0
tags:
- LavaBrig
@@ -21,7 +21,7 @@
- type: dungeonRoom
id: LavaBrig7x7a
size: 7,7
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 0,42
tags:
- LavaBrig
@@ -29,7 +29,7 @@
- type: dungeonRoom
id: LavaBrig7x7b
size: 7,7
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 8,42
tags:
- LavaBrig
@@ -37,7 +37,7 @@
- type: dungeonRoom
id: LavaBrig7x7c
size: 7,7
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 16,42
tags:
- LavaBrig
@@ -45,7 +45,7 @@
- type: dungeonRoom
id: LavaBrig7x7d
size: 7,7
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 24,42
tags:
- LavaBrig
@@ -55,7 +55,7 @@
- type: dungeonRoom
id: LavaBrig11x5a
size: 11,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 0,6
tags:
- LavaBrig
@@ -63,7 +63,7 @@
- type: dungeonRoom
id: LavaBrig11x5b
size: 11,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 12,6
tags:
- LavaBrig
@@ -71,7 +71,7 @@
- type: dungeonRoom
id: LavaBrig11x5c
size: 11,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 24,6
tags:
- LavaBrig
@@ -80,7 +80,7 @@
- type: dungeonRoom
id: LavaBrig7x5a
size: 7,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 0,12
tags:
- LavaBrig
@@ -88,7 +88,7 @@
- type: dungeonRoom
id: LavaBrig7x5b
size: 7,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 8,12
tags:
- LavaBrig
@@ -96,7 +96,7 @@
- type: dungeonRoom
id: LavaBrig7x5c
size: 7,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 16,12
tags:
- LavaBrig
@@ -104,7 +104,7 @@
- type: dungeonRoom
id: LavaBrig7x5d
size: 7,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 24,12
tags:
- LavaBrig
@@ -113,7 +113,7 @@
- type: dungeonRoom
id: LavaBrig13x3a
size: 13,3
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 0,30
tags:
- LavaBrig
@@ -121,7 +121,7 @@
- type: dungeonRoom
id: LavaBrig13x3b
size: 13,3
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 14,30
tags:
- LavaBrig
@@ -130,7 +130,7 @@
- type: dungeonRoom
id: LavaBrig11x3a
size: 11,3
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 0,34
tags:
- LavaBrig
@@ -138,7 +138,7 @@
- type: dungeonRoom
id: LavaBrig11x3b
size: 11,3
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 12,34
tags:
- LavaBrig
@@ -146,7 +146,7 @@
- type: dungeonRoom
id: LavaBrig11x3c
size: 11,3
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 24,34
tags:
- LavaBrig
@@ -155,7 +155,7 @@
- type: dungeonRoom
id: LavaBrig7x3a
size: 7,3
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 0,38
tags:
- LavaBrig
@@ -163,7 +163,7 @@
- type: dungeonRoom
id: LavaBrig7x3b
size: 7,3
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 8,38
tags:
- LavaBrig
@@ -171,7 +171,7 @@
- type: dungeonRoom
id: LavaBrig7x3c
size: 7,3
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 16,38
tags:
- LavaBrig
@@ -179,7 +179,7 @@
- type: dungeonRoom
id: LavaBrig7x3d
size: 7,3
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 24,38
tags:
- LavaBrig
@@ -189,7 +189,7 @@
- type: dungeonRoom
id: LavaBrig5x5a
size: 5,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 0,18
tags:
- LavaBrig
@@ -197,7 +197,7 @@
- type: dungeonRoom
id: LavaBrig5x5b
size: 5,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 6,18
tags:
- LavaBrig
@@ -205,7 +205,7 @@
- type: dungeonRoom
id: LavaBrig5x5c
size: 5,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 12,18
tags:
- LavaBrig
@@ -213,7 +213,7 @@
- type: dungeonRoom
id: LavaBrig5x5d
size: 5,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 18,18
tags:
- LavaBrig
@@ -221,7 +221,7 @@
- type: dungeonRoom
id: LavaBrig5x5e
size: 5,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 24,18
tags:
- LavaBrig
@@ -229,7 +229,7 @@
- type: dungeonRoom
id: LavaBrig5x5f
size: 5,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 30,18
tags:
- LavaBrig
@@ -238,7 +238,7 @@
- type: dungeonRoom
id: LavaBrig3x5a
size: 3,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 0,24
tags:
- LavaBrig
@@ -246,7 +246,7 @@
- type: dungeonRoom
id: LavaBrig3x5b
size: 3,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 4,24
tags:
- LavaBrig
@@ -254,7 +254,7 @@
- type: dungeonRoom
id: LavaBrig3x5c
size: 3,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 8,24
tags:
- LavaBrig
@@ -262,7 +262,7 @@
- type: dungeonRoom
id: LavaBrig3x5d
size: 3,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 12,24
tags:
- LavaBrig
@@ -270,7 +270,7 @@
- type: dungeonRoom
id: LavaBrig3x5e
size: 3,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 16,24
tags:
- LavaBrig
@@ -278,7 +278,7 @@
- type: dungeonRoom
id: LavaBrig3x5f
size: 3,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 20,24
tags:
- LavaBrig
@@ -286,7 +286,7 @@
- type: dungeonRoom
id: LavaBrig3x5g
size: 3,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 24,24
tags:
- LavaBrig
@@ -294,7 +294,7 @@
- type: dungeonRoom
id: LavaBrig3x5h
size: 3,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 28,24
tags:
- LavaBrig
@@ -302,7 +302,7 @@
- type: dungeonRoom
id: LavaBrig3x5i
size: 3,5
- atlas: /Maps/Dungeon/lava_brig.yml
+ atlas: /Maps/_NF/Dungeon/lava_brig.yml # Frontier
offset: 32,24
tags:
- LavaBrig
diff --git a/Resources/Prototypes/Procedural/Themes/mineshaft.yml b/Resources/Prototypes/Procedural/Themes/mineshaft.yml
index 1e2c18d08ba..9be6e5334a0 100644
--- a/Resources/Prototypes/Procedural/Themes/mineshaft.yml
+++ b/Resources/Prototypes/Procedural/Themes/mineshaft.yml
@@ -4,7 +4,7 @@
- type: dungeonRoom
id: Mineshaft17x5a
size: 17,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 0,0
tags:
- Mineshaft
@@ -12,7 +12,7 @@
- type: dungeonRoom
id: Mineshaft17x5b
size: 17,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 18,0
tags:
- Mineshaft
@@ -20,7 +20,7 @@
- type: dungeonRoom
id: Mineshaft17x5c
size: 17,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 36,0
tags:
- Mineshaft
@@ -30,7 +30,7 @@
- type: dungeonRoom
id: Mineshaft11x5a
size: 11,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 0,6
tags:
- Mineshaft
@@ -38,7 +38,7 @@
- type: dungeonRoom
id: Mineshaft11x5b
size: 11,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 12,6
tags:
- Mineshaft
@@ -46,7 +46,7 @@
- type: dungeonRoom
id: Mineshaft11x5c
size: 11,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 24,6
tags:
- Mineshaft
@@ -54,7 +54,7 @@
- type: dungeonRoom
id: Mineshaft11x5d
size: 11,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 36,6
tags:
- Mineshaft
@@ -64,7 +64,7 @@
- type: dungeonRoom
id: Mineshaft7x5a
size: 7,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 0,12
tags:
- Mineshaft
@@ -72,7 +72,7 @@
- type: dungeonRoom
id: Mineshaft7x5b
size: 7,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 8,12
tags:
- Mineshaft
@@ -80,7 +80,7 @@
- type: dungeonRoom
id: Mineshaft7x5c
size: 7,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 16,12
tags:
- Mineshaft
@@ -88,7 +88,7 @@
- type: dungeonRoom
id: Mineshaft7x5d
size: 7,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 24,12
tags:
- Mineshaft
@@ -96,7 +96,7 @@
- type: dungeonRoom
id: Mineshaft7x5e
size: 7,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 32,12
tags:
- Mineshaft
@@ -104,7 +104,7 @@
- type: dungeonRoom
id: Mineshaft7x5f
size: 7,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 40,12
tags:
- Mineshaft
@@ -114,7 +114,7 @@
- type: dungeonRoom
id: Mineshaft5x5a
size: 5,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 0,18
tags:
- Mineshaft
@@ -122,7 +122,7 @@
- type: dungeonRoom
id: Mineshaft5x5b
size: 5,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 6,18
tags:
- Mineshaft
@@ -130,7 +130,7 @@
- type: dungeonRoom
id: Mineshaft5x5c
size: 5,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 12,18
tags:
- Mineshaft
@@ -140,7 +140,7 @@
- type: dungeonRoom
id: Mineshaft7x7a
size: 7,7
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 18,18
tags:
- Mineshaft
@@ -148,7 +148,7 @@
- type: dungeonRoom
id: Mineshaft7x7b
size: 7,7
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 26,18
tags:
- Mineshaft
@@ -156,7 +156,7 @@
- type: dungeonRoom
id: Mineshaft7x7c
size: 7,7
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 34,18
tags:
- Mineshaft
@@ -164,7 +164,7 @@
- type: dungeonRoom
id: Mineshaft7x7e
size: 7,7
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 42,18
tags:
- Mineshaft
@@ -174,7 +174,7 @@
- type: dungeonRoom
id: Mineshaft3x7a
size: 3,7
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 0,24
tags:
- Mineshaft
@@ -182,7 +182,7 @@
- type: dungeonRoom
id: Mineshaft3x7b
size: 3,7
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 4,24
tags:
- Mineshaft
@@ -190,7 +190,7 @@
- type: dungeonRoom
id: Mineshaft3x7c
size: 3,7
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 8,24
tags:
- Mineshaft
@@ -198,7 +198,7 @@
- type: dungeonRoom
id: Mineshaft3x7d
size: 3,7
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 12,24
tags:
- Mineshaft
@@ -208,7 +208,7 @@
- type: dungeonRoom
id: Mineshaft3x5a
size: 3,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 16,26
tags:
- Mineshaft
@@ -216,7 +216,7 @@
- type: dungeonRoom
id: Mineshaft3x5b
size: 3,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 20,26
tags:
- Mineshaft
@@ -224,7 +224,7 @@
- type: dungeonRoom
id: Mineshaft3x5c
size: 3,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 24,26
tags:
- Mineshaft
@@ -232,7 +232,7 @@
- type: dungeonRoom
id: Mineshaft3x5e
size: 3,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 32,26
tags:
- Mineshaft
@@ -240,7 +240,7 @@
- type: dungeonRoom
id: Mineshaft3x5f
size: 3,5
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 36,26
tags:
- Mineshaft
@@ -250,7 +250,7 @@
- type: dungeonRoom
id: Mineshaft13x3a
size: 13,3
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 0,32
tags:
- Mineshaft
@@ -258,7 +258,7 @@
- type: dungeonRoom
id: Mineshaft13x3b
size: 13,3
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 14,32
tags:
- Mineshaft
@@ -266,7 +266,7 @@
- type: dungeonRoom
id: Mineshaft13x3c
size: 13,3
- atlas: /Maps/Dungeon/mineshaft.yml
+ atlas: /Maps/_NF/Dungeon/mineshaft.yml # Frontier
offset: 28,32
tags:
- Mineshaft
\ No newline at end of file
diff --git a/Resources/Prototypes/Procedural/Themes/snowylabs.yml b/Resources/Prototypes/Procedural/Themes/snowylabs.yml
index 98caf237311..bece88cf709 100644
--- a/Resources/Prototypes/Procedural/Themes/snowylabs.yml
+++ b/Resources/Prototypes/Procedural/Themes/snowylabs.yml
@@ -4,7 +4,7 @@
- type: dungeonRoom
id: SnowyLab17x5a
size: 17,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 0,0
tags:
- SnowyLabs
@@ -12,7 +12,7 @@
- type: dungeonRoom
id: SnowyLab17x5b
size: 17,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 18,0
tags:
- SnowyLabs
@@ -20,7 +20,7 @@
- type: dungeonRoom
id: SnowyLab17x5c
size: 17,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 36,0
tags:
- SnowyLabs
@@ -29,7 +29,7 @@
- type: dungeonRoom
id: SnowyLab7x7a
size: 7,7
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 0,42
tags:
- SnowyLabs
@@ -37,7 +37,7 @@
- type: dungeonRoom
id: SnowyLab7x7b
size: 7,7
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 8,42
tags:
- SnowyLabs
@@ -45,7 +45,7 @@
- type: dungeonRoom
id: SnowyLab7x7c
size: 7,7
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 16,42
tags:
- SnowyLabs
@@ -55,7 +55,7 @@
- type: dungeonRoom
id: SnowyLab11x5a
size: 11,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 0,6
tags:
- SnowyLabs
@@ -63,7 +63,7 @@
- type: dungeonRoom
id: SnowyLab11x5b
size: 11,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 12,6
tags:
- SnowyLabs
@@ -71,7 +71,7 @@
- type: dungeonRoom
id: SnowyLab11x5c
size: 11,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 24,6
tags:
- SnowyLabs
@@ -79,7 +79,7 @@
- type: dungeonRoom
id: SnowyLab11x5d
size: 11,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 36,6
tags:
- SnowyLabs
@@ -88,7 +88,7 @@
- type: dungeonRoom
id: SnowyLab7x5a
size: 7,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 0,12
tags:
- SnowyLabs
@@ -96,7 +96,7 @@
- type: dungeonRoom
id: SnowyLab7x5b
size: 7,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 8,12
tags:
- SnowyLabs
@@ -104,7 +104,7 @@
- type: dungeonRoom
id: SnowyLab7x5c
size: 7,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 16,12
tags:
- SnowyLabs
@@ -112,7 +112,7 @@
- type: dungeonRoom
id: SnowyLab7x5d
size: 7,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 24,12
tags:
- SnowyLabs
@@ -120,7 +120,7 @@
- type: dungeonRoom
id: SnowyLab7x5e
size: 7,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 32,12
tags:
- SnowyLabs
@@ -128,7 +128,7 @@
- type: dungeonRoom
id: SnowyLab7x5f
size: 7,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 40,12
tags:
- SnowyLabs
@@ -136,7 +136,7 @@
- type: dungeonRoom
id: SnowyLab7x5g
size: 7,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 48,12
tags:
- SnowyLabs
@@ -145,7 +145,7 @@
- type: dungeonRoom
id: SnowyLab13x3a
size: 13,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 0,30
tags:
- SnowyLabs
@@ -153,7 +153,7 @@
- type: dungeonRoom
id: SnowyLab13x3b
size: 13,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 14,30
tags:
- SnowyLabs
@@ -162,7 +162,7 @@
- type: dungeonRoom
id: SnowyLab11x3a
size: 11,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 0,34
tags:
- SnowyLabs
@@ -170,7 +170,7 @@
- type: dungeonRoom
id: SnowyLab11x3b
size: 11,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 12,34
tags:
- SnowyLabs
@@ -178,7 +178,7 @@
- type: dungeonRoom
id: SnowyLab11x3c
size: 11,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 24,34
tags:
- SnowyLabs
@@ -187,7 +187,7 @@
- type: dungeonRoom
id: SnowyLab7x3a
size: 7,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 0,38
tags:
- SnowyLabs
@@ -195,7 +195,7 @@
- type: dungeonRoom
id: SnowyLab7x3b
size: 7,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 8,38
tags:
- SnowyLabs
@@ -203,7 +203,7 @@
- type: dungeonRoom
id: SnowyLab7x3c
size: 7,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 16,38
tags:
- SnowyLabs
@@ -211,7 +211,7 @@
- type: dungeonRoom
id: SnowyLab7x3d
size: 7,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 24,38
tags:
- SnowyLabs
@@ -219,7 +219,7 @@
- type: dungeonRoom
id: SnowyLab7x3e
size: 7,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 32,38
tags:
- SnowyLabs
@@ -227,7 +227,7 @@
- type: dungeonRoom
id: SnowyLab7x3f
size: 7,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 40,38
tags:
- SnowyLabs
@@ -235,7 +235,7 @@
- type: dungeonRoom
id: SnowyLab7x3g
size: 7,3
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 48,38
tags:
- SnowyLabs
@@ -245,7 +245,7 @@
- type: dungeonRoom
id: SnowyLab5x5a
size: 5,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 0,18
tags:
- SnowyLabs
@@ -253,7 +253,7 @@
- type: dungeonRoom
id: SnowyLab5x5b
size: 5,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 6,18
tags:
- SnowyLabs
@@ -261,7 +261,7 @@
- type: dungeonRoom
id: SnowyLab5x5c
size: 5,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 12,18
tags:
- SnowyLabs
@@ -269,7 +269,7 @@
- type: dungeonRoom
id: SnowyLab5x5d
size: 5,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 18,18
tags:
- SnowyLabs
@@ -277,7 +277,7 @@
- type: dungeonRoom
id: SnowyLab5x5e
size: 5,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 24,18
tags:
- SnowyLabs
@@ -285,7 +285,7 @@
- type: dungeonRoom
id: SnowyLab5x5f
size: 5,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 30,18
tags:
- SnowyLabs
@@ -294,7 +294,7 @@
- type: dungeonRoom
id: SnowyLab3x5a
size: 3,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 0,24
tags:
- SnowyLabs
@@ -302,7 +302,7 @@
- type: dungeonRoom
id: SnowyLab3x5b
size: 3,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 4,24
tags:
- SnowyLabs
@@ -310,7 +310,7 @@
- type: dungeonRoom
id: SnowyLab3x5c
size: 3,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 8,24
tags:
- SnowyLabs
@@ -318,7 +318,7 @@
- type: dungeonRoom
id: SnowyLab3x5d
size: 3,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 12,24
tags:
- SnowyLabs
@@ -326,7 +326,7 @@
- type: dungeonRoom
id: SnowyLab3x5e
size: 3,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 16,24
tags:
- SnowyLabs
@@ -334,7 +334,7 @@
- type: dungeonRoom
id: SnowyLab3x5f
size: 3,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 20,24
tags:
- SnowyLabs
@@ -342,7 +342,7 @@
- type: dungeonRoom
id: SnowyLab3x5g
size: 3,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 24,24
tags:
- SnowyLabs
@@ -350,7 +350,7 @@
- type: dungeonRoom
id: SnowyLab3x5h
size: 3,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 28,24
tags:
- SnowyLabs
@@ -358,7 +358,7 @@
- type: dungeonRoom
id: SnowyLab3x5i
size: 3,5
- atlas: /Maps/Dungeon/snowy_labs.yml
+ atlas: /Maps/_NF/Dungeon/snowy_labs.yml # Frontier
offset: 32,24
tags:
- SnowyLabs
diff --git a/Resources/Prototypes/Procedural/dungeon_configs.yml b/Resources/Prototypes/Procedural/dungeon_configs.yml
index 2db6e05c9a7..1d6ea605a21 100644
--- a/Resources/Prototypes/Procedural/dungeon_configs.yml
+++ b/Resources/Prototypes/Procedural/dungeon_configs.yml
@@ -101,7 +101,8 @@
- !type:RoomEntrancePostGen
entities:
- CableApcExtension
- - AirlockSecurityGlass
+ - AirlockSecurityGlass # Frontier AirlockSecurityGlassLocked
+ # Goblins
+
+
+
+
+
+ They can [color=#ffa500]only[/color] eat meat and fruits, but can eat raw meat and drink blood without any ill effects.
+
+ Their small stature allows goblins to dive into toilets and mailing units. They don't like to be sprayed with water or space cleaner.
+
+ Their unarmed attacks deal [color=red]Slash[/color] damage instead of Blunt.
+
+ Due to their unusual dietary choices goblins take [color=lime]20% less Toxin damage[/color], but because of their small size they take [color=#ffa500]10% more Brute (Blunt/Slash/Piercing) damage[/color].
+
+
diff --git a/Resources/Textures/DeltaV/Effects/speech.rsi/felinid0.png b/Resources/Textures/DeltaV/Effects/speech.rsi/felinid0.png
new file mode 100644
index 00000000000..586d1e6a343
Binary files /dev/null and b/Resources/Textures/DeltaV/Effects/speech.rsi/felinid0.png differ
diff --git a/Resources/Textures/DeltaV/Effects/speech.rsi/felinid1.png b/Resources/Textures/DeltaV/Effects/speech.rsi/felinid1.png
new file mode 100644
index 00000000000..8af894f1dec
Binary files /dev/null and b/Resources/Textures/DeltaV/Effects/speech.rsi/felinid1.png differ
diff --git a/Resources/Textures/DeltaV/Effects/speech.rsi/felinid2.png b/Resources/Textures/DeltaV/Effects/speech.rsi/felinid2.png
new file mode 100644
index 00000000000..abb5f04373e
Binary files /dev/null and b/Resources/Textures/DeltaV/Effects/speech.rsi/felinid2.png differ
diff --git a/Resources/Textures/DeltaV/Effects/speech.rsi/meta.json b/Resources/Textures/DeltaV/Effects/speech.rsi/meta.json
new file mode 100644
index 00000000000..1d4b09fbffe
--- /dev/null
+++ b/Resources/Textures/DeltaV/Effects/speech.rsi/meta.json
@@ -0,0 +1,28 @@
+{
+ "version": 1,
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Felinid sprites made by Adrian16199 (Github)",
+ "states": [
+ {
+ "name": "felinid0",
+ "delays": [
+ [
+ 0.2,
+ 0.3,
+ 0.3,
+ 0.5
+ ]
+ ]
+ },
+ {
+ "name": "felinid1"
+ },
+ {
+ "name": "felinid2"
+ }
+ ]
+}
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png
index 4e6a6d8dc0d..31b402d3381 100644
Binary files a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png and b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/felinid_tails.rsi/felinid_fluffy_tail_rings.png differ
diff --git a/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/meta.json b/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/meta.json
index edaf88fae40..43d50ef0fd1 100644
--- a/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/meta.json
+++ b/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/meta.json
@@ -10,6 +10,9 @@
{
"name" : "law_space"
},
+ {
+ "name" : "nfsd_sop"
+ },
{
"name" : "law_trial"
}
diff --git a/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/nfsd_sop.png b/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/nfsd_sop.png
new file mode 100644
index 00000000000..eb2371199a2
Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Misc/books.rsi/nfsd_sop.png differ
diff --git a/Resources/Textures/_NF/Effects/speech.rsi/goblin0.png b/Resources/Textures/_NF/Effects/speech.rsi/goblin0.png
new file mode 100644
index 00000000000..59399c7d7ca
Binary files /dev/null and b/Resources/Textures/_NF/Effects/speech.rsi/goblin0.png differ
diff --git a/Resources/Textures/_NF/Effects/speech.rsi/goblin1.png b/Resources/Textures/_NF/Effects/speech.rsi/goblin1.png
new file mode 100644
index 00000000000..a55b767808d
Binary files /dev/null and b/Resources/Textures/_NF/Effects/speech.rsi/goblin1.png differ
diff --git a/Resources/Textures/_NF/Effects/speech.rsi/goblin2.png b/Resources/Textures/_NF/Effects/speech.rsi/goblin2.png
new file mode 100644
index 00000000000..5320d891dbc
Binary files /dev/null and b/Resources/Textures/_NF/Effects/speech.rsi/goblin2.png differ
diff --git a/Resources/Textures/_NF/Effects/speech.rsi/meta.json b/Resources/Textures/_NF/Effects/speech.rsi/meta.json
new file mode 100644
index 00000000000..bfff36ab804
--- /dev/null
+++ b/Resources/Textures/_NF/Effects/speech.rsi/meta.json
@@ -0,0 +1,28 @@
+{
+ "version": 1,
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Goblin speech bubble by ErhardSteinhauer",
+ "states": [
+ {
+ "name": "goblin0",
+ "delays": [
+ [
+ 0.2,
+ 0.3,
+ 0.3,
+ 0.5
+ ]
+ ]
+ },
+ {
+ "name": "goblin1"
+ },
+ {
+ "name": "goblin2"
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Markers/general.rsi/meta.json b/Resources/Textures/_NF/Markers/general.rsi/meta.json
new file mode 100644
index 00000000000..04b6da8f071
--- /dev/null
+++ b/Resources/Textures/_NF/Markers/general.rsi/meta.json
@@ -0,0 +1,14 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062, cola and any sprite modified by potato1234x (github) for ss14, cut question mark from any.png by erhardsteinhauer (discord)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "questionmark"
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Markers/general.rsi/questionmark.png b/Resources/Textures/_NF/Markers/general.rsi/questionmark.png
new file mode 100644
index 00000000000..5e7a16a2932
Binary files /dev/null and b/Resources/Textures/_NF/Markers/general.rsi/questionmark.png differ
diff --git a/Resources/Textures/_NF/Objects/Misc/mold.rsi/meta.json b/Resources/Textures/_NF/Objects/Misc/mold.rsi/meta.json
new file mode 100644
index 00000000000..8b4b90ce3dc
--- /dev/null
+++ b/Resources/Textures/_NF/Objects/Misc/mold.rsi/meta.json
@@ -0,0 +1,15 @@
+{
+ "version": 1,
+ "license": "CC-BY-NC-SA-3.0",
+ "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa | Cropped from moldy-slice github user @erhardsteinhauer",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "mold",
+ "directions": 1
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Objects/Misc/mold.rsi/mold.png b/Resources/Textures/_NF/Objects/Misc/mold.rsi/mold.png
new file mode 100644
index 00000000000..2181c8d42ae
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/mold.rsi/mold.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon-open.png b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon-open.png
new file mode 100644
index 00000000000..69d2a4d0ee2
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon-open.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon.png b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon.png
new file mode 100644
index 00000000000..afa55548d22
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/icon.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-left.png
new file mode 100644
index 00000000000..c1621243d81
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-right.png
new file mode 100644
index 00000000000..469c47f4e67
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/meta.json b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/meta.json
new file mode 100644
index 00000000000..a8107eefdfb
--- /dev/null
+++ b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/meta.json
@@ -0,0 +1,31 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/storage/case.dmi , held sprites and open sprite made by erhardsteinhauer",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ },
+ {
+ "name": "icon"
+ },
+ {
+ "name": "icon-open"
+ },
+ {
+ "name": "unshaded",
+ "delays": [
+ [ 0.2, 0.1, 0.1, 0.2 ]
+ ]
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/unshaded.png b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/unshaded.png
new file mode 100644
index 00000000000..d598b670413
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaselong.rsi/unshaded.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/icon-open.png b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/icon-open.png
new file mode 100644
index 00000000000..af160cb95fe
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/icon-open.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/icon.png b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/icon.png
new file mode 100644
index 00000000000..0b8e980a96b
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/icon.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-left.png
new file mode 100644
index 00000000000..70ec6e23ebc
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-right.png
new file mode 100644
index 00000000000..b756b83b634
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/meta.json b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/meta.json
new file mode 100644
index 00000000000..a8107eefdfb
--- /dev/null
+++ b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/meta.json
@@ -0,0 +1,31 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/master/icons/obj/storage/case.dmi , held sprites and open sprite made by erhardsteinhauer",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ },
+ {
+ "name": "icon"
+ },
+ {
+ "name": "icon-open"
+ },
+ {
+ "name": "unshaded",
+ "delays": [
+ [ 0.2, 0.1, 0.1, 0.2 ]
+ ]
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/unshaded.png b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/unshaded.png
new file mode 100644
index 00000000000..d598b670413
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Tools/guncaseshort.rsi/unshaded.png differ
diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json
index 93c306e5887..57a68c7d20c 100644
--- a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json
+++ b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json
@@ -81,6 +81,56 @@
[ 0.2, 0.2, 0.2, 0.2 ]
]
},
+ {
+ "name": "pirate",
+ "directions": 4,
+ "delays": [
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ]
+ ]
+ },
+ {
+ "name": "piratemusket",
+ "directions": 4,
+ "delays": [
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ]
+ ]
+ },
+ {
+ "name": "syndicatebags",
+ "directions": 4,
+ "delays": [
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ]
+ ]
+ },
+ {
+ "name": "syndicatelights",
+ "directions": 4,
+ "delays": [
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ]
+ ]
+ },
+ {
+ "name": "syndicategun",
+ "directions": 4,
+ "delays": [
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ],
+ [ 0.2, 0.2, 0.2, 0.2 ]
+ ]
+ },
{
"name": "lights",
"directions": 4,
diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/pirate.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/pirate.png
new file mode 100644
index 00000000000..d3d5554b331
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/pirate.png differ
diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/piratemusket.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/piratemusket.png
new file mode 100644
index 00000000000..84d6821ec8f
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/piratemusket.png differ
diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatebags.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatebags.png
new file mode 100644
index 00000000000..df6927f0b45
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatebags.png differ
diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicategun.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicategun.png
new file mode 100644
index 00000000000..d8148cbc0b9
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicategun.png differ
diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatelights.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatelights.png
new file mode 100644
index 00000000000..89a0aa013f8
Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/syndicatelights.png differ
diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/icon.png b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/icon.png
similarity index 100%
rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/icon.png
rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/icon.png
diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/meta.json
similarity index 100%
rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/meta.json
rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/meta.json
diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/printing.png b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/printing.png
similarity index 100%
rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/printing.png
rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/printing.png
diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/unshaded.png b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/unshaded.png
similarity index 100%
rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/unshaded.png
rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/unshaded.png
diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate.png
new file mode 100644
index 00000000000..eb02df2e4c1
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate.png differ
diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_door.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_door.png
new file mode 100644
index 00000000000..4b948b1073e
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_door.png differ
diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_icon.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_icon.png
new file mode 100644
index 00000000000..afecdb012eb
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_icon.png differ
diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_open.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_open.png
new file mode 100644
index 00000000000..9892e43a155
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/crate_open.png differ
diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/meta.json
new file mode 100644
index 00000000000..584e2b36659
--- /dev/null
+++ b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/meta.json
@@ -0,0 +1,40 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-4.0",
+ "copyright": "Made by Stagnation for use on Frontier Server.",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "crate"
+ },
+ {
+ "name": "crate_door"
+ },
+ {
+ "name": "welded"
+ },
+ {
+ "name": "crate_icon"
+ },
+ {
+ "name": "sparking",
+ "directions": 1,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "crate_open"
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/sparking.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/sparking.png
new file mode 100644
index 00000000000..87b78b9b465
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/sparking.png differ
diff --git a/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/welded.png b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/welded.png
new file mode 100644
index 00000000000..c7b469bb46d
Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/Crates/piratechestgrey.rsi/welded.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_loose.png b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_loose.png
new file mode 100644
index 00000000000..25e35a51939
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_loose.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_ccw.png b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_ccw.png
new file mode 100644
index 00000000000..9887da3bb87
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_ccw.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_ccw_r.png b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_ccw_r.png
new file mode 100644
index 00000000000..a0adbe06869
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_ccw_r.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_cw.png b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_cw.png
new file mode 100644
index 00000000000..09fc8795fd8
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_cw.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_cw_r.png b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_cw_r.png
new file mode 100644
index 00000000000..8b244c67a2f
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_started_cw_r.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_stopped_ccw.png b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_stopped_ccw.png
new file mode 100644
index 00000000000..cd23250be38
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_stopped_ccw.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_stopped_cw.png b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_stopped_cw.png
new file mode 100644
index 00000000000..065c5617c92
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/conveyor_stopped_cw.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/greenlight.png b/Resources/Textures/_NF/Structures/conveyor.rsi/greenlight.png
new file mode 100644
index 00000000000..c50fb82d078
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/greenlight.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/meta.json b/Resources/Textures/_NF/Structures/conveyor.rsi/meta.json
new file mode 100644
index 00000000000..c9f16b2eea7
--- /dev/null
+++ b/Resources/Textures/_NF/Structures/conveyor.rsi/meta.json
@@ -0,0 +1,256 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and modified by Dvir01",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "conveyor_loose"
+ },
+ {
+ "name": "conveyor_started_ccw",
+ "directions": 8,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "conveyor_started_ccw_r",
+ "directions": 8,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "conveyor_started_cw",
+ "directions": 8,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "conveyor_started_cw_r",
+ "directions": 8,
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ],
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "conveyor_stopped_ccw",
+ "directions": 8
+ },
+ {
+ "name": "conveyor_stopped_cw",
+ "directions": 8
+ },
+ {
+ "name": "greenlight"
+ },
+ {
+ "name": "redlight"
+ },
+ {
+ "name": "switch"
+ },
+ {
+ "name": "switch-fwd"
+ },
+ {
+ "name": "switch-off"
+ },
+ {
+ "name": "switch-rev"
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/redlight.png b/Resources/Textures/_NF/Structures/conveyor.rsi/redlight.png
new file mode 100644
index 00000000000..812c1a6508e
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/redlight.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/switch-fwd.png b/Resources/Textures/_NF/Structures/conveyor.rsi/switch-fwd.png
new file mode 100644
index 00000000000..c13ef62ccc8
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/switch-fwd.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/switch-off.png b/Resources/Textures/_NF/Structures/conveyor.rsi/switch-off.png
new file mode 100644
index 00000000000..a89901f190e
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/switch-off.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/switch-rev.png b/Resources/Textures/_NF/Structures/conveyor.rsi/switch-rev.png
new file mode 100644
index 00000000000..f7530468331
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/switch-rev.png differ
diff --git a/Resources/Textures/_NF/Structures/conveyor.rsi/switch.png b/Resources/Textures/_NF/Structures/conveyor.rsi/switch.png
new file mode 100644
index 00000000000..a89901f190e
Binary files /dev/null and b/Resources/Textures/_NF/Structures/conveyor.rsi/switch.png differ